Skip to content

Commit 852e197

Browse files
committed
format
1 parent e8f7179 commit 852e197

File tree

4 files changed

+16
-19
lines changed

4 files changed

+16
-19
lines changed

Marlin/src/core/boards.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@
473473
#define BOARD_BLACKBEEZMINI_V1 5251 // BlackBeezMini V1 (STM32F401CCU6)
474474
#define BOARD_XTLW_CLIMBER_8TH 5252 // XTLW Climber-8th (STM32F407VGT6)
475475
#define BOARD_FLY_RRF_E3_V1 5253 // Fly RRF E3 V1.0 (STM32F407VG)
476-
#define BOARD_FLY_SUPER8 5254 // SUPER8 (STM32F407ZGT6)
476+
#define BOARD_FLY_SUPER8 5254 // Fly SUPER8 (STM32F407ZGT6)
477477
#define BOARD_FLY_D8 5255 // FLY D8 (STM32F407VG)
478478

479479
//

Marlin/src/pins/pins.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@
849849
#include "stm32f4/pins_FLY_SUPER8.h" // STM32F4 env:SUPER8
850850
#elif MB(FLY_D8)
851851
#include "stm32f4/pins_FLY_D8.h" // STM32F4 env:FLY_D8
852-
852+
853853
//
854854
// Other ARM Cortex-M4
855855
//

Marlin/src/pins/stm32f4/pins_FLY_D8.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Marlin 3D Printer Firmware
3-
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
3+
* Copyright (c) 2024 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
44
*
55
* Based on Sprinter and grbl.
66
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
@@ -77,7 +77,7 @@
7777
//
7878
// Z Probe (when not Z_MIN_PIN)
7979
//
80-
#define Z_MIN_PROBE_PIN PC0
80+
#define Z_MIN_PROBE_PIN PC0
8181

8282
//
8383
// Steppers
@@ -158,7 +158,7 @@
158158

159159

160160

161-
#define FAN0_PIN PA0
161+
#define FAN0_PIN PA0
162162
#define FAN1_PIN PA1
163163
#define FAN2_PIN PA2
164164
#define FAN3_PIN PC6
@@ -216,13 +216,13 @@
216216
// Trinamic SPI
217217
//
218218
#ifndef TMC_SPI_SCK
219-
#define TMC_SPI_SCK PB3
219+
#define TMC_SPI_SCK PB3
220220
#endif
221221
#ifndef TMC_SPI_MISO
222-
#define TMC_SPI_MISO PB4
222+
#define TMC_SPI_MISO PB4
223223
#endif
224224
#ifndef TMC_SPI_MOSI
225-
#define TMC_SPI_MOSI PB5
225+
#define TMC_SPI_MOSI PB5
226226
#endif
227227

228228
//
@@ -329,4 +329,4 @@
329329
#define BOARD_ST7920_DELAY_1 96
330330
#define BOARD_ST7920_DELAY_2 48
331331
#define BOARD_ST7920_DELAY_3 715
332-
#endif
332+
#endif

Marlin/src/pins/stm32f4/pins_FLY_SUPER8.h

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Marlin 3D Printer Firmware
3-
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
3+
* Copyright (c) 2024 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
44
*
55
* Based on Sprinter and grbl.
66
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
@@ -67,8 +67,8 @@
6767
#define Z_MIN_PIN PD7
6868
#define Z_MAX_PIN PD6
6969

70-
#define IO6 PA8
71-
#define IN7 PF8
70+
#define IO6 PA8
71+
#define IN7 PF8
7272

7373
//
7474
// Z Probe (when not Z_MIN_PIN)
@@ -88,7 +88,7 @@
8888

8989
#define Y_STEP_PIN PE3
9090
#define Y_DIR_PIN PF13
91-
#define Y_ENABLE_PIN PF14
91+
#define Y_ENABLE_PIN PF14
9292
#ifndef Y_CS_PIN
9393
#define Y_CS_PIN PF12
9494
#endif
@@ -135,7 +135,6 @@
135135
#define E4_CS_PIN PG5
136136
#endif
137137

138-
139138
//
140139
// Temperature Sensors
141140
//
@@ -210,7 +209,6 @@
210209

211210
#define ONBOARD_SDIO // Use SDIO for onboard SD
212211

213-
214212
#elif SD_CONNECTION_IS(LCD)
215213

216214
#define SD_SCK_PIN EXP2_02_PIN
@@ -225,13 +223,13 @@
225223
// Trinamic SPI
226224
//
227225
#ifndef TMC_SPI_SCK
228-
#define TMC_SPI_SCK PB3
226+
#define TMC_SPI_SCK PB3
229227
#endif
230228
#ifndef TMC_SPI_MISO
231-
#define TMC_SPI_MISO PB4
229+
#define TMC_SPI_MISO PB4
232230
#endif
233231
#ifndef TMC_SPI_MOSI
234-
#define TMC_SPI_MOSI PB5
232+
#define TMC_SPI_MOSI PB5
235233
#endif
236234

237235
//
@@ -247,7 +245,6 @@
247245
#define E2_SERIAL_TX_PIN PF1
248246
#define E3_SERIAL_TX_PIN PG2
249247
#define E4_SERIAL_TX_PIN PG5
250-
251248
#endif
252249

253250
//

0 commit comments

Comments
 (0)