summaryrefslogtreecommitdiff
path: root/src/transport/swd.h
diff options
context:
space:
mode:
authorTomek CEDRO <cederom@tlen.pl>2011-10-13 21:59:45 +0200
committerTomek CEDRO <cederom@tlen.pl>2011-10-13 21:59:45 +0200
commitd7415b624fa278f1d8513b94b1011dc831e581bf (patch)
treece5ca7b31f767b1b497c267e8f6e4a904be526e2 /src/transport/swd.h
parent31f98f515598d671bf2ae51f0bc40bbb049195d4 (diff)
downloadopenocd_libswd-d7415b624fa278f1d8513b94b1011dc831e581bf.tar.gz
openocd_libswd-d7415b624fa278f1d8513b94b1011dc831e581bf.tar.bz2
openocd_libswd-d7415b624fa278f1d8513b94b1011dc831e581bf.tar.xz
openocd_libswd-d7415b624fa278f1d8513b94b1011dc831e581bf.zip
SWD: swd tcl commands are now available from CLI and initialized at program startup with other commands.
Diffstat (limited to 'src/transport/swd.h')
-rw-r--r--src/transport/swd.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/transport/swd.h b/src/transport/swd.h
index 437a8a5e..cf737e32 100644
--- a/src/transport/swd.h
+++ b/src/transport/swd.h
@@ -35,12 +35,16 @@
*/
/** \file swd.h SWD Transport Header File for OpenOCD. */
+
+#ifndef OOCD_SWD_H
+#define OOCD_SWD_H
+
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <libswd.h>
-#include <transport/transport.h>
#include <target/arm.h>
#include <target/arm_adi_v5.h>
#include <helper/log.h>
@@ -62,3 +66,4 @@ extern const struct dap_ops oocd_dap_ops_swd;
int swd_register_commands(struct command_context *cmd_ctx);
+#endif