Maybe it's just me, but on other architectures I am have no problems using printf like
Serial.printf("\nLoRa begin failed %d\n", state);
But for SAMD21 it throws compile error
src\main.cpp:78:10: error: 'class Uart' has no member named 'printf'; did you mean 'print'?
Serial.printf("\nLoRa begin failed %d\n\n", state);
Am I missing something