Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0de9d86

Browse files
committedSep 15, 2023
fix lint
1 parent 138a7f7 commit 0de9d86

File tree

1 file changed

+14
-14
lines changed
  • variants/STM32H7xx/H742Z(G-I)T_H743Z(G-I)T_H747A(G-I)I_H747I(G-I)T_H750ZBT_H753ZIT_H757AII_H757IIT

1 file changed

+14
-14
lines changed
 

‎variants/STM32H7xx/H742Z(G-I)T_H743Z(G-I)T_H747A(G-I)I_H747I(G-I)T_H750ZBT_H753ZIT_H757AII_H757IIT/variant_NUCLEO_H753ZI.h

+14-14
Original file line numberDiff line numberDiff line change
@@ -200,58 +200,58 @@
200200

201201
// On-board LED pin number
202202
#ifndef LED_BUILTIN
203-
#define LED_BUILTIN PB0 // LD1
203+
#define LED_BUILTIN PB0 // LD1
204204
#endif
205205
#define LED_GREEN LED_BUILTIN
206206
#define LED_BLUE PB7 // LD2
207207
#define LED_RED PB14 // LD3
208208

209209
// On-board user button
210210
#ifndef USER_BTN
211-
#define USER_BTN PC13
211+
#define USER_BTN PC13
212212
#endif
213213

214214
// Timer Definitions
215215
// Use TIM6/TIM7 when possible as servo and tone don't need GPIO output pin
216216
#ifndef TIMER_TONE
217-
#define TIMER_TONE TIM6
217+
#define TIMER_TONE TIM6
218218
#endif
219219
#ifndef TIMER_SERVO
220-
#define TIMER_SERVO TIM7
220+
#define TIMER_SERVO TIM7
221221
#endif
222222

223223
// UART Definitions
224224
#ifndef SERIAL_UART_INSTANCE
225-
#define SERIAL_UART_INSTANCE 3 //Connected to ST-Link
225+
#define SERIAL_UART_INSTANCE 3 //Connected to ST-Link
226226
#endif
227227

228228
// Serial pin used for console (ex: ST-Link)
229229
// Required by Firmata
230230
#ifndef PIN_SERIAL_RX
231-
#define PIN_SERIAL_RX PD9
231+
#define PIN_SERIAL_RX PD9
232232
#endif
233233
#ifndef PIN_SERIAL_TX
234-
#define PIN_SERIAL_TX PD8
234+
#define PIN_SERIAL_TX PD8
235235
#endif
236236

237237
// HSE default value is 25MHz in HAL
238238
// HSE_BYPASS is 8MHz
239239
#ifndef HSE_BYPASS_NOT_USED
240-
#define HSE_VALUE 8000000
240+
#define HSE_VALUE 8000000
241241
#endif
242242

243243
// Extra HAL modules
244244
#if !defined(HAL_DAC_MODULE_DISABLED)
245-
#define HAL_DAC_MODULE_ENABLED
245+
#define HAL_DAC_MODULE_ENABLED
246246
#endif
247247
#if !defined(HAL_ETH_MODULE_DISABLED)
248-
#define HAL_ETH_MODULE_ENABLED
248+
#define HAL_ETH_MODULE_ENABLED
249249
#endif
250250
#if !defined(HAL_QSPI_MODULE_DISABLED)
251-
#define HAL_QSPI_MODULE_ENABLED
251+
#define HAL_QSPI_MODULE_ENABLED
252252
#endif
253253
#if !defined(HAL_SD_MODULE_DISABLED)
254-
#define HAL_SD_MODULE_ENABLED
254+
#define HAL_SD_MODULE_ENABLED
255255
#endif
256256

257257
/*----------------------------------------------------------------------------
@@ -274,6 +274,6 @@
274274
//
275275
// SERIAL_PORT_HARDWARE_OPEN Hardware serial ports which are open for use. Their RX & TX
276276
// pins are NOT connected to anything by default.
277-
#define SERIAL_PORT_MONITOR Serial
278-
#define SERIAL_PORT_HARDWARE Serial
277+
#define SERIAL_PORT_MONITOR Serial
278+
#define SERIAL_PORT_HARDWARE Serial
279279
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.