Looking further into this I see that SoftwareSerial.h is #included in the .cpp file and that an object named uart1 is declared
SoftwareSerial uart1(__RX_PIN__, __TX_PIN__);
However, you never read from that object in your program.
Looking further into this I see that SoftwareSerial.h is #included in the .cpp file and that an object named uart1 is declared
SoftwareSerial uart1(__RX_PIN__, __TX_PIN__);
However, you never read from that object in your program.