53 lines
1015 B
C
53 lines
1015 B
C
#ifndef __MAIN_H__
|
|
#define __MAIN_H__
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "freertos/semphr.h"
|
|
#include "esp_timer.h"
|
|
#include "esp_err.h"
|
|
#include "esp_log.h"
|
|
#include "esp_lcd_panel_io.h"
|
|
#include "esp_lcd_panel_vendor.h"
|
|
#include "esp_lcd_panel_ops.h"
|
|
#include "driver/gpio.h"
|
|
#include "driver/ledc.h"
|
|
#include "lvgl.h"
|
|
|
|
|
|
#include <string.h>
|
|
#include "wifi_station.h"
|
|
#include "ssid_manager.h"
|
|
#include "dns_server.h"
|
|
#include "wifi_configuration_ap.h"
|
|
|
|
#include "nvs_flash.h"
|
|
|
|
/* Include UI initialization header file */
|
|
#include "FluxDisplayPort.h"
|
|
|
|
/* Perform UI decoration */
|
|
#include "ui.h"
|
|
|
|
/* Lithium battery detection task runs in real time */
|
|
#include "FluxPower.h"
|
|
|
|
/* Key event starts to respond */
|
|
#include "FluxButton.h"
|
|
|
|
/* Serial communication task runs in real time */
|
|
#include "FluxUart.h"
|
|
|
|
/* SD card function initialization */
|
|
#include "FluxSD.h"
|
|
|
|
#include "FluxWifi.h"
|
|
|
|
/* Include key control header file */
|
|
#include "FluxButton.h"
|
|
|
|
|
|
#endif |