jtag: call toggleClk instead of playing with TMS
This commit is contained in:
parent
2cadd21f02
commit
ace902cb98
|
|
@ -183,17 +183,11 @@ int Jtag::read_write(unsigned char *tdi, unsigned char *tdo, int len, char last)
|
||||||
void Jtag::toggleClk(int nb)
|
void Jtag::toggleClk(int nb)
|
||||||
{
|
{
|
||||||
unsigned char c = (TEST_LOGIC_RESET == _state) ? 1 : 0;
|
unsigned char c = (TEST_LOGIC_RESET == _state) ? 1 : 0;
|
||||||
#if 0
|
|
||||||
flushTMS(true);
|
flushTMS(true);
|
||||||
if (_jtag->toggleClk(c, 0, nb) >= 0)
|
if (_jtag->toggleClk(c, 0, nb) >= 0)
|
||||||
return;
|
return;
|
||||||
throw std::exception();
|
throw std::exception();
|
||||||
return;
|
return;
|
||||||
#else
|
|
||||||
for (int i = 0; i < nb; i++)
|
|
||||||
setTMS(c);
|
|
||||||
flushTMS(true);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int Jtag::shiftDR(unsigned char *tdi, unsigned char *tdo, int drlen, int end_state)
|
int Jtag::shiftDR(unsigned char *tdi, unsigned char *tdo, int drlen, int end_state)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue