From cdfdcb28549174a2346fc91ec95a1c620c568cad Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Wed, 25 Nov 2009 16:57:12 -0800 Subject: add more stub handlers to testee target Prevent everything from crashing when exercising various commands. --- src/target/testee.c | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) (limited to 'src/target/testee.c') diff --git a/src/target/testee.c b/src/target/testee.c index ca3d56e3..f8582322 100644 --- a/src/target/testee.c +++ b/src/target/testee.c @@ -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, }; -- cgit v1.2.3