How to use more than one serial Port

I see this code, uses soft serial. I have something similar on a ESPc3 talking to GPS and Serial port. Works very well.

#include <SoftwareSerial.h>

SoftwareSerial mySerial = SoftwareSerial(21,20); // these are GPIO pins on Arduino RP2040 D9 and D8

void setup(){
    Serial.begin(9600); // USB
    while(!Serial); // For USB 
    Serial1.begin(9600); // for the provided UART port on the Nano RP2040
    mySerial.begin(9600); // our custom created Serial UART interface
}

void loop(){
    Serial.write("Hello World"); // writes to USB serial monitor
    Serial1.write("AT"); // writes to device connected to TX and RX of the nano rp2040 e.g GSM
    mySerial.write("AT");  // writes to device connected to D9 and D8 of the nano rp2040 e.g another GSM
}

HTH
GL :slight_smile: PJ

AFAIK, it’s all or nothing when using softserial. use it for both ports.