2018-07-17 15:15:58 +02:00
|
|
|
#ifndef _MAIN_H
|
|
|
|
#define _MAIN_H
|
2018-04-05 08:47:17 +02:00
|
|
|
|
2019-09-07 19:52:25 +02:00
|
|
|
#include <esp_spi_flash.h> // needed for reading ESP32 chip attributes
|
|
|
|
#include <esp_event_loop.h> // needed for Wifi event handler
|
2018-09-22 21:26:11 +02:00
|
|
|
#include <esp32-hal-timer.h> // needed for timers
|
2021-03-31 09:45:32 +02:00
|
|
|
#include <esp_coexist.h> // needed for coex version display
|
2021-04-13 16:37:17 +02:00
|
|
|
#include <esp_wifi.h> // needed for wifi init / deinit
|
2018-09-22 21:26:11 +02:00
|
|
|
|
2018-09-15 21:10:11 +02:00
|
|
|
#include "globals.h"
|
2019-10-20 20:05:13 +02:00
|
|
|
#include "reset.h"
|
2019-10-16 21:14:34 +02:00
|
|
|
#include "i2c.h"
|
2018-06-09 22:28:20 +02:00
|
|
|
#include "configmanager.h"
|
2018-07-31 00:00:24 +02:00
|
|
|
#include "cyclic.h"
|
|
|
|
#include "beacon_array.h"
|
2018-09-22 21:26:11 +02:00
|
|
|
#include "ota.h"
|
2018-10-04 22:08:54 +02:00
|
|
|
#include "irqhandler.h"
|
2018-11-03 20:44:54 +01:00
|
|
|
#include "spislave.h"
|
2020-03-29 18:08:52 +02:00
|
|
|
#include "sensor.h"
|
2018-11-03 20:44:54 +01:00
|
|
|
#include "lorawan.h"
|
2019-02-24 01:44:55 +01:00
|
|
|
#include "timekeeper.h"
|
2020-09-01 11:34:13 +02:00
|
|
|
#include "corona.h"
|
2021-03-04 21:22:49 +01:00
|
|
|
#include "boot.h"
|
2021-03-31 19:02:01 +02:00
|
|
|
#include "libpax_helpers.h"
|
2021-03-31 21:43:51 +02:00
|
|
|
#include "power.h"
|
2021-04-26 10:43:02 +02:00
|
|
|
#include "antenna.h"
|
2020-03-29 18:08:52 +02:00
|
|
|
|
2020-10-30 12:24:16 +01:00
|
|
|
#endif
|