jlink/swd: swd frequency is fixed, not need to set.

This commit is contained in:
Uwe Bonnes 2020-11-29 15:35:08 +01:00 committed by UweBonnes
parent f45c56af83
commit 8903026c14

View File

@ -113,10 +113,7 @@ static int swdptap_init(bmp_info_t *info)
cmd[1] = SELECT_IF_SWD; cmd[1] = SELECT_IF_SWD;
send_recv(info->usb_link, cmd, 2, res, sizeof(res)); send_recv(info->usb_link, cmd, 2, res, sizeof(res));
platform_delay(10); platform_delay(10);
/* Set speed 256 kHz*/ /* SWD speed is fixed. Do not set it here*/
unsigned int speed = 2000;
uint8_t jtag_speed[3] = {5, speed & 0xff, speed >> 8};
send_recv(info->usb_link, jtag_speed, 3, NULL, 0);
return 0; return 0;
} }