I have a hard time getting the Iridium on the Artemis Global Tracker to work with the core 2.0.5. See sparkfunX/Artemis_Global_Tracker#19 .
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);
void setup(){
Serial.begin(115200);
delay(10);
Serial.println(F("booted"));
}
void loop(){
}
Any idea how to fix this?