2021-06-07 22:54:09 +03:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
2019-06-14 00:43:49 +08:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-04-15 10:52:09 +03:00
|
|
|
void esp_gdbstub_init(void);
|
2021-04-16 13:59:37 +03:00
|
|
|
void esp_gdbstub_panic_handler(void *frame);
|
2021-06-07 22:54:09 +03:00
|
|
|
void update_breakpoints(void);
|
2019-06-14 00:43:49 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|