mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
24 lines
288 B
C
24 lines
288 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();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|