File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 16
16
// USB is always used internally so skip the pin objects for it.
17
17
#define IGNORE_PIN_PA24 1
18
18
#define IGNORE_PIN_PA25 1
19
+ // USD ID
20
+ #define IGNORE_PIN_PA18 1
21
+
22
+ // Hooked to the external crystal
23
+ #define IGNORE_PIN_PA00 1
24
+ #define IGNORE_PIN_PA01 1
25
+
26
+ // SWD only
27
+ #define IGNORE_PIN_PA30 1
28
+ #define IGNORE_PIN_PA31 1
29
+
30
+ // Not connected
31
+ #define IGNORE_PIN_PA28 1
Original file line number Diff line number Diff line change 16
16
// USB is always used internally so skip the pin objects for it.
17
17
#define IGNORE_PIN_PA24 1
18
18
#define IGNORE_PIN_PA25 1
19
+
20
+ // Not connected
21
+ #define IGNORE_PIN_PA00 1
22
+ #define IGNORE_PIN_PA01 1
23
+
24
+ // SWD only
25
+ #define IGNORE_PIN_PA30 1
26
+ #define IGNORE_PIN_PA31 1
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ CFLAGS += -DCIRCUITPY_FREQUENCYIO=$(CIRCUITPY_FREQUENCYIO)
190
190
CIRCUITPY_GAMEPADSHIFT ?= 0
191
191
CFLAGS += -DCIRCUITPY_GAMEPADSHIFT=$(CIRCUITPY_GAMEPADSHIFT )
192
192
193
- CIRCUITPY_GETPASS ?= 1
193
+ CIRCUITPY_GETPASS ?= $( CIRCUITPY_FULL_BUILD )
194
194
CFLAGS += -DCIRCUITPY_GETPASS=$(CIRCUITPY_GETPASS )
195
195
196
196
CIRCUITPY_GNSS ?= 0
@@ -336,7 +336,7 @@ CFLAGS += -DCIRCUITPY_TOUCHIO_USE_NATIVE=$(CIRCUITPY_TOUCHIO_USE_NATIVE)
336
336
CIRCUITPY_TOUCHIO ?= 1
337
337
CFLAGS += -DCIRCUITPY_TOUCHIO=$(CIRCUITPY_TOUCHIO )
338
338
339
- CIRCUITPY_TRACEBACK ?= 1
339
+ CIRCUITPY_TRACEBACK ?= $( CIRCUITPY_FULL_BUILD )
340
340
CFLAGS += -DCIRCUITPY_TRACEBACK=$(CIRCUITPY_TRACEBACK )
341
341
342
342
# For debugging.
You can’t perform that action at this time.
0 commit comments