Browse Source

Merge pull request #4703 from bgort/RCBugFix

Add note suggesting RAMBo users use the RAMBo board type or platformio environment
Scott Lahteine 8 years ago
parent
commit
3b93b79f5c
1 changed files with 19 additions and 1 deletions
  1. 19
    1
      Marlin/pins_RAMBO.h

+ 19
- 1
Marlin/pins_RAMBO.h View File

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
  * Rambo pin assignments
40
  * Rambo pin assignments
25
  */
41
  */
26
 
42
 
139
 
155
 
140
     #if ENABLED(VIKI2) || ENABLED(miniVIKI)
156
     #if ENABLED(VIKI2) || ENABLED(miniVIKI)
141
       #define BEEPER_PIN 44
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
       #define DOGLCD_A0  70
162
       #define DOGLCD_A0  70
144
       #define DOGLCD_CS  71
163
       #define DOGLCD_CS  71
190
   #endif // !NEWPANEL
209
   #endif // !NEWPANEL
191
 
210
 
192
 #endif // ULTRA_LCD
211
 #endif // ULTRA_LCD
193
-

Loading…
Cancel
Save