Merge pull request #390 from rikvdh/feature/lpc_with_iap_down

Move the LPC17xx probe function down
This commit is contained in:
Gareth McMullin 2018-09-06 08:15:54 +12:00 committed by GitHub
commit db544e9b67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,6 @@ bool cortexm_probe(ADIv5_AP_t *ap)
PROBE(stm32l4_probe);
PROBE(lpc11xx_probe);
PROBE(lpc15xx_probe);
PROBE(lpc17xx_probe);
PROBE(lpc43xx_probe);
PROBE(sam3x_probe);
PROBE(sam4l_probe);
@ -345,6 +344,7 @@ bool cortexm_probe(ADIv5_AP_t *ap)
PROBE(kinetis_probe);
PROBE(efm32_probe);
PROBE(msp432_probe);
PROBE(lpc17xx_probe);
#undef PROBE
return true;