Bladeren bron

Move default machine info to pins files

Scott Lahteine 8 jaren geleden
bovenliggende
commit
2b01649533

+ 5
- 25
Marlin/language.h Bestand weergeven

71
 
71
 
72
 #define PROTOCOL_VERSION "1.0"
72
 #define PROTOCOL_VERSION "1.0"
73
 
73
 
74
-#if MB(ULTIMAKER)|| MB(ULTIMAKER_OLD)|| MB(ULTIMAIN_2)
75
-  #define DEFAULT_MACHINE_NAME "Ultimaker"
76
-#elif MB(RUMBA)
77
-  #define DEFAULT_MACHINE_NAME "Rumba"
78
-#elif MB(3DRAG)
79
-  #define DEFAULT_MACHINE_NAME "3Drag"
80
-#elif MB(K8200)
81
-  #define DEFAULT_MACHINE_NAME "K8200"
82
-#elif MB(5DPRINT)
83
-  #define DEFAULT_MACHINE_NAME "Makibox"
84
-#elif MB(SAV_MKI)
85
-  #define DEFAULT_MACHINE_NAME "SAV MkI"
86
-#else
74
+#ifndef DEFAULT_MACHINE_NAME
87
   #define DEFAULT_MACHINE_NAME "3D Printer"
75
   #define DEFAULT_MACHINE_NAME "3D Printer"
88
 #endif
76
 #endif
89
 
77
 
90
-#if MB(ULTIMAKER)|| MB(ULTIMAKER_OLD)|| MB(ULTIMAIN_2)
91
-  #define DEFAULT_SOURCE_URL "https://github.com/Ultimaker/Marlin"
92
-#elif MB(3DRAG)
93
-  #define DEFAULT_SOURCE_URL "http://3dprint.elettronicain.it/"
94
-#elif MB(K8200)
95
-  #define DEFAULT_SOURCE_URL "https://github.com/CONSULitAS/Marlin-K8200"
96
-#elif MB(SAV_MKI)
97
-  #define DEFAULT_SOURCE_URL "https://github.com/fmalpartida/Marlin/tree/SAV-MkI-config"
98
-#else
99
-  #define DEFAULT_SOURCE_URL "https://github.com/MarlinFirmware/Marlin"
100
-#endif
101
-
102
 #ifdef CUSTOM_MACHINE_NAME
78
 #ifdef CUSTOM_MACHINE_NAME
103
   #define MACHINE_NAME CUSTOM_MACHINE_NAME
79
   #define MACHINE_NAME CUSTOM_MACHINE_NAME
104
 #else
80
 #else
105
   #define MACHINE_NAME DEFAULT_MACHINE_NAME
81
   #define MACHINE_NAME DEFAULT_MACHINE_NAME
106
 #endif
82
 #endif
107
 
83
 
84
+#ifndef DEFAULT_SOURCE_URL
85
+  #define DEFAULT_SOURCE_URL "https://github.com/MarlinFirmware/Marlin"
86
+#endif
87
+
108
 #ifndef SOURCE_CODE_URL
88
 #ifndef SOURCE_CODE_URL
109
   #define SOURCE_CODE_URL DEFAULT_SOURCE_URL
89
   #define SOURCE_CODE_URL DEFAULT_SOURCE_URL
110
 #endif
90
 #endif

+ 3
- 0
Marlin/pins_3DRAG.h Bestand weergeven

26
 
26
 
27
 #include "pins_RAMPS_14.h"
27
 #include "pins_RAMPS_14.h"
28
 
28
 
29
+#define DEFAULT_MACHINE_NAME "3Drag"
30
+#define DEFAULT_SOURCE_URL   "http://3dprint.elettronicain.it/"
31
+
29
 #undef Z_ENABLE_PIN
32
 #undef Z_ENABLE_PIN
30
 #define Z_ENABLE_PIN       63
33
 #define Z_ENABLE_PIN       63
31
 
34
 

+ 2
- 0
Marlin/pins_5DPRINT.h Bestand weergeven

30
   #error Oops!  Make sure you have 'Teensy++ 2.0' selected from the 'Tools -> Boards' menu.
30
   #error Oops!  Make sure you have 'Teensy++ 2.0' selected from the 'Tools -> Boards' menu.
31
 #endif
31
 #endif
32
 
