@@ -106,7 +106,7 @@ const PinName digitalPin[] = {
106
106
// CN17 Left Arduino Analog Pins
107
107
PF_14, // A0 - D19, D47 - ADC2_INP6
108
108
PF_13, // A1 - D20, D48 - ADC2_INP2
109
- ANA_0, // A2 - D21, D49 - ADC1_INP0
109
+ ANA_0, // A2 - D21, D49 - ADC1_INP0
110
110
ANA_1, // A3 - D22, D50 - ADC1_INP1
111
111
PC_3, // A4 - D23, D51 - ADC1_INP13, or PA_12 (D14) with SB23 ON / SB24 OFF
112
112
PF_12 // A5 - D24, D52 - ADC1_INP6, or PA_11 (D15) with SB25 ON / SB26 OFF
@@ -135,16 +135,16 @@ void SystemClock_Config(void)
135
135
* NOT a WEAK function, preventing being overriden.
136
136
* In STM32MP1 series, SystemClock_Config()) is "done" by running the FSBL
137
137
* (First Stage Boot Loader) on Cortex-A. This function call shall NOT be
138
- * executed in production mode. SystemClock_Config() shall be under
138
+ * executed in production mode. SystemClock_Config() shall be under
139
139
* if(IS_ENGINEERING_BOOT_MODE()).
140
- *
140
+ *
141
141
* NOTE:
142
142
* * Production mode: Both CA7 and CM4 core running, BOOT0 and BOOT2 are ON.
143
143
* * Engineering mode: Only CM4 running, BOOT0 = OFF, BOOT2 = ON.
144
144
* See:
145
145
* https://wiki.st.com/stm32mpu/wiki/STM32CubeMP1_development_guidelines
146
146
*/
147
- if (!IS_ENGINEERING_BOOT_MODE ()) {
147
+ if (!IS_ENGINEERING_BOOT_MODE ()) {
148
148
return ;
149
149
}
150
150
@@ -159,7 +159,7 @@ void SystemClock_Config(void)
159
159
/* *Initializes the CPU, AHB and APB busses clocks
160
160
*/
161
161
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI | RCC_OSCILLATORTYPE_HSE
162
- | RCC_OSCILLATORTYPE_LSE;
162
+ | RCC_OSCILLATORTYPE_LSE;
163
163
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
164
164
RCC_OscInitStruct.LSEState = RCC_LSE_ON;
165
165
RCC_OscInitStruct.HSIState = RCC_HSI_ON;
0 commit comments