mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
16 lines
209 B
C
16 lines
209 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/** Early initialization */
|
||
|
void furi_hal_dma_init_early();
|
||
|
|
||
|
/** Early de-initialization */
|
||
|
void furi_hal_dma_deinit_early();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|