blob: 1d3fa3426590877c04d9f56dc65e9879786cea12 (
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
|
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <string.h>
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include <freertos/semphr.h>
#include <esp_system.h>
#include <esp_event.h>
#include <esp_event_loop.h>
#include <esp_log.h>
#include <esp_err.h>
#include <driver/spi_slave.h>
#include "fe310.h"
#include "transport.h"
// Main application
void app_main() {
eos_fe310_init();
eos_net_init();
}
|