py32f0-template/Misc/jlink-script
2023-01-22 01:58:23 +08:00

15 lines
470 B
Plaintext

int InitEMU(void) {
JLINK_SYS_Report("--InitEMU()--");
// Silence confirm updating firmware dialog boxes that appear when uploading
JLINK_ExecCommand("SuppressInfoUpdateFW");
JLINK_ExecCommand("DisableAutoUpdateFW");
// Uncomment to hide flash windows
//JLINK_ExecCommand("DisableInfoWinFlashDL");
//JLINK_ExecCommand("DisableInfoWinFlashBPs");
return 0;
}
int ConfigTargetSettings(void) {
JLINK_SYS_Report("--ConfigTargetSettings()--");
return 0;
}