Skip to content

Commit

Permalink
Melzi support
Browse files Browse the repository at this point in the history
  • Loading branch information
guanix committed May 9, 2012
1 parent 451f9cc commit 602c8ee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
// Gen6 = 5
// Gen6 deluxe = 51
// Sanguinololu 1.2 and above = 62
// Melzi = 63
// Ultimaker = 7
// Teensylu = 8
// Gen3+ =9
Expand Down
14 changes: 13 additions & 1 deletion Marlin/pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,10 @@
* Sanguinololu pin assignment
*
****************************************************************************************/
#if MOTHERBOARD == 62
#if MOTHERBOARD == 63
#define MELZI
#endif
#if MOTHERBOARD == 62 || MOTHERBOARD == 63
#undef MOTHERBOARD
#define MOTHERBOARD 6
#define SANGUINOLOLU_V_1_2
Expand Down Expand Up @@ -589,6 +592,11 @@

#define FAN_PIN -1

#ifdef MELZI
#define LED_PIN 28
#define FAN_PIN 4
#endif

#define PS_ON_PIN -1
#define KILL_PIN -1

Expand Down Expand Up @@ -621,6 +629,10 @@
#define SDPOWER -1
#define SDSS 31

#ifdef MELZI
#define SDSS 24
#endif

#endif


Expand Down

0 comments on commit 602c8ee

Please sign in to comment.