flipperzero-firmware/firmware/targets/f7/furi_hal/furi_hal_os.h

21 lines
249 B
C
Raw Normal View History

#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();
/* Advance OS tick counter
*/
void furi_hal_os_tick();
#ifdef __cplusplus
}
#endif