hal_osal.h 422 B

12345678910111213141516171819202122232425262728
  1. #ifndef SUNXI_HAL_OSAL_H
  2. #define SUNXI_HAL_OSAL_H
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. #include <stdio.h>
  8. #include <hal_atomic.h>
  9. #include <hal_cache.h>
  10. #include <hal_interrupt.h>
  11. #include <hal_mem.h>
  12. #include <hal_mutex.h>
  13. #include <hal_queue.h>
  14. #include <hal_sem.h>
  15. #include <hal_thread.h>
  16. #include <hal_timer.h>
  17. #include <hal_log.h>
  18. #include <hal_cmd.h>
  19. #include <hal_debug.h>
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif