Browse Source

NEOPIXEL overridable on BTT SKR (#20797)

vanilla_fb_2.0.x
Alexander D. Kanevskiy 4 years ago
committed by Scott Lahteine
parent
commit
d814d8f954
  1. 4
      Marlin/src/pins/lpc1769/pins_BTT_SKR_E3_TURBO.h
  2. 5
      Marlin/src/pins/stm32f1/pins_BTT_SKR_CR6.h
  3. 4
      Marlin/src/pins/stm32f1/pins_BTT_SKR_MINI_E3_V1_2.h
  4. 8
      Marlin/src/pins/stm32f1/pins_BTT_SKR_MINI_E3_V2_0.h

4
Marlin/src/pins/lpc1769/pins_BTT_SKR_E3_TURBO.h

@ -70,7 +70,9 @@
#endif
// LED driving pin
#define NEOPIXEL_PIN P1_24
#ifndef NEOPIXEL_PIN
#define NEOPIXEL_PIN P1_24
#endif
//
// Power Loss Detection

5
Marlin/src/pins/stm32f1/pins_BTT_SKR_CR6.h

@ -177,4 +177,7 @@
// Misc. Functions
//
#define LED_CONTROL_PIN PA13
#define NEOPIXEL_PIN PA8
#ifndef NEOPIXEL_PIN
#define NEOPIXEL_PIN PA8
#endif

4
Marlin/src/pins/stm32f1/pins_BTT_SKR_MINI_E3_V1_2.h

@ -25,7 +25,9 @@
#define BOARD_INFO_NAME "BTT SKR Mini E3 V1.2"
#define NEOPIXEL_PIN PC7 // LED driving pin
#ifndef NEOPIXEL_PIN
#define NEOPIXEL_PIN PC7 // LED driving pin
#endif
/**
* TMC2208/TMC2209 stepper drivers

8
Marlin/src/pins/stm32f1/pins_BTT_SKR_MINI_E3_V2_0.h

@ -39,9 +39,13 @@
// Release PA13/PA14 (led, usb control) from SWD pins
#define DISABLE_DEBUG
#define NEOPIXEL_PIN PA8 // LED driving pin
#ifndef NEOPIXEL_PIN
#define NEOPIXEL_PIN PA8 // LED driving pin
#endif
#define PS_ON_PIN PC13 // Power Supply Control
#ifndef PS_ON_PIN
#define PS_ON_PIN PC13 // Power Supply Control
#endif
#define FAN1_PIN PC7

Loading…
Cancel
Save