blob: 03609ae1eb197b915d574541e5ee2190bc58a6b6 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#include <stdio.h>
#include "event.h"
#include "soc/interrupt.h"
#include "soc/timer.h"
#include "soc/pwr.h"
#include "soc/i2s.h"
#include "soc/i2c.h"
#include "soc/uart.h"
#include "soc/spi.h"
#include "dev/spi.h"
#include "dev/net.h"
#include "dev/sdcard.h"
#include "dev/bq25895.h"
#include "dev/eve.h"
#include "net/pwr.h"
#include "net/wifi.h"
#include "net/sock.h"
#include "net/cell.h"
#include "eos.h"
void eos_init(void) {
uint8_t wakeup_cause = eos_pwr_wakeup_cause();
int rv;
eos_evtq_init(wakeup_cause);
eos_intr_init(wakeup_cause);
eos_timer_init(wakeup_cause);
eos_uart_init(wakeup_cause);
printf("INIT:%d\n", wakeup_cause);
rv = eos_pwr_init(wakeup_cause);
if (rv) printf("PWR INIT ERR:%d\n", rv);
rv = eos_i2s_init(wakeup_cause);
if (rv) printf("I2S INIT ERR:%d\n", rv);
rv = eos_i2c_init(wakeup_cause);
if (rv) printf("I2C INIT ERR:%d\n", rv);
rv = eos_spi_init(wakeup_cause);
if (rv) printf("SPI INIT ERR:%d\n", rv);
rv = eos_spi_dev_init(wakeup_cause);
if (rv) printf("SPI DEV INIT ERR:%d\n", rv);
rv = eos_bq25895_init(wakeup_cause);
if (rv) printf("BQ25895 INIT ERR:%d\n", rv);
rv = eos_net_init(wakeup_cause);
if (rv) printf("NET INIT ERR:%d\n", rv);
rv = eos_sdc_init(wakeup_cause);
if (rv) printf("SDC INIT ERR:%d\n", rv);
rv = eos_eve_init(wakeup_cause);
if (rv) printf("EVE INIT ERR:%d\n", rv);
eos_run(wakeup_cause);
}
void eos_run(uint8_t wakeup_cause) {
int rv;
rv = eos_eve_run(wakeup_cause);
if (rv) printf("EVE RUN ERR:%d\n", rv);
eos_pwr_net_init();
eos_wifi_init();
eos_sock_init();
eos_cell_init();
rv = eos_net_run(wakeup_cause);
if (rv) printf("NET RUN ERR:%d\n", rv);
}
void eos_run_once(void) {
eos_eve_calibrate();
}
|