ESP8266
gdbstub-entry.h
1 #ifndef GDBSTUB_ENTRY_H
2 #define GDBSTUB_ENTRY_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 void gdbstub_init_debug_entry();
9 void gdbstub_do_break();
10 void gdbstub_icount_ena_single_step();
11 void gdbstub_save_extra_sfrs_for_exception();
12 void gdbstub_uart_entry();
13 
14 int gdbstub_set_hw_breakpoint(int addr, int len);
15 int gdbstub_set_hw_watchpoint(int addr, int len, int type);
16 int gdbstub_del_hw_breakpoint(int addr);
17 int gdbstub_del_hw_watchpoint(int addr);
18 
19 extern void* gdbstub_do_break_breakpoint_addr;
20 
21 #ifdef __cplusplus
22 {
23 #endif
24 
25 #endif