mirror of
https://github.com/IcedRooibos/py32f0-template.git
synced 2025-10-28 00:12:05 -07:00
15 lines
470 B
Plaintext
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;
|
|
}
|