mirror of
https://github.com/HEYAHONG/ESP8266ModRTOSDemo.git
synced 2025-10-18 00:02:22 +08:00
24 lines
533 B
C
24 lines
533 B
C
#ifndef INIT_H_INCLUDED
|
|
#define INIT_H_INCLUDED
|
|
#include "esp_wifi.h"
|
|
#include "esp_system.h"
|
|
#include "nvs_flash.h"
|
|
#include "esp_event.h"
|
|
#include "esp_netif.h"
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "freertos/semphr.h"
|
|
#include "freertos/queue.h"
|
|
#include "lwip/sockets.h"
|
|
#include "lwip/dns.h"
|
|
#include "lwip/netdb.h"
|
|
#include "esp_log.h"
|
|
#include "mqtt_client.h"
|
|
#include "esp_err.h"
|
|
#include "esp_log.h"
|
|
#include "esp_spiffs.h"
|
|
|
|
void system_init();
|
|
|
|
#endif // INIT_H_INCLUDED
|