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 {
101
101
ADC_TEMP = 0xF0 ,
102
102
ADC_VREF = 0xF1 ,
103
103
104
+ // Not connected
105
+ NC = (int )0xFFFFFFFF ,
106
+
104
107
// Arduino connector namings
105
108
A0 = PA_0 ,
106
- A1 = PA_0 , // Alias
109
+ A1 = NC , // PA_0 if SB7 fitted
107
110
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
111
114
D0 = PA_3 ,
112
115
D1 = PA_2 ,
113
116
D2 = PA_10 ,
@@ -174,9 +177,6 @@ typedef enum {
174
177
SYS_VREF_OUT_PB1 = PB_1 ,
175
178
SYS_WKUP1 = PA_0 ,
176
179
SYS_WKUP2 = PC_13 ,
177
-
178
- // Not connected
179
- NC = (int )0xFFFFFFFF
180
180
} PinName ;
181
181
182
182
#ifdef __cplusplus
You can’t perform that action at this time.
0 commit comments