mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
04e93b2433
* Initial version of gdbstub support * Add DEBUG argument to Makefile to add more debug data and turn off -Os * Add the output redirection handling * Added documentation * Cleaned up the english a bit * Make gdboutput actually trap all the output * Review comments
16 lines
177 B
C
16 lines
177 B
C
#ifndef GDBSTUB_H
|
|
#define GDBSTUB_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void gdbstub_init();
|
|
void gdbstub_redirect_output(int enable);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|