mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
21 lines
257 B
C
21 lines
257 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Initialize OS helpers
|
|
* Configure and start tick timer
|
|
*/
|
|
void furi_hal_os_init(void);
|
|
|
|
/* Advance OS tick counter
|
|
*/
|
|
void furi_hal_os_tick(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|