/ firmware / src / bin / ceratina.cpp
ceratina.cpp
 1  #include <boot/system.h>
 2  #include <config.h>
 3  #include <networking/wifi.h>
 4  #include <Arduino.h>
 5  
 6  #ifndef PIO_UNIT_TESTING
 7  
 8  void setup(void) {
 9    Serial.begin(config::system::SERIAL_BAUD);
10    delay(100);
11  
12    networking::wifi::sta::initialize();
13    boot::system::startTask();
14  }
15  
16  void loop(void) {}
17  
18  #endif