File tree 1 file changed +4
-4
lines changed
variants/STM32L4xx/L433C(B-C)(T-U)_L443CC(T-U)
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 18
18
* function I can see is to reference a pin in a sketch in something
19
19
* like digitalWrite() and have it index into digitalPin[] to find the
20
20
* actual pin. On the other hand, PIN_A* are numbers offset by PNUM_ANALOG_BASE,
21
- * which serves to say that this IS an analog pin and which tells analogWrite
21
+ * which serves to say that this IS an analog pin and which tells analogWrite
22
22
* to index into the digitalPin[] array to find the actual pin.
23
23
*----------------------------------------------------------------------------*/
24
24
#define PA0 PIN_A0 // A0/D0
88
88
89
89
// Power switch ENABLE and DISCHARGE pins
90
90
#ifndef ENABLE_3V3
91
- #define ENABLE_3V3 PH0
91
+ #define ENABLE_3V3 PH0
92
92
#endif
93
93
#ifndef DISCHARGE_3V3
94
94
#define DISCHARGE_3V3 PH1
95
95
#define DISABLE_DISCHARGING HIGH
96
96
#define ENABLE_DISCHARGING LOW
97
97
#endif
98
98
#ifndef CHARGE_DETECT
99
- #define CHARGE_DETECT PA15
99
+ #define CHARGE_DETECT PA15
100
100
#endif
101
101
102
102
// SPI definitions
103
103
#ifndef PIN_SPI_SS
104
- #define PIN_SPI_SS PB8 // Just default to D5, because we don't have a CS pin
104
+ #define PIN_SPI_SS PB8 // Just default to D5, because we don't have a CS pin
105
105
#endif
106
106
#ifndef PIN_SPI_SS1
107
107
#define PIN_SPI_SS1 PNUM_NOT_DEFINED
You can’t perform that action at this time.
0 commit comments