Flipper Zero Firmware
Loading...
Searching...
No Matches
furi_hal_os.h
1#pragma once
2
3#include <stdint.h>
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9/* Initialize OS helpers
10 * Configure and start tick timer
11 */
12void furi_hal_os_init(void);
13
14/* Advance OS tick counter
15 */
16void furi_hal_os_tick(void);
17
18#ifdef __cplusplus
19}
20#endif