소스 검색

Merge pull request #3609 from jbrazio/feature/config-version

Adds versioning for Configuration.h & Configuration_adv.h
Scott Lahteine 8 년 전
부모
커밋
f639044c24
55개의 변경된 파일479개의 추가작업 그리고 0개의 파일을 삭제
  1. 13
    0
      Marlin/Configuration.h
  2. 13
    0
      Marlin/Configuration_adv.h
  3. 14
    0
      Marlin/SanityCheck.h
  4. 10
    0
      Marlin/Version.h
  5. BIN
      Marlin/example_configurations/Felix/.Configuration.h.swp
  6. 13
    0
      Marlin/example_configurations/Felix/Configuration.h
  7. 13
    0
      Marlin/example_configurations/Felix/Configuration_adv.h
  8. BIN
      Marlin/example_configurations/Felix/DUAL/.Configuration.h.swp
  9. 13
    0
      Marlin/example_configurations/Felix/DUAL/Configuration.h
  10. BIN
      Marlin/example_configurations/Hephestos/.Configuration.h.swp
  11. 13
    0
      Marlin/example_configurations/Hephestos/Configuration.h
  12. 13
    0
      Marlin/example_configurations/Hephestos/Configuration_adv.h
  13. BIN
      Marlin/example_configurations/Hephestos_2/.Configuration.h.swp
  14. 13
    0
      Marlin/example_configurations/Hephestos_2/Configuration.h
  15. 13
    0
      Marlin/example_configurations/Hephestos_2/Configuration_adv.h
  16. BIN
      Marlin/example_configurations/K8200/.Configuration.h.swp
  17. 13
    0
      Marlin/example_configurations/K8200/Configuration.h
  18. 13
    0
      Marlin/example_configurations/K8200/Configuration_adv.h
  19. BIN
      Marlin/example_configurations/RepRapWorld/Megatronics/.Configuration.h.swp
  20. 13
    0
      Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h
  21. BIN
      Marlin/example_configurations/RigidBot/.Configuration.h.swp
  22. 13
    0
      Marlin/example_configurations/RigidBot/Configuration.h
  23. 13
    0
      Marlin/example_configurations/RigidBot/Configuration_adv.h
  24. BIN
      Marlin/example_configurations/SCARA/.Configuration.h.swp
  25. 13
    0
      Marlin/example_configurations/SCARA/Configuration.h
  26. 13
    0
      Marlin/example_configurations/SCARA/Configuration_adv.h
  27. BIN
      Marlin/example_configurations/TAZ4/.Configuration.h.swp
  28. 13
    0
      Marlin/example_configurations/TAZ4/Configuration.h
  29. 13
    0
      Marlin/example_configurations/TAZ4/Configuration_adv.h
  30. BIN
      Marlin/example_configurations/WITBOX/.Configuration.h.swp
  31. 13
    0
      Marlin/example_configurations/WITBOX/Configuration.h
  32. 13
    0
      Marlin/example_configurations/WITBOX/Configuration_adv.h
  33. BIN
      Marlin/example_configurations/adafruit/ST7565/.Configuration.h.swp
  34. 13
    0
      Marlin/example_configurations/adafruit/ST7565/Configuration.h
  35. BIN
      Marlin/example_configurations/delta/biv2.5/.Configuration.h.swp
  36. 13
    0
      Marlin/example_configurations/delta/biv2.5/Configuration.h
  37. 13
    0
      Marlin/example_configurations/delta/biv2.5/Configuration_adv.h
  38. BIN
      Marlin/example_configurations/delta/generic/.Configuration.h.swp
  39. 13
    0
      Marlin/example_configurations/delta/generic/Configuration.h
  40. 13
    0
      Marlin/example_configurations/delta/generic/Configuration_adv.h
  41. BIN
      Marlin/example_configurations/delta/kossel_mini/.Configuration.h.swp
  42. 13
    0
      Marlin/example_configurations/delta/kossel_mini/Configuration.h
  43. 13
    0
      Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
  44. BIN
      Marlin/example_configurations/delta/kossel_pro/.Configuration.h.swp
  45. 13
    0
      Marlin/example_configurations/delta/kossel_pro/Configuration.h
  46. 13
    0
      Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
  47. BIN
      Marlin/example_configurations/delta/kossel_xl/.Configuration.h.swp
  48. 13
    0
      Marlin/example_configurations/delta/kossel_xl/Configuration.h
  49. 13
    0
      Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
  50. BIN
      Marlin/example_configurations/makibox/.Configuration.h.swp
  51. 13
    0
      Marlin/example_configurations/makibox/Configuration.h
  52. 13
    0
      Marlin/example_configurations/makibox/Configuration_adv.h
  53. BIN
      Marlin/example_configurations/tvrrug/Round2/.Configuration.h.swp
  54. 13
    0
      Marlin/example_configurations/tvrrug/Round2/Configuration.h
  55. 13
    0
      Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h

