Many M0 boards use a direct USB connection for "Serial", and you need to wait for the port to enumerate in your sketch:
Serial.begin(115200);
while (!Serial) {
// spin
}
Many M0 boards use a direct USB connection for "Serial", and you need to wait for the port to enumerate in your sketch:
Serial.begin(115200);
while (!Serial) {
// spin
}
This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.