Atom GPS rx and tx GPIO ports used
- 
					
					
					
					
Hi,
I require the rx and tx GPIO ports used to communicate with the GPS.
uart = UART(1, rx=25, tx=26, baudrate=9600, bits=8, parity=None, stop=1, timeout=5000, rxbuf=1024)
Anny assistance would be greatly appreciated.
Thanks
 - 
					
					
					
					
Hello @elefurgey
the Arduino example code uses GPIO22 for RX and nothing for TX like this:
Serial1.begin(9600,SERIAL_8N1,22,-1);Thanks
Felix - 
					
					
					
					
Thanks Felix