add more stub handlers to testee target

Prevent everything from crashing when exercising various commands.
__archive__
Zachary T Welch 2009-11-25 16:57:12 -08:00
parent 070259cadb
commit cdfdcb2854
1 changed files with 22 additions and 2 deletions

View File

@ -40,9 +40,29 @@ static int testee_init(struct command_context *cmd_ctx, struct target *target)
{
return ERROR_OK;
}
static int testee_poll(struct target *target)
{
return ERROR_OK;
}
static int testee_halt(struct target *target)
{
return ERROR_OK;
}
static int testee_reset_assert(struct target *target)
{
return ERROR_OK;
}
static int testee_reset_deassert(struct target *target)
{
return ERROR_OK;
}
struct target_type testee_target = {
.name = "testee",
.init_target = &testee_init,
.commands = testee_command_handlers,
.init_target = &testee_init,
.poll = &testee_poll,
.halt = &testee_halt,
.assert_reset = &testee_reset_assert,
.deassert_reset = &testee_reset_deassert,
};