2021-05-18 09:23:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Initialize OS helpers
|
|
|
|
* Configure and start tick timer
|
|
|
|
*/
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_os_init();
|
2021-05-18 09:23:14 +00:00
|
|
|
|
2022-04-21 13:15:19 +00:00
|
|
|
/* Advance OS tick counter
|
|
|
|
*/
|
|
|
|
void furi_hal_os_tick();
|
|
|
|
|
2021-05-18 09:23:14 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2022-04-21 13:15:19 +00:00
|
|
|
#endif
|