Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_HELLO_H
command_registration
hello_command_handlers;
Files
loading...
CodeScopeDevelopment ToolsOpenOCDsrc/hello.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net> * ***************************************************************************//* ... */ #ifndef OPENOCD_HELLO_H #define OPENOCD_HELLO_H struct command_registration; /** * Export the registration for the hello command group, so it can be * embedded in example drivers. *//* ... */ extern const struct command_registration hello_command_handlers[]; /* ... */ #endif /* OPENOCD_HELLO_H */