furi_hal_os.h 249 B

1234567891011121314151617181920
  1. #pragma once
  2. #include <stdint.h>
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /* Initialize OS helpers
  7. * Configure and start tick timer
  8. */
  9. void furi_hal_os_init();
  10. /* Advance OS tick counter
  11. */
  12. void furi_hal_os_tick();
  13. #ifdef __cplusplus
  14. }
  15. #endif