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