adiv5_swdp_scan: If SWD scan fails, try a JTAG scan.
This commit is contained in:
parent
5c8e277663
commit
3df692ecb2
|
@ -375,7 +375,7 @@ int cl_execute(BMP_CL_OPTIONS_t *opt)
|
|||
} else {
|
||||
num_targets = platform_adiv5_swdp_scan(opt->opt_targetid);
|
||||
if (!num_targets) {
|
||||
DEBUG_INFO("Scan SWD failed, trying JTAG!\n");
|
||||
DEBUG_WARN("Scan SWD failed, trying JTAG!\n");
|
||||
num_targets = platform_jtag_scan(NULL);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -134,7 +134,7 @@ int adiv5_swdp_scan(uint32_t targetid)
|
|||
}
|
||||
if (e2.type) {
|
||||
DEBUG_WARN("No usable DP found\n");
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
if ((idcode & ADIV5_DP_VERSION_MASK) == ADIV5_DPv2) {
|
||||
|
|
Loading…
Reference in New Issue