mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
20 lines
333 B
C
20 lines
333 B
C
/*
|
|
* copyright (c) Espressif System 2010
|
|
*
|
|
* mapping to ETS structures
|
|
*
|
|
*/
|
|
#ifndef _OS_TYPES_H_
|
|
#define _OS_TYPES_H_
|
|
|
|
#include "ets_sys.h"
|
|
|
|
#define os_signal_t ETSSignal
|
|
#define os_param_t ETSParam
|
|
#define os_event_t ETSEvent
|
|
#define os_task_t ETSTask
|
|
#define os_timer_t ETSTimer
|
|
#define os_timer_func_t ETSTimerFunc
|
|
|
|
#endif
|