esp_gdbstub.h 311 B

12345678910111213141516171819
  1. /*
  2. * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. void esp_gdbstub_init(void);
  11. void esp_gdbstub_panic_handler(void *frame);
  12. void update_breakpoints(void);
  13. #ifdef __cplusplus
  14. }
  15. #endif