#include #include "encoding.h" #include "platform.h" #include "prci_driver.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/lcd.h" #include "dev/sdcard.h" #include "dev/gt911.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" uint8_t eos_init(void) { uint8_t wakeup_cause; int rv; SPI0_REG(SPI_REG_SCKDIV) = 8; PRCI_use_default_clocks(); PRCI_use_pll(PLL_REFSEL_HFXOSC, 0, 1, 31, 1, -1, -1, -1); wakeup_cause = eos_pwr_wakeup_cause(); 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); rv = eos_lcd_init(wakeup_cause); if (rv) printf("LCD INIT ERR:%d\n", 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(); return wakeup_cause; } void eos_run(uint8_t wakeup_cause) { int rv; rv = eos_net_run(wakeup_cause); if (rv) printf("NET RUN ERR:%d\n", rv); } void eos_run_once(void) { eos_gt911_cfg_print(); eos_gt911_set_threshold(); eos_gt911_cfg_print(); eos_eve_calibrate(); }