revert function clones_probe
This commit is contained in:
parent
83e3d9c135
commit
e12939582c
|
@ -55,9 +55,6 @@
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define PROBE(x) \
|
|
||||||
do { if ((x)(t)) {return true;} else target_check_error(t); } while (0)
|
|
||||||
|
|
||||||
static const char cortexm_driver_str[] = "ARM Cortex-M";
|
static const char cortexm_driver_str[] = "ARM Cortex-M";
|
||||||
|
|
||||||
static bool cortexm_vector_catch(target *t, int argc, char *argv[]);
|
static bool cortexm_vector_catch(target *t, int argc, char *argv[]);
|
||||||
|
@ -212,17 +209,6 @@ static const char tdesc_cortex_mf[] =
|
||||||
" </feature>"
|
" </feature>"
|
||||||
"</target>";
|
"</target>";
|
||||||
|
|
||||||
/*
|
|
||||||
Probe STM32F103 clones
|
|
||||||
*/
|
|
||||||
static bool stm32f1_clones_probe(target *t)
|
|
||||||
{
|
|
||||||
PROBE(ch32f1_probe);
|
|
||||||
PROBE(stm32f1_probe); /* Care for other STM32F1 clones (?) */
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ADIv5_AP_t *cortexm_ap(target *t)
|
ADIv5_AP_t *cortexm_ap(target *t)
|
||||||
{
|
{
|
||||||
return ((struct cortexm_priv *)t->priv)->ap;
|
return ((struct cortexm_priv *)t->priv)->ap;
|
||||||
|
@ -392,6 +378,8 @@ bool cortexm_probe(ADIv5_AP_t *ap)
|
||||||
} else {
|
} else {
|
||||||
target_check_error(t);
|
target_check_error(t);
|
||||||
}
|
}
|
||||||
|
#define PROBE(x) \
|
||||||
|
do { if ((x)(t)) {return true;} else target_check_error(t); } while (0)
|
||||||
|
|
||||||
switch (ap->ap_designer) {
|
switch (ap->ap_designer) {
|
||||||
case AP_DESIGNER_FREESCALE:
|
case AP_DESIGNER_FREESCALE:
|
||||||
|
@ -454,7 +442,8 @@ bool cortexm_probe(ADIv5_AP_t *ap)
|
||||||
PROBE(rp_probe);
|
PROBE(rp_probe);
|
||||||
PROBE(lpc11xx_probe); /* LPC8 */
|
PROBE(lpc11xx_probe); /* LPC8 */
|
||||||
} else if (ap->ap_partno == 0x4c3) { /* Cortex-M3 ROM */
|
} else if (ap->ap_partno == 0x4c3) { /* Cortex-M3 ROM */
|
||||||
PROBE(stm32f1_clones_probe); /* Care for STM32F1 clones */
|
PROBE(ch32f1_probe);
|
||||||
|
PROBE(stm32f1_probe); /* Care for other STM32F1 clones (?) */
|
||||||
PROBE(lpc15xx_probe); /* Thanks to JojoS for testing */
|
PROBE(lpc15xx_probe); /* Thanks to JojoS for testing */
|
||||||
} else if (ap->ap_partno == 0x471) { /* Cortex-M0 ROM */
|
} else if (ap->ap_partno == 0x471) { /* Cortex-M0 ROM */
|
||||||
PROBE(lpc11xx_probe); /* LPC24C11 */
|
PROBE(lpc11xx_probe); /* LPC24C11 */
|
||||||
|
|
Loading…
Reference in New Issue