summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eos.c
blob: b656f9152cffef221cfa6e608765f61a71f4eec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "event.h"
#include "interrupt.h"
#include "timer.h"
#include "spi.h"
#include "net.h"
#include "i2s.h"

#include "eos.h"

void eos_init(void) {
    eos_evtq_init();
    eos_intr_init();
    eos_timer_init();
    eos_net_init();
    eos_spi_init();
    eos_i2s_init();
    eos_net_start();
}