Browse Source

Fixed compile errors from bad commits.

pull/1/head
Erik van der Zalm 11 years ago
parent
commit
48a185d004
  1. 2
      Marlin/Configuration.h
  2. 2
      Marlin/Marlin.h
  3. 6
      Marlin/language.h

2
Marlin/Configuration.h

@ -69,7 +69,7 @@
// 21 = Elefu Ra Board (v3) // 21 = Elefu Ra Board (v3)
#ifndef MOTHERBOARD #ifndef MOTHERBOARD
//#define MOTHERBOARD 7 #define MOTHERBOARD 7
#endif #endif
// Define this to set a custom name for your generic Mendel, // Define this to set a custom name for your generic Mendel,

2
Marlin/Marlin.h

@ -55,6 +55,8 @@
#else #else
#define MYSERIAL Serial #define MYSERIAL Serial
#endif // BTENABLED #endif // BTENABLED
#else
#define MYSERIAL MSerial
#endif #endif
#define SERIAL_PROTOCOL(x) (MYSERIAL.print(x)) #define SERIAL_PROTOCOL(x) (MYSERIAL.print(x))

6
Marlin/language.h

@ -38,11 +38,13 @@
#else #else
#define MACHINE_NAME "Mendel" #define MACHINE_NAME "Mendel"
#endif #endif
#define FIRMWARE_URL "http://www.mendel-parts.com"
#endif
#ifndef MACHINE_UUID #ifndef MACHINE_UUID
#define MACHINE_UUID "00000000-0000-0000-0000-000000000000" #define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
#endif #endif
#define FIRMWARE_URL "http://www.mendel-parts.com"
#endif
#define STRINGIFY_(n) #n #define STRINGIFY_(n) #n
#define STRINGIFY(n) STRINGIFY_(n) #define STRINGIFY(n) STRINGIFY_(n)

Loading…
Cancel
Save