diff options
author | Uros Majstorovic <majstor@majstor.org> | 2021-03-29 13:39:54 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2021-03-29 13:39:54 +0200 |
commit | 4566511371a8a80201c1adb0535cde722cbd9b48 (patch) | |
tree | 713ddf042dc19ba3d7517ea5957ddd2d7c802d62 /fw/fe310/eos/eos.c | |
parent | 3be79c828b4b9466fecb856b9ccf184304b852e0 (diff) |
moved i2c from esp32 to fe310. added bq25895, drv2605 and lsm9ds1 i2c support
Diffstat (limited to 'fw/fe310/eos/eos.c')
-rw-r--r-- | fw/fe310/eos/eos.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fw/fe310/eos/eos.c b/fw/fe310/eos/eos.c index 91115f6..2a7f992 100644 --- a/fw/fe310/eos/eos.c +++ b/fw/fe310/eos/eos.c @@ -11,6 +11,7 @@ #include "wifi.h" #include "cell.h" #include "sock.h" +#include "i2c/bq25895.h" #include "eve/eve.h" #include "eos.h" @@ -33,6 +34,7 @@ void eos_init(void) { eos_cell_init(); eos_sock_init(); eos_spi_dev_init(); + eos_bq25895_init(); eos_net_wake(wakeup_cause); |