Portenta H7 with Lora Shield connected over the high density connectors.
On the header connector I use I2C and SPI to drive a TFT Display. This works perfectly.
I tried without success to use the serial port on the H7 header connector for a GPS Breakout.
D14 / PA9 UART1_TX
D13 / PA10 UART1_RX
GND
Serial1.begin(9600); is executed, but I don't get data from my serial device.
Yes, TX->RX and RX->TX is done. GND connected
Is there a trick?
Is Serial1 not the right name?
Is it used anywhere else?
I am not sure, but my impression after digging in mbed API code:
serial1 seems to use the same UART on CM4 side as CM7 (as serial). I guess (!), serial1 is for CM4 only and using the same UART as CM7.
It might not be a different UART, with different pins.