os_type.h 333 B

12345678910111213141516171819
  1. /*
  2. * copyright (c) Espressif System 2010
  3. *
  4. * mapping to ETS structures
  5. *
  6. */
  7. #ifndef _OS_TYPES_H_
  8. #define _OS_TYPES_H_
  9. #include "ets_sys.h"
  10. #define os_signal_t ETSSignal
  11. #define os_param_t ETSParam
  12. #define os_event_t ETSEvent
  13. #define os_task_t ETSTask
  14. #define os_timer_t ETSTimer
  15. #define os_timer_func_t ETSTimerFunc
  16. #endif