|
@@ -21,6 +21,22 @@
|
21
|
21
|
*/
|
22
|
22
|
|
23
|
23
|
/**
|
|
24
|
+ * IMPORTANT NOTE:
|
|
25
|
+ * Rambo users should be sure to compile Marlin using either the RAMBo
|
|
26
|
+ * board type if using the Arduino IDE - available via the link below - or
|
|
27
|
+ * the 'rambo' environment if using platformio, by specifying '-e rambo' on
|
|
28
|
+ * the command line or by changing the value of the 'env_default' variable to
|
|
29
|
+ * 'rambo' in the supplied platformio.ini.
|
|
30
|
+ *
|
|
31
|
+ * If you don't compile using the proper board type, the RAMBo's extended
|
|
32
|
+ * pins will likely be unavailable and accessories/addons may not work.
|
|
33
|
+ *
|
|
34
|
+ * Instructions for installing the Arduino RAMBo board type for the
|
|
35
|
+ * Arduino IDE are available at:
|
|
36
|
+ * http://reprap.org/wiki/Rambo_firmware
|
|
37
|
+ */
|
|
38
|
+
|
|
39
|
+/**
|
24
|
40
|
* Rambo pin assignments
|
25
|
41
|
*/
|
26
|
42
|
|
|
@@ -139,6 +155,9 @@
|
139
|
155
|
|
140
|
156
|
#if ENABLED(VIKI2) || ENABLED(miniVIKI)
|
141
|
157
|
#define BEEPER_PIN 44
|
|
158
|
+ //NB: Panucatt's Viki 2.0 wiring diagram (v1.2) indicates that the
|
|
159
|
+ // beeper/buzzer is connected to pin 33; however, the pin used in the
|
|
160
|
+ // diagram is actually pin 44, so this is correct.
|
142
|
161
|
|
143
|
162
|
#define DOGLCD_A0 70
|
144
|
163
|
#define DOGLCD_CS 71
|
|
@@ -190,4 +209,3 @@
|
190
|
209
|
#endif // !NEWPANEL
|
191
|
210
|
|
192
|
211
|
#endif // ULTRA_LCD
|
193
|
|
-
|