I can for the live of me not get serial communication established between the MicroMod carrier board and the LTE GNSS Breakout board.
I would assume that following should work:
#define saraSerial Serial
SARA_R5 mySARA;
mySARA.enableDebugging();
// Initialize the SARA
if (mySARA.begin(saraSerial, 9600) )
{
Serial.println(F(“SARA-R5 connected!”));
}
else
{
Serial.println(F(“Unable to communicate with the SARA.”));
Serial.println(F(“Manually power-on (hold the SARA On button for 3 seconds) on and try again.”));
while (1) ; // Loop forever on fail
}
Serial.println();
However no matter what I will get:
SARA-R5 Example
init: Begin module init.
sendCommandWithResponse: Command: E0
init: Module failed echo test.
init: Begin module init.
init: Attempting autobaud connection to module.
sendCommandWithResponse: Command: +IPR=9600
sendCommandWithResponse: Command:
sendCommandWithResponse: Command: +IPR=9600
sendCommandWithResponse: Command:
sendCommandWithResponse: Command: +IPR=9600
sendCommandWithResponse: Command:
sendCommandWithResponse: Command: +IPR=9600
sendCommandWithResponse: Command:
sendCommandWithResponse: Command: +IPR=9600
sendCommandWithResponse: Command:
sendCommandWithResponse: Command: +IPR=9600
sendCommandWithResponse: Command:
init: Begin module init.
init: Power cycling module.
I’m starting to wonder if the RX1/TX1 on the the MicroMod Data Logging Carrier Board are not connected?