32
 
33
+#define DEFAULT_MACHINE_NAME "Makibox"
34
+
33
 #define LARGE_FLASH        true
35
 #define LARGE_FLASH        true
34
 
36
 
35
 #define X_STEP_PIN          0
37
 #define X_STEP_PIN          0

+ 6
- 0
Marlin/pins_K8200.h Bestand weergeven

26
  */
26
  */
27
 
27
 
28
 #include "pins_3DRAG.h"
28
 #include "pins_3DRAG.h"
29
+
30
+#undef DEFAULT_MACHINE_NAME
31
+#define DEFAULT_MACHINE_NAME "K8200"
32
+
33
+#undef DEFAULT_SOURCE_URL
34
+#define DEFAULT_SOURCE_URL   "https://github.com/CONSULitAS/Marlin-K8200"

+ 2
- 0
Marlin/pins_RUMBA.h Bestand weergeven

32
   #error RUMBA supports up to 3 extruders. Comment this line to keep going.
32
   #error RUMBA supports up to 3 extruders. Comment this line to keep going.
33
 #endif
33
 #endif
34
 
34
 
35
+#define DEFAULT_MACHINE_NAME "Rumba"
36
+
35
 #define X_STEP_PIN         17
37
 #define X_STEP_PIN         17
36
 #define X_DIR_PIN          16
38
 #define X_DIR_PIN          16
37
 #define X_ENABLE_PIN       48
39
 #define X_ENABLE_PIN       48

+ 3
- 0
Marlin/pins_SAV_MKI.h Bestand weergeven

31
   #error Oops!  Make sure you have 'Teensy++ 2.0' selected from the 'Tools -> Boards' menu.
31
   #error Oops!  Make sure you have 'Teensy++ 2.0' selected from the 'Tools -> Boards' menu.
32
 #endif
32
 #endif
33
 
33
 
34
+#define DEFAULT_MACHINE_NAME "SAV MkI"
35
+#define DEFAULT_SOURCE_URL   "https://github.com/fmalpartida/Marlin/tree/SAV-MkI-config"
36
+
34
 #define LARGE_FLASH        true
37
 #define LARGE_FLASH        true
35
 
38
 
36
 #define X_STEP_PIN         0
39
 #define X_STEP_PIN         0

+ 3
- 0
Marlin/pins_ULTIMAIN_2.h Bestand weergeven

28
   #error Oops!  Make sure you have 'Arduino Mega 2560' selected from the 'Tools -> Boards' menu.
28
   #error Oops!  Make sure you have 'Arduino Mega 2560' selected from the 'Tools -> Boards' menu.
29
 #endif
29
 #endif
30
 
30
 
31
+#define DEFAULT_MACHINE_NAME "Ultimaker"
32
+#define DEFAULT_SOURCE_URL   "https://github.com/Ultimaker/Marlin"
33
+
31
 #define X_STEP_PIN 25
34
 #define X_STEP_PIN 25
32
 #define X_DIR_PIN 23
35
 #define X_DIR_PIN 23
33
 #define X_STOP_PIN 22
36
 #define X_STOP_PIN 22

+ 3
- 0
Marlin/pins_ULTIMAKER.h Bestand weergeven

28
   #error Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu.
28
   #error Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu.
29
 #endif
29
 #endif
30
 
30
 
31
+#define DEFAULT_MACHINE_NAME "Ultimaker"
32
+#define DEFAULT_SOURCE_URL   "https://github.com/Ultimaker/Marlin"
33
+
31
 #define LARGE_FLASH true
34
 #define LARGE_FLASH true
32
 
35
 
33
 #define SERVO0_PIN 13 // untested
36
 #define SERVO0_PIN 13 // untested

+ 3
- 0
Marlin/pins_ULTIMAKER_OLD.h Bestand weergeven

28
   #error Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu.
28
   #error Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu.
29
 #endif
29
 #endif
30
 
30
 
31
+#define DEFAULT_MACHINE_NAME "Ultimaker"
32
+#define DEFAULT_SOURCE_URL   "https://github.com/Ultimaker/Marlin"
33
+
31
 #define LARGE_FLASH true
34
 #define LARGE_FLASH true
32
 
35
 
33
 #define X_STEP_PIN 25
36
 #define X_STEP_PIN 25

Laden…
Annuleren
Opslaan