1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/esp8266/vendor/esp-gdbstub/gdbstub-entry.h
2019-11-08 10:32:18 +01:00

25 lines
550 B
C

#ifndef GDBSTUB_ENTRY_H
#define GDBSTUB_ENTRY_H
#ifdef __cplusplus
extern "C" {
#endif
void gdbstub_init_debug_entry(void);
void gdbstub_icount_ena_single_step(void);
void gdbstub_save_extra_sfrs_for_exception(void);
void gdbstub_uart_entry(void);
int gdbstub_set_hw_breakpoint(int addr, int len);
int gdbstub_set_hw_watchpoint(int addr, int len, int type);
int gdbstub_del_hw_breakpoint(int addr);
int gdbstub_del_hw_watchpoint(int addr);
extern void* gdbstub_do_break_breakpoint_addr;
#ifdef __cplusplus
}
#endif
#endif /* GDBSTUB_ENTRY_H */