Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_JTAG_TCL_H
#include <helper/command.h>
handle_jtag_configure(struct command_invocation *);
handle_jtag_tap_enabler(struct command_invocation *);
Files
loading...
SourceVuDevelopment ToolsOpenOCDsrc/jtag/tcl.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* 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 */
Details
Show:
from
Types: Columns:
Click anywhere in the source to view detailed information here...