2022-06-26 18:06:45 -05:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
|
2012-02-02 09:13:13 -06:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2005 by Dominic Rath *
|
|
|
|
* Dominic.Rath@gmx.de *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2007-2010 Øyvind Harboe *
|
|
|
|
* oyvind.harboe@zylin.com *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2009 SoftPLC Corporation *
|
|
|
|
* http://softplc.com *
|
|
|
|
* dick@softplc.com *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2009 Zachary T Welch *
|
|
|
|
* zw@superlucidity.net *
|
|
|
|
***************************************************************************/
|
|
|
|
|
2015-09-21 14:07:46 -05:00
|
|
|
#ifndef OPENOCD_JTAG_TCL_H
|
|
|
|
#define OPENOCD_JTAG_TCL_H
|
2011-12-15 04:36:33 -06:00
|
|
|
|
|
|
|
int jim_jtag_configure(Jim_Interp *interp, int argc,
|
2012-02-02 09:13:13 -06:00
|
|
|
Jim_Obj * const *argv);
|
2011-12-15 04:36:33 -06:00
|
|
|
int jim_jtag_tap_enabler(Jim_Interp *interp, int argc,
|
2012-02-02 09:13:13 -06:00
|
|
|
Jim_Obj * const *argv);
|
2011-12-15 04:36:33 -06:00
|
|
|
|
2015-09-21 14:07:46 -05:00
|
|
|
#endif /* OPENOCD_JTAG_TCL_H */
|