summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTomek CEDRO <cederom@tlen.pl>2011-07-28 15:49:42 +0200
committerTomek CEDRO <cederom@tlen.pl>2011-07-28 15:49:42 +0200
commit4e2a17629f741d5188c10102a76eaf40f188f6f9 (patch)
tree83071ed477589d8dee78d6bd9fcffe3bad540fa9 /src
parentc8df7f31eaf1bf9ea9863a9371e0130948a122ea (diff)
downloadopenocd_libswd-4e2a17629f741d5188c10102a76eaf40f188f6f9.tar.gz
openocd_libswd-4e2a17629f741d5188c10102a76eaf40f188f6f9.tar.bz2
openocd_libswd-4e2a17629f741d5188c10102a76eaf40f188f6f9.tar.xz
openocd_libswd-4e2a17629f741d5188c10102a76eaf40f188f6f9.zip
TRANSPORT/SWD: Added missing header swd_libswd_drv_openocd.h.
Diffstat (limited to 'src')
-rw-r--r--src/transport/swd_libswd_drv_openocd.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/transport/swd_libswd_drv_openocd.h b/src/transport/swd_libswd_drv_openocd.h
new file mode 100644
index 00000000..f234ac9b
--- /dev/null
+++ b/src/transport/swd_libswd_drv_openocd.h
@@ -0,0 +1,49 @@
+/*
+ * $Id$
+ *
+ * Driver Bridge between LibSWD and OpenOCD header file.
+ *
+ * Copyright (C) 2010-2011 Tomasz Boleslaw CEDRO
+ * cederom@tlen.pl, http://www.tomek.cedro.info
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * 1. Redistributions of source code must retain the above copyright notice,
+ * this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following disclaimer in the documentation
+ * and/or other materials provided with the distribution.
+ * 3. Neither the name of the Tomasz Boleslaw CEDRO nor the names of its
+ * contributors may be used to endorse or promote products derived from this
+ * software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
+ * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.*
+ *
+ * Written by Tomasz Boleslaw CEDRO <cederom@tlen.pl>, 2010-2011;
+ *
+ */
+
+/** \file libswd_drv_openocd.h Driver Bridge between LibSWD and OpenOCD header file. */
+
+#include <libswd.h>
+
+int swd_drv_mosi_8(swd_ctx_t *swdctx, swd_cmd_t *cmd, char *data, int bits, int nLSBfirst);
+int swd_drv_mosi_32(swd_ctx_t *swdctx, swd_cmd_t *cmd, int *data, int bits, int nLSBfirst);
+int swd_drv_miso_8(swd_ctx_t *swdctx, swd_cmd_t *cmd, char *data, int bits, int nLSBfirst);
+int swd_drv_miso_32(swd_ctx_t *swdctx, swd_cmd_t *cmd, int *data, int bits, int nLSBfirst);
+int swd_drv_mosi_trn(swd_ctx_t *swdctx, int bits);
+int swd_drv_miso_trn(swd_ctx_t *swdctx, int bits);
+int swd_log_level_inherit(swd_ctx_t *swdctx, int loglevel);
+int swd_log(swd_ctx_t *swdctx, swd_loglevel_t loglevel, char *msg, ...);
+