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