[2.0.x] Board specific init macro (#11170)

This commit is contained in:
TheLongAndOnly 2018-07-02 06:11:42 +02:00 committed by Scott Lahteine
parent 5616581eb1
commit cedc158106
2 changed files with 34 additions and 20 deletions

View file

@ -719,6 +719,10 @@ void setup() {
tmc2208_serial_begin(); tmc2208_serial_begin();
#endif #endif
#ifdef BOARD_INIT
BOARD_INIT();
#endif
// Check startup - does nothing if bootloader sets MCUSR to 0 // Check startup - does nothing if bootloader sets MCUSR to 0
byte mcu = HAL_get_reset_source(); byte mcu = HAL_get_reset_source();
if (mcu & 1) SERIAL_ECHOLNPGM(MSG_POWERUP); if (mcu & 1) SERIAL_ECHOLNPGM(MSG_POWERUP);

View file

@ -100,29 +100,39 @@
#define E2_CS_PIN 35 #define E2_CS_PIN 35
#endif #endif
// For Extension Board V2 //
// Extension Board V2
// http://doku.radds.org/dokumentation/extension-board // http://doku.radds.org/dokumentation/extension-board
//#define E3_STEP_PIN 35 //
//#define E3_DIR_PIN 33 //#define RADDS_EXTENSION
//#define E3_ENABLE_PIN 37 #if ENABLED(RADDS_EXTENSION)
//#ifndef E3_CS_PIN #define E3_STEP_PIN 35
// #define E3_CS_PIN 6 #define E3_DIR_PIN 33
//#endif #define E3_ENABLE_PIN 37
#ifndef E3_CS_PIN
#define E3_CS_PIN 6
#endif
//#define Z2_STEP_PIN 29 #define E3_MS1_PIN 67
//#define Z2_DIR_PIN 27 #define E3_MS2_PIN 68
//#define Z2_ENABLE_PIN 31 #define E3_MS3_PIN 69
//#ifndef Z2_CS_PIN
// #define Z2_CS_PIN 39
//#endif
// Microstepping pins - Mapping not from fastio.h (?) #define Z2_STEP_PIN 29
//#define E3_MS1_PIN 67 #define Z2_DIR_PIN 27
//#define E3_MS2_PIN 68 #define Z2_ENABLE_PIN 31
//#define E3_MS3_PIN 69 #ifndef Z2_CS_PIN
//#define Z2_MS1_PIN 67 // shared with E3_MS1_PIN #define Z2_CS_PIN 39
//#define Z2_MS2_PIN 68 // shared with E3_MS2_PIN #endif
//#define Z2_MS3_PIN 69 // shared with E3_MS3_PIN
#define Z2_MS1_PIN 67 // shared with E3_MS1_PIN
#define Z2_MS2_PIN 68 // shared with E3_MS2_PIN
#define Z2_MS3_PIN 69 // shared with E3_MS3_PIN
#define RADDS_EXT_VDD1_PIN 25
#define RADDS_EXT_VDD2_PIN 66
#define BOARD_INIT() OUT_WRITE(RADDS_EXT_VDD1_PIN, HIGH); OUT_WRITE(RADDS_EXT_VDD2_PIN, HIGH)
#endif
// //
// Temperature Sensors // Temperature Sensors