Hi,
Trying to alter the baud rate on the BerryGPS module.
Had successful set the baud rate via command line using:
echo -e “\$PMTK251,38400*27\r\n” > /dev/ttyS0
And now the module is running at 38400.
But unable to set the baud rate back to 9600 using the following argument within python.
Tried:
setbaud=”$PMTK251,9600*27\r\n”
tried:
setbaud=’$PMTK251,9600*27\r\n’
GPS.write(setbaud)
But the module is still locked in at 38400 as NMEA data is still coming in at this rate.
Ultimately trying to send other commands but need to get over this hurdle first…
Rob.