🔨 FYSETC S6 small bootloader target (#22207)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
George Fu
2021-07-07 08:40:11 +08:00
committed by Scott Lahteine
parent 2753b4eeaa
commit cae391bb48
6 changed files with 64 additions and 8 deletions

View File

@ -610,11 +610,11 @@
#elif MB(VAKE403D)
#include "stm32f4/pins_VAKE403D.h" // STM32F4
#elif MB(FYSETC_S6)
#include "stm32f4/pins_FYSETC_S6.h" // STM32F4 env:FYSETC_S6
#include "stm32f4/pins_FYSETC_S6.h" // STM32F4 env:FYSETC_S6 env:FYSETC_S6_8000
#elif MB(FYSETC_S6_V2_0)
#include "stm32f4/pins_FYSETC_S6_V2_0.h" // STM32F4 env:FYSETC_S6
#include "stm32f4/pins_FYSETC_S6_V2_0.h" // STM32F4 env:FYSETC_S6 env:FYSETC_S6_8000
#elif MB(FYSETC_SPIDER)
#include "stm32f4/pins_FYSETC_SPIDER.h" // STM32F4 env:FYSETC_S6
#include "stm32f4/pins_FYSETC_SPIDER.h" // STM32F4 env:FYSETC_S6 env:FYSETC_S6_8000
#elif MB(FLYF407ZG)
#include "stm32f4/pins_FLYF407ZG.h" // STM32F4 env:FLYF407ZG
#elif MB(MKS_ROBIN2)

View File

@ -56,7 +56,9 @@
//
// Servos
//
#define SERVO0_PIN PA3
#ifndef SERVO0_PIN
#define SERVO0_PIN PA3
#endif
//
// Limit Switches

View File

@ -68,6 +68,12 @@
//
#define X_ENABLE_PIN PE9
//
// Servos
// Z_MAX_PIN only works in input mode
//
#define SERVO0_PIN PA2
#if HAS_TMC_UART
#define X_SERIAL_TX_PIN PE7
#define X_SERIAL_RX_PIN PE7