Raspberry Pi - Serial UART Communication
Given this Python code reading GPS data:
import serial
ser = serial.Serial('/dev/serial0', 9600, timeout=1)
line = ser.readline().decode('ascii', errors='replace')
print(line.strip())
If the GPS sends the sentence '$GPGGA,123519,4807.038,N,01131.000,E,1,08,0.9,545.4,M,46.9,M,,*47', what will be printed?
