mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-26 01:44:17 +03:00
Update GDBStub library with the source of esp-gdbstub
This commit is contained in:
25
libraries/GDBStub/src/internal/gdbstub-entry.h
Normal file
25
libraries/GDBStub/src/internal/gdbstub-entry.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#ifndef GDBSTUB_ENTRY_H
|
||||
#define GDBSTUB_ENTRY_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void gdbstub_init_debug_entry();
|
||||
void gdbstub_do_break();
|
||||
void gdbstub_icount_ena_single_step();
|
||||
void gdbstub_save_extra_sfrs_for_exception();
|
||||
void gdbstub_uart_entry();
|
||||
|
||||
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
|
Reference in New Issue
Block a user