Hi all
here is a list of some of the commands you can send to em406 to enable/disable messages:
// GGA-Global Positioning System Fixed Data, message 103,00
#define GGA_ON "$PSRF103,00,00,01,01*25\r\n"
#define GGA_OFF "$PSRF103,00,00,00,01*24\r\n"
// GLL-Geographic Position-Latitude/Longitude, message 103,01
#define GLL_ON "$PSRF103,01,00,01,01*24\r\n"
#define GLL_OFF "$PSRF103,01,00,00,01*25\r\n"
// GSA-GNSS DOP and Active Satellites, message 103,02
#define GSA_ON "$PSRF103,02,00,01,01*27\r\n"
#define GSA_OFF "$PSRF103,02,00,00,01*26\r\n"
// GSV-GNSS Satellites in View, message 103,03
#define GSV_ON "$PSRF103,03,00,01,01*26\r\n"
#define GSV_OFF "$PSRF103,03,00,00,01*27\r\n"
// RMC-Recommended Minimum Specific GNSS Data, message 103,04
#define RMC_ON "$PSRF103,04,00,01,01*21\r\n"
#define RMC_OFF "$PSRF103,04,00,00,01*20\r\n"
// VTG-Course Over Ground and Ground Speed, message 103,05
#define VTG_ON "$PSRF103,05,00,01,01*20\r\n"
#define VTG_OFF "$PSRF103,05,00,00,01*21\r\n"
// Wide Area Augmentation System, message 151
#define WAAS_ON "$PSRF151,01*0F\r\n"
#define WAAS_OFF "$PSRF151,00*0E\r\n"
Shamelessly borrowed from another forum
By default (or if left without power for sometime), it will only send GGA and RMC messages.
Mike