Switch on the lpc546xx target

Enable the lpc546xx target. Tested on the LPCXpresso54628 dev board,
able to flash and debug.
This commit is contained in:
Noah Pendleton 2020-11-24 15:18:21 -05:00 committed by UweBonnes
parent e9c02296f2
commit 35bcb4f7c6
2 changed files with 2 additions and 1 deletions

View File

@ -441,6 +441,7 @@ bool cortexm_probe(ADIv5_AP_t *ap)
}
else if (ap->ap_partno == 0x4c4) { /* Cortex-M4 ROM */
PROBE(lpc43xx_probe);
PROBE(lpc546xx_probe);
PROBE(kinetis_probe); /* Older K-series */
}
/* Info on PIDR of these parts wanted! */

View File

@ -140,7 +140,7 @@ bool lpc546xx_probe(target *t)
target_add_commands(t, lpc546xx_cmd_list, "Lpc546xx");
t->target_options |= CORTEXM_TOPT_INHIBIT_SRST;
return false;
return true;
}
/* Reset all major systems _except_ debug */