You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After some debugging, seems this comes from the need to set up a custom serial. This code does not produce a serial output on my computer:
// with this line, do not even get the Serial output// this is a custom serial for talking to the iridium modem, similar to AGT example 14
UART iridiumSerial(1, 25, 24);
voidsetup(){
Serial.begin(115200);
delay(10);
Serial.println(F("booted"));
}
voidloop(){
}