2003-01-13 Marcel Telka <marcel@telka.sk>

* include/state.h: Added new function tap_state_reset().
	* src/tap/state.c (tap_state_reset): Ditto.
	* src/tap/tap.c (tap_reset): Added explicit TAP state reset.


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@312 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 22 years ago
parent 2d63f65d6a
commit 85b397c112

@ -1,3 +1,9 @@
2003-01-13 Marcel Telka <marcel@telka.sk>
* include/state.h: Added new function tap_state_reset().
* src/tap/state.c (tap_state_reset): Ditto.
* src/tap/tap.c (tap_reset): Added explicit TAP state reset.
2003-01-13 Marcel Telka <marcel@telka.sk>
* configure.ac: Changed version number to 0.2.1.

@ -57,6 +57,7 @@
int tap_state( void );
int tap_state_init( void );
int tap_state_done( void );
int tap_state_reset( void );
int tap_state_set_trst( int trst );
int tap_state_get_trst( void );
int tap_state_clock( int tms );

@ -46,6 +46,12 @@ tap_state_done( void )
return state = Unknown_State;
}
int
tap_state_reset( void )
{
return state = Test_Logic_Reset;
}
int
tap_state_set_trst( int new_trst )
{

@ -32,6 +32,8 @@
void
tap_reset( void )
{
tap_state_reset();
tap_clock( 1, 0 );
tap_clock( 1, 0 );
tap_clock( 1, 0 );

Loading…
Cancel
Save