+ 13
- 0
Marlin/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

+ 14
- 0
Marlin/SanityCheck.h 파일 보기

@@ -39,6 +39,20 @@
39 39
 #endif
40 40
 
41 41
 /**
42
+ * We try our best to include sanity checks for all the changes configuration
43
+ * directives because people have a tendency to use outdated config files with
44
+ * the bleding edge source code, but sometimes this is not enough. This check
45
+ * will force a minimum config file revision, otherwise Marlin will not build.
46
+ */
47
+#if ! defined(CONFIGURATION_H_VERSION) || CONFIGURATION_H_VERSION < REQUIRED_CONFIGURATION_H_VERSION
48
+  #error You are using an old Configuration.h file, update it before building Marlin.
49
+#endif
50
+
51
+#if ! defined(CONFIGURATION_ADV_H_VERSION) || CONFIGURATION_ADV_H_VERSION < REQUIRED_CONFIGURATION_ADV_H_VERSION
52
+  #error You are using an old Configuration_adv.h file, update it before building Marlin.
53
+#endif
54
+
55
+/**
42 56
  * Marlin release, version and default string
43 57
  */
44 58
 #ifndef SHORT_BUILD_VERSION

+ 10
- 0
Marlin/Version.h 파일 보기

@@ -45,6 +45,16 @@
45 45
 #define STRING_DISTRIBUTION_DATE "2016-04-27 12:00"
46 46
 
47 47
 /**
48
+ * Required minimum Configuration.h and Configuration_adv.h file versions.
49
+ *
50
+ * You must increment this version number for every significant change such as,
51
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option on
52
+ * the configuration files.
53
+ */
54
+#define REQUIRED_CONFIGURATION_H_VERSION 010100
55
+#define REQUIRED_CONFIGURATION_ADV_H_VERSION 010100
56
+
57
+/**
48 58
  * @todo: Missing documentation block
49 59
  */
50 60
 #define PROTOCOL_VERSION "1.0"

BIN
Marlin/example_configurations/Felix/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/Felix/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/Felix/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/Felix/DUAL/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/Felix/DUAL/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

BIN
Marlin/example_configurations/Hephestos/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/Hephestos/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/Hephestos/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/Hephestos_2/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/Hephestos_2/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/Hephestos_2/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/K8200/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/K8200/Configuration.h 파일 보기

@@ -45,6 +45,19 @@
45 45
 #ifndef CONFIGURATION_H
46 46
 #define CONFIGURATION_H
47 47
 
48
+/**
49
+ *
50
+ *  ***********************************
51
+ *  **  ATTENTION TO ALL DEVELOPERS  **
52
+ *  ***********************************
53
+ *
54
+ * You must increment this version number for every significant change such as,
55
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
56
+ *
57
+ * Note: Update also Version.h !
58
+ */
59
+#define CONFIGURATION_H_VERSION 010100
60
+
48 61
 #include "boards.h"
49 62
 #include "macros.h"
50 63
 

+ 13
- 0
Marlin/example_configurations/K8200/Configuration_adv.h 파일 보기

@@ -39,6 +39,19 @@
39 39
 #ifndef CONFIGURATION_ADV_H
40 40
 #define CONFIGURATION_ADV_H
41 41
 
42
+/**
43
+ *
44
+ *  ***********************************
45
+ *  **  ATTENTION TO ALL DEVELOPERS  **
46
+ *  ***********************************
47
+ *
48
+ * You must increment this version number for every significant change such as,
49
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
50
+ *
51
+ * Note: Update also Version.h !
52
+ */
53
+#define CONFIGURATION_ADV_H_VERSION 010100
54
+
42 55
 #include "Conditionals.h"
43 56
 
44 57
 // @section temperature

BIN
Marlin/example_configurations/RepRapWorld/Megatronics/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

BIN
Marlin/example_configurations/RigidBot/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/RigidBot/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/RigidBot/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/SCARA/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/SCARA/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/SCARA/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/TAZ4/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/TAZ4/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/TAZ4/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/WITBOX/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/WITBOX/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/WITBOX/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/adafruit/ST7565/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/adafruit/ST7565/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

BIN
Marlin/example_configurations/delta/biv2.5/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/delta/biv2.5/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/delta/biv2.5/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/delta/generic/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/delta/generic/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/delta/generic/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/delta/kossel_mini/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/delta/kossel_mini/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/delta/kossel_pro/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/delta/kossel_pro/Configuration.h 파일 보기

@@ -44,6 +44,19 @@
44 44
 #ifndef CONFIGURATION_H
45 45
 #define CONFIGURATION_H
46 46
 
47
+/**
48
+ *
49
+ *  ***********************************
50
+ *  **  ATTENTION TO ALL DEVELOPERS  **
51
+ *  ***********************************
52
+ *
53
+ * You must increment this version number for every significant change such as,
54
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
55
+ *
56
+ * Note: Update also Version.h !
57
+ */
58
+#define CONFIGURATION_H_VERSION 010100
59
+
47 60
 #include "boards.h"
48 61
 #include "macros.h"
49 62
 

+ 13
- 0
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_ADV_H
39 39
 #define CONFIGURATION_ADV_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_ADV_H_VERSION 010100
53
+
41 54
 #include "Conditionals.h"
42 55
 
43 56
 // @section temperature

BIN
Marlin/example_configurations/delta/kossel_xl/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/delta/kossel_xl/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/makibox/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/makibox/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/makibox/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

BIN
Marlin/example_configurations/tvrrug/Round2/.Configuration.h.swp 파일 보기


+ 13
- 0
Marlin/example_configurations/tvrrug/Round2/Configuration.h 파일 보기

@@ -38,6 +38,19 @@
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40 40
 
41
+/**
42
+ *
43
+ *  ***********************************
44
+ *  **  ATTENTION TO ALL DEVELOPERS  **
45
+ *  ***********************************
46
+ *
47
+ * You must increment this version number for every significant change such as,
48
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
49
+ *
50
+ * Note: Update also Version.h !
51
+ */
52
+#define CONFIGURATION_H_VERSION 010100
53
+
41 54
 #include "boards.h"
42 55
 #include "macros.h"
43 56
 

+ 13
- 0
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h 파일 보기

@@ -33,6 +33,19 @@
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35 35
 
36
+/**
37
+ *
38
+ *  ***********************************
39
+ *  **  ATTENTION TO ALL DEVELOPERS  **
40
+ *  ***********************************
41
+ *
42
+ * You must increment this version number for every significant change such as,
43
+ * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
44
+ *
45
+ * Note: Update also Version.h !
46
+ */
47
+#define CONFIGURATION_ADV_H_VERSION 010100
48
+
36 49
 #include "Conditionals.h"
37 50
 
38 51
 // @section temperature

Loading…
취소
저장