mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
a304e9c3fa
This reverts commit addf909287
.
26 lines
378 B
C
26 lines
378 B
C
/**
|
|
* @file furi_hal_debug.h
|
|
* Debug HAL API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Enable MCU debug */
|
|
void furi_hal_debug_enable();
|
|
|
|
/** Disable MCU debug */
|
|
void furi_hal_debug_disable();
|
|
|
|
/** Check if GDB debug session is active */
|
|
bool furi_hal_debug_is_gdb_session_active();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|