1
2
3
4
5
6
7
12
13
14
15
16
17
18
19
20
21
#ifndef OPENOCD_TARGET_ARM_TPIU_SWO_H
#define OPENOCD_TARGET_ARM_TPIU_SWO_H
enum tpiu_pin_protocol {
TPIU_PIN_PROTOCOL_SYNC = 0,
TPIU_PIN_PROTOCOL_ASYNC_MANCHESTER = 1,
TPIU_PIN_PROTOCOL_ASYNC_UART = 2,
...};
extern const struct command_registration arm_tpiu_deprecated_command_handlers[];
int arm_tpiu_swo_register_commands(struct command_context *cmd_ctx);
int arm_tpiu_swo_cleanup_all(void);
/* ... */
#endif