X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Ftestee.c;h=5b6ccedd85906e1bd436c73a5fc97c6fdcee2c46;hb=bda2d7371874569cd5232580a3602dd56083a304;hp=f8582322422837d5174eedd778f4c594901efc73;hpb=cdfdcb28549174a2346fc91ec95a1c620c568cad;p=openocd.git diff --git a/src/target/testee.c b/src/target/testee.c index f858232242..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 "log.h" -#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 = {