1 #ifndef __MAIN_H__ 2 #define __MAIN_H__ 3 4 #include <pthread.h> 5 #include <signal.h> 6 #include <stdbool.h> 7 #include <stdint.h> 8 #include <stdio.h> 9 #include <stdlib.h> 10 #include <string.h> 11 #include <stdarg.h> 12 #include <unistd.h> 13 14 #include <lvgl/lvgl.h> 15 16 #include "lv_port_file.h" 17 #include "lv_port_indev.h" 18 19 extern lv_ft_info_t ttf_main_s; 20 extern lv_ft_info_t ttf_main_m; 21 extern lv_ft_info_t ttf_main_l; 22 23 extern lv_style_t style_txt_s; 24 extern lv_style_t style_txt_m; 25 extern lv_style_t style_txt_l; 26 27 int app_disp_rotation(void); 28 29 #endif 30 31