forked from auracaster/openocd
arm-jtag-ew: Provide armjtagew_speed_div() in order to fix interactive use of `adapter_khz'
This commit is contained in:
committed by
Andreas Fritiofson
parent
8b61ed2e95
commit
07bf5f443a
@@ -218,6 +218,14 @@ static int armjtagew_khz(int khz, int *jtag_speed)
|
|||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int armjtagew_speed_div(int speed, int* khz)
|
||||||
|
{
|
||||||
|
*khz = speed;
|
||||||
|
|
||||||
|
return ERROR_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static int armjtagew_init(void)
|
static int armjtagew_init(void)
|
||||||
{
|
{
|
||||||
int check_cnt;
|
int check_cnt;
|
||||||
@@ -518,6 +526,7 @@ struct jtag_interface armjtagew_interface = {
|
|||||||
|
|
||||||
.execute_queue = armjtagew_execute_queue,
|
.execute_queue = armjtagew_execute_queue,
|
||||||
.speed = armjtagew_speed,
|
.speed = armjtagew_speed,
|
||||||
|
.speed_div = armjtagew_speed_div,
|
||||||
.khz = armjtagew_khz,
|
.khz = armjtagew_khz,
|
||||||
.init = armjtagew_init,
|
.init = armjtagew_init,
|
||||||
.quit = armjtagew_quit,
|
.quit = armjtagew_quit,
|
||||||
|
|||||||
Reference in New Issue
Block a user