File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L072xZ/TARGET_DISCO_L072CZ_LRWAN1 Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -101,13 +101,16 @@ typedef enum {
101101 ADC_TEMP = 0xF0 ,
102102 ADC_VREF = 0xF1 ,
103103
104+ // Not connected
105+ NC = (int )0xFFFFFFFF ,
106+
104107 // Arduino connector namings
105108 A0 = PA_0 ,
106- A1 = PA_0 , // Alias
109+ A1 = NC , // PA_0 if SB7 fitted
107110 A2 = PA_4 ,
108- A3 = PA_4 , // Alias
109- A4 = PB_9 , // SB11 must be closed
110- A5 = PB_8 , // SB12 must be closed
111+ A3 = NC , // PA_4 if SB7 fitted
112+ A4 = NC , // PB_9 if SB11 closed
113+ A5 = NC , // PB_8 if SB12 closed
111114 D0 = PA_3 ,
112115 D1 = PA_2 ,
113116 D2 = PA_10 ,
@@ -174,9 +177,6 @@ typedef enum {
174177 SYS_VREF_OUT_PB1 = PB_1 ,
175178 SYS_WKUP1 = PA_0 ,
176179 SYS_WKUP2 = PC_13 ,
177-
178- // Not connected
179- NC = (int )0xFFFFFFFF
180180} PinName ;
181181
182182#ifdef __cplusplus
You can’t perform that action at this time.
0 commit comments