summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eos.c
blob: 8459f489cc25f44d9f73dff4b17a005fc3c9c0d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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();
}