From: Zachary T Welch Date: Thu, 26 Nov 2009 00:57:12 +0000 (-0800) Subject: add more stub handlers to testee target X-Git-Tag: v0.4.0-rc1~276 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=cdfdcb28549174a2346fc91ec95a1c620c568cad add more stub handlers to testee target Prevent everything from crashing when exercising various commands. --- diff --git a/src/target/testee.c b/src/target/testee.c index ca3d56e324..f858232242 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, };