Skip to content

Commit

Permalink
Fixed compile errors from bad commits.
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikZalm committed Nov 10, 2013
1 parent 24d1f48 commit 48a185d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
// 21 = Elefu Ra Board (v3)

#ifndef MOTHERBOARD
//#define MOTHERBOARD 7
#define MOTHERBOARD 7
#endif

// Define this to set a custom name for your generic Mendel,
Expand Down
2 changes: 2 additions & 0 deletions Marlin/Marlin.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
#else
#define MYSERIAL Serial
#endif // BTENABLED
#else
#define MYSERIAL MSerial
#endif

#define SERIAL_PROTOCOL(x) (MYSERIAL.print(x))
Expand Down
8 changes: 5 additions & 3 deletions Marlin/language.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@
#else
#define MACHINE_NAME "Mendel"
#endif
#ifndef MACHINE_UUID
#define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
#endif

#define FIRMWARE_URL "http://www.mendel-parts.com"
#endif

#ifndef MACHINE_UUID
#define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
#endif

#define STRINGIFY_(n) #n
#define STRINGIFY(n) STRINGIFY_(n)

Expand Down

0 comments on commit 48a185d

Please sign in to comment.