summaryrefslogtreecommitdiff
path: root/fw/esp32/main/app_main.c
blob: 1ae7f7c407d01cff66d70bb1653d3077d7966a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>

#include <driver/gpio.h>
#include <esp_event.h>
#include <esp_netif.h>
#include <esp_err.h>
#include <esp_log.h>

#include "i2c.h"
#include "cell.h"
#include "_net.h"
#include "wifi.h"
#include "sock.h"
#include "app.h"
#include "tun.h"
#include "power.h"

#define ESP_INTR_FLAG_DEFAULT   0

// Main application
void app_main() {
    esp_err_t ret;

    ret = esp_netif_init();
    assert(ret == ESP_OK);

    ret = esp_event_loop_create_default();
    assert(ret == ESP_OK);

    eos_net_init();

    eos_cell_pcm_init();
    gpio_install_isr_service(ESP_INTR_FLAG_DEFAULT);
    eos_modem_init();

    eos_cell_init();
    eos_wifi_init();
    eos_sock_init();

#ifdef EOS_WITH_APP
    eos_app_init();
    eos_tun_init();
#endif
    eos_power_init();
}