bmp_remote: Deny high level JTAG for now.

jtag_devs and jtag_dev_count needs to be known on th firmware side
and remote_dp->dev needs to be filled with jtag_dev_t.
This commit is contained in:
Uwe Bonnes 2020-10-09 15:52:09 +02:00
parent 0f5fb6b9a0
commit 6e2a074064
1 changed files with 4 additions and 0 deletions

View File

@ -345,6 +345,10 @@ void remote_adiv5_dp_defaults(ADIv5_DP_t *dp)
"Please update BMP firmware for substantial speed increase!\n");
return;
}
if (dp->dev) {
DEBUG_WARN("Falling back to ll as high level JTAG is not yet possible!\n");
return;
}
dp->low_access = remote_adiv5_low_access;
dp->dp_read = remote_adiv5_dp_read;
dp->ap_write = remote_adiv5_ap_write;