The function is used for commands: - jtag configure - jtag cget While there, add the missing .usage field. Change-Id: I97ddc4898259ddb7fd2d057a997f33a6f4b0e2a8 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8058 Tested-by: jenkins
27 lines
1.3 KiB
C
27 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/***************************************************************************
|
|
* 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 *
|
|
***************************************************************************/
|
|
|
|
#ifndef OPENOCD_JTAG_TCL_H
|
|
#define OPENOCD_JTAG_TCL_H
|
|
|
|
#include <helper/command.h>
|
|
|
|
__COMMAND_HANDLER(handle_jtag_configure);
|
|
__COMMAND_HANDLER(handle_jtag_tap_enabler);
|
|
|
|
#endif /* OPENOCD_JTAG_TCL_H */
|