X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Ftestee.c;h=5b6ccedd85906e1bd436c73a5fc97c6fdcee2c46;hb=f7836bbc75586666d639edd1cf39a871c434d980;hp=45273887b81852b42f425e3fae67de6ba80c6c8c;hpb=c79cca04bed78839a18e73f3996805eb8001a812;p=openocd.git diff --git a/src/target/testee.c b/src/target/testee.c index 45273887b8..5b6ccedd85 100644 --- a/src/target/testee.c +++ b/src/target/testee.c @@ -12,18 +12,18 @@ * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * along with this program. If not, see . * ***************************************************************************/ #ifdef HAVE_CONFIG_H #include "config.h" #endif + +#include + #include "target.h" #include "target_type.h" -#include -#include "../hello.h" +#include "hello.h" static const struct command_registration testee_command_handlers[] = { { @@ -42,18 +42,23 @@ static int testee_init(struct command_context *cmd_ctx, struct target *target) } static int testee_poll(struct target *target) { + if ((target->state == TARGET_RUNNING) || (target->state == TARGET_DEBUG_RUNNING)) + target->state = TARGET_HALTED; return ERROR_OK; } static int testee_halt(struct target *target) { + target->state = TARGET_HALTED; return ERROR_OK; } static int testee_reset_assert(struct target *target) { + target->state = TARGET_RESET; return ERROR_OK; } static int testee_reset_deassert(struct target *target) { + target->state = TARGET_RUNNING; return ERROR_OK; } struct target_type testee_target = {