2021-12-09 10:48:50 +01:00
|
|
|
#!/bin/bash
|
2021-12-09 21:00:22 +01:00
|
|
|
# Start the JLinkGDBServer while also specifying the JLinkScript file. The JLinkScript is necessary
|
|
|
|
# to disable ROM protection to allow flashing
|
2021-12-09 10:48:50 +01:00
|
|
|
JLinkGDBServer -select USB -device Cortex-M4 -endian little -if SWD -speed 2000 \
|
2021-12-09 21:00:22 +01:00
|
|
|
-LocalhostOnly -vd -jlinkscriptfile ./jlink/JLinkSettings.JLinkScript
|