File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,6 @@ Examples:
44
44
45
45
If you aren't sure what boards exist, have a peek in the boards subdirectory of your port.
46
46
47
- Useful make arguments or targets:
48
-
49
- make BOARD=circuitplayground_express clean
50
-
51
47
# Testing
52
48
53
49
If you are working on changes to the core language, you might find it useful to run the test suite.
@@ -70,14 +66,14 @@ A successful run will say something like
70
66
71
67
# Debugging
72
68
73
- The easiest way to debug CircuitPython on hardware is with a JLink device, JLinkGDBServer, and ` gcc-arm-embedded ` .
69
+ The easiest way to debug CircuitPython on hardware is with a JLink device, JLinkGDBServer, and an appropriate GDB .
74
70
Instructions can be found at https://learn.adafruit.com/debugging-the-samd21-with-gdb
75
71
76
- If using JLink, you'll need both the ` JLinkGDBServer ` and ` arm-non -eabi-gdb-py ` running.
72
+ If using JLink, you'll need both the ` JLinkGDBServer ` and ` arm-none -eabi-gdb ` running.
77
73
78
74
Example:
79
75
80
76
JLinkGDBServer -if SWD -device ATSAMD51J19
81
- arm-none-eabi-gdb-py build-metro_m4_express/firmware.elf -iex "target extended-remote :2331"
77
+ arm-none-eabi-gdb build-metro_m4_express/firmware.elf -iex "target extended-remote :2331"
82
78
83
79
You can’t perform that action at this time.
0 commit comments