#include "minidriver.h"
#include "interface.h"
-
-
-
struct jtag_interface minidummy_interface =
{
.name = "minidummy",
.srst_asserted = NULL,
};
-
-
-
-
-
int interface_jtag_execute_queue(void)
{
/* synchronously do the operation here */
return ERROR_OK;
}
-
-
-
-
-extern int jtag_check_value(uint8_t *captured, void *priv);
-
int interface_jtag_add_ir_scan(int num_fields, const struct scan_field *fields, tap_state_t state)
{
/* synchronously do the operation here */
}
-
-
-
-
int interface_jtag_add_plain_ir_scan(int num_fields, const struct scan_field *fields, tap_state_t state)
{
/* synchronously do the operation here */
return ERROR_OK;
}
-/*extern jtag_struct command **jtag_get_last_command_p(void);*/
-
int interface_jtag_add_dr_scan(int num_fields, const struct scan_field *fields, tap_state_t state)
{
/* synchronously do the operation here */
return ERROR_OK;
}
-
int interface_jtag_add_tlr()
{
/* synchronously do the operation here */
return ERROR_OK;
}
-
-
int interface_jtag_add_reset(int req_trst, int req_srst)
{
/* synchronously do the operation here */
return ERROR_OK;
}
-
int interface_jtag_add_runtest(int num_cycles, tap_state_t state)
{
/* synchronously do the operation here */
return ERROR_OK;
}
-
-
void embeddedice_write_dcc(struct jtag_tap *tap, int reg_addr, uint8_t *buffer, int little, int count)
{
int i;
buffer += 4;
}
}
-
}
#endif
-extern int jtag_check_value(uint8_t *captured, void *priv);
-
static void gotoEndState(tap_state_t end_state)
{
setCurrentState(end_state);
return ERROR_OK;
}
-/*extern jtag_struct command **jtag_get_last_command_p(void);*/
-
int interface_jtag_add_dr_scan(int num_fields, const struct scan_field *fields, tap_state_t state)
{