Browse Source

Witbox and Hephestos are just RAMPS_13_EFB

Scott Lahteine 9 years ago
parent
commit
9d1961ebe3

+ 0
- 2
Marlin/boards.h View File

@@ -51,8 +51,6 @@
51 51
 #define BOARD_5DPRINT           88   // 5DPrint D8 Driver Board
52 52
 #define BOARD_LEAPFROG          999  // Leapfrog
53 53
 #define BOARD_MKS_BASE          40   // MKS BASE 1.0
54
-#define BOARD_WITBOX            41   // bq WITBOX
55
-#define BOARD_HEPHESTOS         42   // bq Prusa i3 Hephestos
56 54
 #define BOARD_BAM_DICE          401  // 2PrintBeta BAM&DICE with STK drivers
57 55
 #define BOARD_BAM_DICE_DUE      402  // 2PrintBeta BAM&DICE Due with STK drivers
58 56
 

+ 5
- 2
Marlin/example_configurations/Hephestos/Configuration.h View File

@@ -57,11 +57,14 @@ Here are some standard links for getting your machine calibrated:
57 57
 
58 58
 // The following define selects which electronics board you have.
59 59
 // Please choose the name from boards.h that matches your setup
60
-#define MOTHERBOARD BOARD_HEPHESTOS
60
+#define MOTHERBOARD BOARD_RAMPS_13_EFB
61 61
 
62 62
 // Optional custom name for your RepStrap or other custom machine
63 63
 // Displayed in the LCD "Ready" message
64
-// #define CUSTOM_MACHINE_NAME "3D Printer"
64
+#define CUSTOM_MACHINE_NAME "HEPHESTOS"
65
+
66
+// Added for BQ
67
+#define FIRMWARE_URL "http://www.bq.com/gb/downloads-prusa-i3-hephestos.html"
65 68
  
66 69
 // Define this to set a unique identifier for this printer, (Used by some programs to differentiate between machines)
67 70
 // You can use an online service to generate a random UUID. (eg http://www.uuidgenerator.net/version4)

+ 5
- 2
Marlin/example_configurations/WITBOX/Configuration.h View File

@@ -57,11 +57,14 @@ Here are some standard links for getting your machine calibrated:
57 57
 
58 58
 // The following define selects which electronics board you have.
59 59
 // Please choose the name from boards.h that matches your setup
60
-#define MOTHERBOARD BOARD_WITBOX
60
+#define MOTHERBOARD BOARD_RAMPS_13_EFB
61 61
 
62 62
 // Optional custom name for your RepStrap or other custom machine
63 63
 // Displayed in the LCD "Ready" message
64
-// #define CUSTOM_MACHINE_NAME "3D Printer"
64
+#define CUSTOM_MACHINE_NAME "WITBOX"
65
+
66
+// Added for BQ
67
+#define FIRMWARE_URL "http://www.bq.com/gb/downloads-witbox.html"
65 68
 
66 69
 // Define this to set a unique identifier for this printer, (Used by some programs to differentiate between machines)
67 70
 // You can use an online service to generate a random UUID. (eg http://www.uuidgenerator.net/version4)

+ 2
- 15
Marlin/language.h View File

@@ -59,21 +59,8 @@
59 59
 #elif MB(SAV_MKI)
60 60
   #define MACHINE_NAME "SAV MkI"
61 61
   #define FIRMWARE_URL "https://github.com/fmalpartida/Marlin/tree/SAV-MkI-config"
62
-#elif MB(WITBOX)
63
-  #define MACHINE_NAME "WITBOX"
64
-  #define FIRMWARE_URL "http://www.bq.com/gb/downloads-witbox.html"
65
-#elif MB(HEPHESTOS)
66
-  #define MACHINE_NAME "HEPHESTOS"
67
-  #define FIRMWARE_URL "http://www.bq.com/gb/downloads-prusa-i3-hephestos.html"
68
-#elif MB(BRAINWAVE_PRO)
69
-  #define MACHINE_NAME "Kossel Pro"
70
-  #ifndef FIRMWARE_URL
71
-    #define FIRMWARE_URL "https://github.com/OpenBeamUSA/Marlin/"
72
-  #endif
73
-#else
74
-  #ifndef MACHINE_NAME
75
-    #define MACHINE_NAME "3D Printer"
76
-  #endif
62
+#elif !defined(MACHINE_NAME)
63
+  #define MACHINE_NAME "3D Printer"
77 64
 #endif
78 65
 
79 66
 #ifdef CUSTOM_MENDEL_NAME

+ 0
- 4
Marlin/pins.h View File

@@ -104,10 +104,6 @@
104 104
   #include "pins_5DPRINT.h"
105 105
 #elif MB(LEAPFROG)
106 106
   #include "pins_LEAPFROG.h"
107
-#elif MB(WITBOX)
108
-  #include "pins_WITBOX.h"
109
-#elif MB(HEPHESTOS)
110
-  #include "pins_HEPHESTOS.h"
111 107
 #elif MB(BAM_DICE)
112 108
   #include "pins_RAMPS_13.h"
113 109
 #elif MB(BAM_DICE_DUE)

+ 0
- 11
Marlin/pins_HEPHESTOS.h View File

@@ -1,11 +0,0 @@
1
-/**
2
- * bq Prusa i3 Hephestos – Arduino Mega with RAMPS v1.3/1.4 pin assignments
3
- */
4
-
5
-#include "pins_RAMPS_13.h"
6
-
7
-#undef FAN_PIN
8
-#define FAN_PIN             9 // (Sprinter config)
9
-
10
-#undef HEATER_1_PIN
11
-#define HEATER_1_PIN       -1

+ 0
- 11
Marlin/pins_WITBOX.h View File

@@ -1,11 +0,0 @@
1
-/**
2
- * bq WITBOX Arduino Mega with RAMPS v1.3/1.4 pin assignments
3
- */
4
-
5
-#include "pins_RAMPS_13.h"
6
-
7
-#undef FAN_PIN
8
-#define FAN_PIN             9 // (Sprinter config)
9
-
10
-#undef HEATER_1_PIN
11
-#define HEATER_1_PIN       -1

Loading…
Cancel
Save