@@ -106,7 +106,7 @@ const PinName digitalPin[] = {
106106 // CN17 Left Arduino Analog Pins
107107 PF_14, // A0 - D19, D47 - ADC2_INP6
108108 PF_13, // A1 - D20, D48 - ADC2_INP2
109- ANA_0, // A2 - D21, D49 - ADC1_INP0
109+ ANA_0, // A2 - D21, D49 - ADC1_INP0
110110 ANA_1, // A3 - D22, D50 - ADC1_INP1
111111 PC_3, // A4 - D23, D51 - ADC1_INP13, or PA_12 (D14) with SB23 ON / SB24 OFF
112112 PF_12 // A5 - D24, D52 - ADC1_INP6, or PA_11 (D15) with SB25 ON / SB26 OFF
@@ -135,16 +135,16 @@ void SystemClock_Config(void)
135135 * NOT a WEAK function, preventing being overriden.
136136 * In STM32MP1 series, SystemClock_Config()) is "done" by running the FSBL
137137 * (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
139139 * if(IS_ENGINEERING_BOOT_MODE()).
140- *
140+ *
141141 * NOTE:
142142 * * Production mode: Both CA7 and CM4 core running, BOOT0 and BOOT2 are ON.
143143 * * Engineering mode: Only CM4 running, BOOT0 = OFF, BOOT2 = ON.
144144 * See:
145145 * https://wiki.st.com/stm32mpu/wiki/STM32CubeMP1_development_guidelines
146146 */
147- if (!IS_ENGINEERING_BOOT_MODE ()) {
147+ if (!IS_ENGINEERING_BOOT_MODE ()) {
148148 return ;
149149 }
150150
@@ -159,7 +159,7 @@ void SystemClock_Config(void)
159159 /* *Initializes the CPU, AHB and APB busses clocks
160160 */
161161 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI | RCC_OSCILLATORTYPE_HSE
162- | RCC_OSCILLATORTYPE_LSE;
162+ | RCC_OSCILLATORTYPE_LSE;
163163 RCC_OscInitStruct.HSEState = RCC_HSE_ON;
164164 RCC_OscInitStruct.LSEState = RCC_LSE_ON;
165165 RCC_OscInitStruct.HSIState = RCC_HSI_ON;
0 commit comments