🎨 Clean up stops, sdss pins
This commit is contained in:
parent
5b7b065b96
commit
00834ef03d
@ -37,8 +37,8 @@
|
|||||||
//
|
//
|
||||||
// Limit Switches
|
// Limit Switches
|
||||||
//
|
//
|
||||||
#define X_MIN_PIN P1_24
|
#define X_STOP_PIN P1_24
|
||||||
#define Y_MIN_PIN P1_26
|
#define Y_STOP_PIN P1_26
|
||||||
#define Z_MIN_PIN P1_28
|
#define Z_MIN_PIN P1_28
|
||||||
#define Z_MAX_PIN P1_29
|
#define Z_MAX_PIN P1_29
|
||||||
|
|
||||||
|
@ -40,10 +40,8 @@
|
|||||||
//
|
//
|
||||||
#define X_MIN_PIN P1_28
|
#define X_MIN_PIN P1_28
|
||||||
#define X_MAX_PIN P1_25
|
#define X_MAX_PIN P1_25
|
||||||
#define Y_MIN_PIN P2_11
|
#define Y_STOP_PIN P2_11
|
||||||
#define Y_MAX_PIN -1
|
#define Z_STOP_PIN P1_27
|
||||||
#define Z_MIN_PIN P1_27
|
|
||||||
#define Z_MAX_PIN -1
|
|
||||||
#ifndef Z_MIN_PROBE_PIN
|
#ifndef Z_MIN_PROBE_PIN
|
||||||
#define Z_MIN_PROBE_PIN P1_22
|
#define Z_MIN_PROBE_PIN P1_22
|
||||||
#endif
|
#endif
|
||||||
|
@ -44,6 +44,11 @@
|
|||||||
#define RAMPS_D9_PIN 8
|
#define RAMPS_D9_PIN 8
|
||||||
#define MOSFET_D_PIN 12
|
#define MOSFET_D_PIN 12
|
||||||
|
|
||||||
|
//
|
||||||
|
// Misc. Functions
|
||||||
|
//
|
||||||
|
#define SDSS 25
|
||||||
|
|
||||||
#ifndef CASE_LIGHT_PIN
|
#ifndef CASE_LIGHT_PIN
|
||||||
#define CASE_LIGHT_PIN -1 // Hardware PWM but one is not available on expansion header
|
#define CASE_LIGHT_PIN -1 // Hardware PWM but one is not available on expansion header
|
||||||
#endif
|
#endif
|
||||||
@ -66,12 +71,6 @@
|
|||||||
//
|
//
|
||||||
#define HEATER_2_PIN 6
|
#define HEATER_2_PIN 6
|
||||||
|
|
||||||
//
|
|
||||||
// Misc. Functions
|
|
||||||
//
|
|
||||||
#undef SDSS
|
|
||||||
#define SDSS 25
|
|
||||||
|
|
||||||
#undef SD_DETECT_PIN
|
#undef SD_DETECT_PIN
|
||||||
#define SD_DETECT_PIN 53
|
#define SD_DETECT_PIN 53
|
||||||
|
|
||||||
|
@ -23,10 +23,10 @@
|
|||||||
|
|
||||||
#define BOARD_INFO_NAME "Copymaster 3D RAMPS"
|
#define BOARD_INFO_NAME "Copymaster 3D RAMPS"
|
||||||
|
|
||||||
#define Z_STEP_PIN 47
|
#define Z_STEP_PIN 47
|
||||||
#define Y_MAX_PIN 14
|
#define Y_MAX_PIN 14
|
||||||
#define FIL_RUNOUT_PIN 15
|
#define FIL_RUNOUT_PIN 15
|
||||||
#define SD_DETECT_PIN 66
|
#define SD_DETECT_PIN 66
|
||||||
|
|
||||||
//
|
//
|
||||||
// Import RAMPS 1.4 pins
|
// Import RAMPS 1.4 pins
|
||||||
|
@ -47,6 +47,7 @@
|
|||||||
//
|
//
|
||||||
// Misc. Functions
|
// Misc. Functions
|
||||||
//
|
//
|
||||||
|
#define SDSS 25
|
||||||
#define CASE_LIGHT_PIN 7
|
#define CASE_LIGHT_PIN 7
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -87,12 +88,6 @@
|
|||||||
//
|
//
|
||||||
#undef HEATER_BED_PIN
|
#undef HEATER_BED_PIN
|
||||||
|
|
||||||
//
|
|
||||||
// Misc. Functions
|
|
||||||
//
|
|
||||||
#undef SDSS
|
|
||||||
#define SDSS 25 // 53
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// LCD / Controller
|
// LCD / Controller
|
||||||
//
|
//
|
||||||
|
@ -241,7 +241,9 @@
|
|||||||
//
|
//
|
||||||
// Misc. Functions
|
// Misc. Functions
|
||||||
//
|
//
|
||||||
#define SDSS EXP2_07_PIN
|
#ifndef SDSS
|
||||||
|
#define SDSS EXP2_07_PIN
|
||||||
|
#endif
|
||||||
#define LED_PIN 13
|
#define LED_PIN 13
|
||||||
|
|
||||||
#ifndef FILWIDTH_PIN
|
#ifndef FILWIDTH_PIN
|
||||||
|
@ -86,9 +86,9 @@ A stepper for E0 extruder
|
|||||||
//
|
//
|
||||||
// Limit Switches
|
// Limit Switches
|
||||||
//
|
//
|
||||||
#define X_MIN_PIN 9
|
#define X_STOP_PIN 9
|
||||||
#define Y_MIN_PIN 10
|
#define Y_STOP_PIN 10
|
||||||
#define Z_MIN_PIN 11
|
#define Z_STOP_PIN 11
|
||||||
|
|
||||||
#define Z_MIN_PROBE_PIN 62 // Analog pin 8, Digital pin 62
|
#define Z_MIN_PROBE_PIN 62 // Analog pin 8, Digital pin 62
|
||||||
|
|
||||||
|
@ -128,7 +128,6 @@
|
|||||||
#define BTN_EN2 52
|
#define BTN_EN2 52
|
||||||
#define BTN_ENC 48
|
#define BTN_ENC 48
|
||||||
|
|
||||||
#define SDSS 4
|
|
||||||
#define SD_DETECT_PIN 14
|
#define SD_DETECT_PIN 14
|
||||||
|
|
||||||
#elif ENABLED(RADDS_DISPLAY)
|
#elif ENABLED(RADDS_DISPLAY)
|
||||||
@ -141,8 +140,6 @@
|
|||||||
|
|
||||||
#define BTN_BACK 71
|
#define BTN_BACK 71
|
||||||
|
|
||||||
#undef SDSS
|
|
||||||
#define SDSS 4
|
|
||||||
#define SD_DETECT_PIN 14
|
#define SD_DETECT_PIN 14
|
||||||
|
|
||||||
#elif HAS_U8GLIB_I2C_OLED
|
#elif HAS_U8GLIB_I2C_OLED
|
||||||
|
@ -40,12 +40,9 @@
|
|||||||
//
|
//
|
||||||
// Limit Switches
|
// Limit Switches
|
||||||
//
|
//
|
||||||
#define X_MIN_PIN 38
|
#define X_STOP_PIN 38
|
||||||
#define X_MAX_PIN -1
|
#define Y_STOP_PIN 34
|
||||||
#define Y_MIN_PIN 34
|
#define Z_STOP_PIN 30
|
||||||
#define Y_MAX_PIN -1
|
|
||||||
#define Z_MIN_PIN 30
|
|
||||||
#define Z_MAX_PIN -1
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Steppers
|
// Steppers
|
||||||
@ -120,7 +117,10 @@
|
|||||||
#define BTN_EN2 52
|
#define BTN_EN2 52
|
||||||
#define BTN_ENC 48
|
#define BTN_ENC 48
|
||||||
|
|
||||||
#define SDSS 4
|
#if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
|
||||||
|
#define BTN_ENC_EN LCD_PINS_D7 // Detect the presence of the encoder
|
||||||
|
#endif
|
||||||
|
|
||||||
#define SD_DETECT_PIN 14
|
#define SD_DETECT_PIN 14
|
||||||
|
|
||||||
#elif ENABLED(RADDS_DISPLAY)
|
#elif ENABLED(RADDS_DISPLAY)
|
||||||
@ -133,8 +133,6 @@
|
|||||||
|
|
||||||
#define BTN_BACK 71
|
#define BTN_BACK 71
|
||||||
|
|
||||||
#undef SDSS
|
|
||||||
#define SDSS 4
|
|
||||||
#define SD_DETECT_PIN 14
|
#define SD_DETECT_PIN 14
|
||||||
|
|
||||||
#elif HAS_U8GLIB_I2C_OLED
|
#elif HAS_U8GLIB_I2C_OLED
|
||||||
@ -143,7 +141,7 @@
|
|||||||
#define BTN_EN2 52
|
#define BTN_EN2 52
|
||||||
#define BTN_ENC 48
|
#define BTN_ENC 48
|
||||||
#define BEEPER_PIN 41
|
#define BEEPER_PIN 41
|
||||||
#define LCD_SDSS 4
|
#define LCD_SDSS SDSS
|
||||||
#define SD_DETECT_PIN 14
|
#define SD_DETECT_PIN 14
|
||||||
|
|
||||||
#elif ENABLED(SPARK_FULL_GRAPHICS)
|
#elif ENABLED(SPARK_FULL_GRAPHICS)
|
||||||
@ -158,20 +156,17 @@
|
|||||||
|
|
||||||
#define BEEPER_PIN -1
|
#define BEEPER_PIN -1
|
||||||
|
|
||||||
#elif ENABLED(MINIPANEL)
|
#elif ENABLED(MINIPANEL)
|
||||||
|
|
||||||
#define BTN_EN1 52
|
#define BTN_EN1 52
|
||||||
#define BTN_EN2 50
|
#define BTN_EN2 50
|
||||||
#define BTN_ENC 48
|
#define BTN_ENC 48
|
||||||
#define LCD_SDSS 4
|
#define LCD_SDSS SDSS
|
||||||
#define SD_DETECT_PIN 14
|
#define SD_DETECT_PIN 14
|
||||||
#define BEEPER_PIN 41
|
#define BEEPER_PIN 41
|
||||||
#define DOGLCD_A0 46
|
#define DOGLCD_A0 46
|
||||||
#define DOGLCD_CS 45
|
#define DOGLCD_CS 45
|
||||||
|
|
||||||
#endif // SPARK_FULL_GRAPHICS
|
|
||||||
|
|
||||||
#if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
|
|
||||||
#define BTN_ENC_EN LCD_PINS_D7 // Detect the presence of the encoder
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // HAS_WIRED_LCD
|
#endif // HAS_WIRED_LCD
|
||||||
|
@ -40,9 +40,9 @@
|
|||||||
//
|
//
|
||||||
// Limit Switches
|
// Limit Switches
|
||||||
//
|
//
|
||||||
#define X_MIN_PIN 22 // PB26
|
#define X_STOP_PIN 22 // PB26
|
||||||
#define Y_MAX_PIN 18 // PA11
|
#define Y_STOP_PIN 18 // PA11
|
||||||
#define Z_MIN_PIN 19 // PA10
|
#define Z_STOP_PIN 19 // PA10
|
||||||
|
|
||||||
//
|
//
|
||||||
// Z Probe (when not Z_MIN_PIN)
|
// Z Probe (when not Z_MIN_PIN)
|
||||||
|
@ -130,7 +130,6 @@
|
|||||||
//
|
//
|
||||||
// Misc. Functions
|
// Misc. Functions
|
||||||
//
|
//
|
||||||
#define SDSS 53
|
|
||||||
#define LED_PIN 13
|
#define LED_PIN 13
|
||||||
|
|
||||||
#ifndef FILWIDTH_PIN
|
#ifndef FILWIDTH_PIN
|
||||||
@ -252,6 +251,21 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//
|
||||||
|
// SD Support
|
||||||
|
//
|
||||||
|
#ifndef SDCARD_CONNECTION
|
||||||
|
#define SDCARD_CONNECTION ONBOARD
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if SD_CONNECTION_IS(ONBOARD)
|
||||||
|
#define SDSS 83
|
||||||
|
#undef SD_DETECT_PIN
|
||||||
|
#define SD_DETECT_PIN 95
|
||||||
|
#else
|
||||||
|
#define SDSS 53
|
||||||
|
#endif
|
||||||
|
|
||||||
//////////////////////////
|
//////////////////////////
|
||||||
// LCDs and Controllers //
|
// LCDs and Controllers //
|
||||||
//////////////////////////
|
//////////////////////////
|
||||||
@ -356,6 +370,9 @@
|
|||||||
#else
|
#else
|
||||||
#define BTN_EN1 31
|
#define BTN_EN1 31
|
||||||
#define BTN_EN2 33
|
#define BTN_EN2 33
|
||||||
|
#if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
|
||||||
|
#define BTN_ENC_EN LCD_PINS_D7 // Detect the presence of the encoder
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define BTN_ENC 35
|
#define BTN_ENC 35
|
||||||
@ -365,8 +382,7 @@
|
|||||||
#define KILL_PIN 41
|
#define KILL_PIN 41
|
||||||
|
|
||||||
#if ENABLED(BQ_LCD_SMART_CONTROLLER)
|
#if ENABLED(BQ_LCD_SMART_CONTROLLER)
|
||||||
// TO TEST
|
//#define LCD_BACKLIGHT_PIN 39 // TO TEST
|
||||||
//#define LCD_BACKLIGHT_PIN 39
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#elif ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
#elif ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
||||||
@ -563,22 +579,4 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif // IS_NEWPANEL
|
#endif // IS_NEWPANEL
|
||||||
|
|
||||||
#if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
|
|
||||||
#define BTN_ENC_EN LCD_PINS_D7 // Detect the presence of the encoder
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // HAS_WIRED_LCD
|
#endif // HAS_WIRED_LCD
|
||||||
|
|
||||||
//
|
|
||||||
// SD Support
|
|
||||||
//
|
|
||||||
#ifndef SDCARD_CONNECTION
|
|
||||||
#define SDCARD_CONNECTION ONBOARD
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if SD_CONNECTION_IS(ONBOARD)
|
|
||||||
#undef SDSS
|
|
||||||
#define SDSS 83
|
|
||||||
#undef SD_DETECT_PIN
|
|
||||||
#define SD_DETECT_PIN 95
|
|
||||||
#endif
|
|
||||||
|
@ -36,34 +36,27 @@
|
|||||||
// Ignore temp readings during development.
|
// Ignore temp readings during development.
|
||||||
//#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000
|
//#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000
|
||||||
|
|
||||||
|
//
|
||||||
|
// Limit Switches
|
||||||
|
//
|
||||||
|
#define X_STOP_PIN PD5
|
||||||
|
#define Y_STOP_PIN PD6
|
||||||
|
#define Z_STOP_PIN PD7
|
||||||
|
|
||||||
//
|
//
|
||||||
// Steppers
|
// Steppers
|
||||||
//
|
//
|
||||||
#define X_STEP_PIN PE0
|
#define X_STEP_PIN PE0
|
||||||
#define X_DIR_PIN PE1
|
#define X_DIR_PIN PE1
|
||||||
#define X_ENABLE_PIN PC0
|
#define X_ENABLE_PIN PC0
|
||||||
#define X_MIN_PIN PD5
|
|
||||||
#define X_MAX_PIN -1
|
|
||||||
|
|
||||||
#define Y_STEP_PIN PE2
|
#define Y_STEP_PIN PE2
|
||||||
#define Y_DIR_PIN PE3
|
#define Y_DIR_PIN PE3
|
||||||
#define Y_ENABLE_PIN PC1
|
#define Y_ENABLE_PIN PC1
|
||||||
#define Y_MIN_PIN PD6
|
|
||||||
#define Y_MAX_PIN
|
|
||||||
|
|
||||||
#define Z_STEP_PIN PE4
|
#define Z_STEP_PIN PE4
|
||||||
#define Z_DIR_PIN PE5
|
#define Z_DIR_PIN PE5
|
||||||
#define Z_ENABLE_PIN PC2
|
#define Z_ENABLE_PIN PC2
|
||||||
#define Z_MIN_PIN PD7
|
|
||||||
#define Z_MAX_PIN -1
|
|
||||||
|
|
||||||
#define Y2_STEP_PIN -1
|
|
||||||
#define Y2_DIR_PIN -1
|
|
||||||
#define Y2_ENABLE_PIN -1
|
|
||||||
|
|
||||||
#define Z2_STEP_PIN -1
|
|
||||||
#define Z2_DIR_PIN -1
|
|
||||||
#define Z2_ENABLE_PIN -1
|
|
||||||
|
|
||||||
#define E0_STEP_PIN PE6
|
#define E0_STEP_PIN PE6
|
||||||
#define E0_DIR_PIN PE7
|
#define E0_DIR_PIN PE7
|
||||||
@ -87,9 +80,6 @@
|
|||||||
#define SDSS PA15
|
#define SDSS PA15
|
||||||
#define LED_PIN PB2
|
#define LED_PIN PB2
|
||||||
|
|
||||||
#define PS_ON_PIN -1
|
|
||||||
#define KILL_PIN -1
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Heaters / Fans
|
// Heaters / Fans
|
||||||
//
|
//
|
||||||
@ -98,8 +88,6 @@
|
|||||||
#define HEATER_2_PIN PD14
|
#define HEATER_2_PIN PD14
|
||||||
|
|
||||||
#define HEATER_BED_PIN PB9 // BED
|
#define HEATER_BED_PIN PB9 // BED
|
||||||
#define HEATER_BED2_PIN -1 // BED2
|
|
||||||
#define HEATER_BED3_PIN -1 // BED3
|
|
||||||
|
|
||||||
#ifndef FAN_PIN
|
#ifndef FAN_PIN
|
||||||
#define FAN_PIN PB10
|
#define FAN_PIN PB10
|
||||||
|
@ -38,47 +38,32 @@
|
|||||||
// Ignore temp readings during development.
|
// Ignore temp readings during development.
|
||||||
//#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000
|
//#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000
|
||||||
|
|
||||||
|
//
|
||||||
|
// Limit Switches
|
||||||
|
//
|
||||||
|
#define X_STOP_PIN PG10
|
||||||
|
#define Y_STOP_PIN PA12
|
||||||
|
#define Z_STOP_PIN PA14
|
||||||
|
|
||||||
//
|
//
|
||||||
// Steppers
|
// Steppers
|
||||||
//
|
//
|
||||||
#define X_STEP_PIN PE5
|
#define X_STEP_PIN PE5
|
||||||
#define X_DIR_PIN PE6
|
#define X_DIR_PIN PE6
|
||||||
#define X_ENABLE_PIN PC13
|
#define X_ENABLE_PIN PC13
|
||||||
#define X_MIN_PIN PG10
|
|
||||||
#define X_MAX_PIN -1
|
|
||||||
|
|
||||||
#define Y_STEP_PIN PE2
|
#define Y_STEP_PIN PE2
|
||||||
#define Y_DIR_PIN PE3
|
#define Y_DIR_PIN PE3
|
||||||
#define Y_ENABLE_PIN PE4
|
#define Y_ENABLE_PIN PE4
|
||||||
#define Y_MIN_PIN PA12
|
|
||||||
#define Y_MAX_PIN
|
|
||||||
|
|
||||||
#define Z_STEP_PIN PB9
|
#define Z_STEP_PIN PB9
|
||||||
#define Z_DIR_PIN PE0
|
#define Z_DIR_PIN PE0
|
||||||
#define Z_ENABLE_PIN PE1
|
#define Z_ENABLE_PIN PE1
|
||||||
#define Z_MIN_PIN PA14
|
|
||||||
#define Z_MAX_PIN -1
|
|
||||||
|
|
||||||
#define Y2_STEP_PIN -1
|
|
||||||
#define Y2_DIR_PIN -1
|
|
||||||
#define Y2_ENABLE_PIN -1
|
|
||||||
|
|
||||||
#define Z2_STEP_PIN -1
|
|
||||||
#define Z2_DIR_PIN -1
|
|
||||||
#define Z2_ENABLE_PIN -1
|
|
||||||
|
|
||||||
#define E0_STEP_PIN PB4
|
#define E0_STEP_PIN PB4
|
||||||
#define E0_DIR_PIN PB5
|
#define E0_DIR_PIN PB5
|
||||||
#define E0_ENABLE_PIN PB8
|
#define E0_ENABLE_PIN PB8
|
||||||
|
|
||||||
#define E1_STEP_PIN -1
|
|
||||||
#define E1_DIR_PIN -1
|
|
||||||
#define E1_ENABLE_PIN -1
|
|
||||||
|
|
||||||
#define E2_STEP_PIN -1
|
|
||||||
#define E2_DIR_PIN -1
|
|
||||||
#define E2_ENABLE_PIN -1
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Misc. Functions
|
// Misc. Functions
|
||||||
//
|
//
|
||||||
@ -114,8 +99,6 @@
|
|||||||
//
|
//
|
||||||
#define TEMP_BED_PIN PA0 // Analog Input
|
#define TEMP_BED_PIN PA0 // Analog Input
|
||||||
#define TEMP_0_PIN PA1 // Analog Input
|
#define TEMP_0_PIN PA1 // Analog Input
|
||||||
#define TEMP_1_PIN -1 // Analog Input
|
|
||||||
#define TEMP_2_PIN -1 // Analog Input
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// LCD Pins
|
// LCD Pins
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
#define FLASH_EEPROM_EMULATION
|
#define FLASH_EEPROM_EMULATION
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define SDSS SD_SS_PIN
|
#define SDSS SD_SS_PIN // Also in HAL/STM32F1/spi_pins.h
|
||||||
|
|
||||||
// Based on PWM timer usage, we have to use these timers and soft PWM for the fans
|
// Based on PWM timer usage, we have to use these timers and soft PWM for the fans
|
||||||
// On STM32F103:
|
// On STM32F103:
|
||||||
@ -53,9 +53,9 @@
|
|||||||
//
|
//
|
||||||
// Limit Switches
|
// Limit Switches
|
||||||
//
|
//
|
||||||
#define X_MIN_PIN PB4
|
#define X_STOP_PIN PB4
|
||||||
#define Y_MIN_PIN PA15
|
#define Y_STOP_PIN PA15
|
||||||
#define Z_MIN_PIN PB5
|
#define Z_STOP_PIN PB5
|
||||||
|
|
||||||
//
|
//
|
||||||
// Steppers
|
// Steppers
|
||||||
|
@ -39,9 +39,9 @@
|
|||||||
//
|
//
|
||||||
// Limit Switches
|
// Limit Switches
|
||||||
//
|
//
|
||||||
#define X_MIN_PIN PB14
|
#define X_STOP_PIN PB14
|
||||||
#define Y_MIN_PIN PB13
|
#define Y_STOP_PIN PB13
|
||||||
#define Z_MIN_PIN PB12
|
#define Z_STOP_PIN PB12
|
||||||
|
|
||||||
//
|
//
|
||||||
// Z Probe (when not Z_MIN_PIN)
|
// Z Probe (when not Z_MIN_PIN)
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include "env_validate.h"
|
#include "env_validate.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 21017 Victor Perez Marlin for stm32f1 test
|
* 10 Dec 2017 Victor Perez Marlin for stm32f1 test
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define BOARD_INFO_NAME "STM3R Mini"
|
#define BOARD_INFO_NAME "STM3R Mini"
|
||||||
|
@ -173,7 +173,6 @@
|
|||||||
//
|
//
|
||||||
// Misc functions
|
// Misc functions
|
||||||
//
|
//
|
||||||
#define SDSS 16 // PA4 SPI_CS
|
|
||||||
#define LED_PIN -1 // 9 // PE1 green LED Heart beat
|
#define LED_PIN -1 // 9 // PE1 green LED Heart beat
|
||||||
#define PS_ON_PIN -1
|
#define PS_ON_PIN -1
|
||||||
#define KILL_PIN -1
|
#define KILL_PIN -1
|
||||||
@ -245,7 +244,6 @@
|
|||||||
|
|
||||||
#ifndef SDIO_SUPPORT
|
#ifndef SDIO_SUPPORT
|
||||||
#define SOFTWARE_SPI // Use soft SPI for onboard SD
|
#define SOFTWARE_SPI // Use soft SPI for onboard SD
|
||||||
#undef SDSS
|
|
||||||
#define SDSS SDIO_D3_PIN
|
#define SDSS SDIO_D3_PIN
|
||||||
#define SD_SCK_PIN SDIO_CK_PIN
|
#define SD_SCK_PIN SDIO_CK_PIN
|
||||||
#define SD_MISO_PIN SDIO_D0_PIN
|
#define SD_MISO_PIN SDIO_D0_PIN
|
||||||
@ -253,6 +251,10 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef SDSS
|
||||||
|
#define SDSS 16 // PA4 SPI_CS
|
||||||
|
#endif
|
||||||
|
|
||||||
// OTG
|
// OTG
|
||||||
// 30 // PA11 OTG_DM
|
// 30 // PA11 OTG_DM
|
||||||
// 31 // PA12 OTG_DP
|
// 31 // PA12 OTG_DP
|
||||||
|
@ -116,7 +116,6 @@
|
|||||||
//
|
//
|
||||||
// Misc. Functions
|
// Misc. Functions
|
||||||
//
|
//
|
||||||
#define SDSS 26 // B6 SDCS
|
|
||||||
#define FILWIDTH_PIN 2 // Analog Input
|
#define FILWIDTH_PIN 2 // Analog Input
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -142,7 +141,6 @@
|
|||||||
#define BTN_EN2 3 // D3 RX1 JP2-7
|
#define BTN_EN2 3 // D3 RX1 JP2-7
|
||||||
#define BTN_ENC 45 // F7 TDI JP2-12
|
#define BTN_ENC 45 // F7 TDI JP2-12
|
||||||
|
|
||||||
#undef SDSS
|
|
||||||
#define SDSS 43 // F5 TMS JP2-8
|
#define SDSS 43 // F5 TMS JP2-8
|
||||||
|
|
||||||
#define STAT_LED_RED_PIN 12 // C2 JP11-14
|
#define STAT_LED_RED_PIN 12 // C2 JP11-14
|
||||||
@ -153,7 +151,7 @@
|
|||||||
#define BTN_EN1 3 // D3 RX1 JP2-7
|
#define BTN_EN1 3 // D3 RX1 JP2-7
|
||||||
#define BTN_EN2 2 // D2 TX1 JP2-5
|
#define BTN_EN2 2 // D2 TX1 JP2-5
|
||||||
#define BTN_ENC 41 // F3 JP2-4
|
#define BTN_ENC 41 // F3 JP2-4
|
||||||
#undef SDSS
|
|
||||||
#define SDSS 38 // F0 B-THERM connector - use SD card on Panelolu2
|
#define SDSS 38 // F0 B-THERM connector - use SD card on Panelolu2
|
||||||
|
|
||||||
#else
|
#else
|
||||||
@ -165,3 +163,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // IS_ULTRA_LCD && IS_NEWPANEL
|
#endif // IS_ULTRA_LCD && IS_NEWPANEL
|
||||||
|
|
||||||
|
#ifndef SDSS
|
||||||
|
#define SDSS 26 // B6 SDCS
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user