It's me again - still have problems withe uarts.
TX/RX from Stellarpad are connected to TX/RX from FTDI USB-Serial Device.
I can only receive chars from Stellar but when i try to send some back, nothing is received.
To make it clear UART-TX from Stellar works fine but no UART-RX.
Tested with following code:
HardwareSerial mySerial(3);
void setup() {
unsigned char c = 0;
//mySerial.selectModule(3);
mySerial.begin(9600);
mySerial.println("Test starts ... ");
while( c != 'U')
{
c = mySerial.read();
delay(200);
mySerial.print(c);
}
}
void loop()
{
}
I