11 lines
402 B
Plaintext
11 lines
402 B
Plaintext
|
|
/*********************************************************************
|
||
|
|
* J-Link script for IAR C-SPY / AT32F403A
|
||
|
|
* Hides unknown-device selection dialog (DEV_ID 0x241).
|
||
|
|
* NOTE: This must be JLinkScript syntax, NOT Commander commands.
|
||
|
|
**********************************************************************/
|
||
|
|
|
||
|
|
int ConfigTargetSettings(void) {
|
||
|
|
JLINK_ExecCommand("HideDeviceSelection = 1");
|
||
|
|
return 0;
|
||
|
|
}
|