mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 01:03:22 +00:00
addf909287
Waiting for proper fix
23 lines
288 B
C
23 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
|