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

21 lines
257 B
C
Raw Normal View History

#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