api-hal-os.h 191 B

1234567891011121314151617
  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 api_hal_os_init();
  10. #ifdef __cplusplus
  11. }
  12. #endif