ESP8266 ILI9341 display support code with printf sources, wire-frame viewer and custom fonts  1.0
ESP8266ILI9341DisplayProject
user_task.h
Go to the documentation of this file.
1 #ifndef _USER_TASK_H_
2 #define _USER_TASK_H_
3 
4 /* user_task.c */
5 int atexit ( void (*func )());
6 void abort ( void );
7 void esp_yield ( void );
8 void esp_schedule ( void );
9 //void __yield ( void );
10 void yield ( void );
11 void loop_wrapper ( void );
12 void init_done ( void );
13 void user_init ( void );
14 
15 #endif /* _USER_TASK_H_ */
void loop_wrapper(void)
Definition: user_task.c:113
void esp_yield(void)
Definition: user_task.c:67
int atexit(void(*func)())
Definition: user_task.c:43
void abort(void)
Definition: user_task.c:57
void esp_schedule(void)
Definition: user_task.c:79
void yield(void)
Definition: user_task.c:86
void init_done(void)
Definition: user_task.c:149
void user_init(void)
Definition: user_task.c:160