From 4e2a17629f741d5188c10102a76eaf40f188f6f9 Mon Sep 17 00:00:00 2001 From: Tomek CEDRO Date: Thu, 28 Jul 2011 15:49:42 +0200 Subject: TRANSPORT/SWD: Added missing header swd_libswd_drv_openocd.h. --- src/transport/swd_libswd_drv_openocd.h | 49 ++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/transport/swd_libswd_drv_openocd.h 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 , 2010-2011; + * + */ + +/** \file libswd_drv_openocd.h Driver Bridge between LibSWD and OpenOCD header file. */ + +#include + +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, ...); + -- cgit v1.2.3