diff options
Diffstat (limited to 'code/esp32/main')
| -rw-r--r-- | code/esp32/main/app_main.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/code/esp32/main/app_main.c b/code/esp32/main/app_main.c index b654453..d2bb704 100644 --- a/code/esp32/main/app_main.c +++ b/code/esp32/main/app_main.c @@ -1,3 +1,5 @@ +#include <driver/gpio.h> +  #include "i2c.h"  #include "cell.h"  #include "_net.h" @@ -8,6 +10,9 @@  // Main application  void app_main() {      eos_i2c_init(); +    eos_pcm_init(); +    gpio_install_isr_service(0); +    eos_modem_init();      eos_net_init();      eos_cell_init();      eos_wifi_init();  | 
