cortexm: Added additional debug information for part probing
This commit is contained in:
parent
b5b2d4dc95
commit
680a009690
|
@ -378,8 +378,25 @@ bool cortexm_probe(ADIv5_AP_t *ap)
|
||||||
} else {
|
} else {
|
||||||
target_check_error(t);
|
target_check_error(t);
|
||||||
}
|
}
|
||||||
|
#if PC_HOSTED
|
||||||
|
#define STRINGIFY(x) #x
|
||||||
#define PROBE(x) \
|
#define PROBE(x) \
|
||||||
do { if ((x)(t)) {return true;} else target_check_error(t); } while (0)
|
do { \
|
||||||
|
DEBUG_INFO("Calling " STRINGIFY(x) "\n"); \
|
||||||
|
if ((x)(t)) \
|
||||||
|
return true; \
|
||||||
|
else \
|
||||||
|
target_check_error(t); \
|
||||||
|
} while (0)
|
||||||
|
#else
|
||||||
|
#define PROBE(x) \
|
||||||
|
do { \
|
||||||
|
if ((x)(t)) \
|
||||||
|
return true; \
|
||||||
|
else \
|
||||||
|
target_check_error(t); \
|
||||||
|
} while (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
switch (ap->ap_designer) {
|
switch (ap->ap_designer) {
|
||||||
case AP_DESIGNER_FREESCALE:
|
case AP_DESIGNER_FREESCALE:
|
||||||
|
|
Loading…
Reference in New Issue