AP_GPS: initialise _step to zero in all drivers

new() does not zero-fill memory
This commit is contained in:
Andrew Tridgell 2013-01-12 16:04:23 +11:00
parent 64734dc51c
commit 252d11ccfa
5 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,8 @@ AP_GPS_MTK::init(AP_HAL::UARTDriver *s, enum GPS_Engine_Setting nav_setting)
{ {
_port = s; _port = s;
_port->flush(); _port->flush();
_step = 0;
// initialize serial port for binary protocol use // initialize serial port for binary protocol use
// XXX should assume binary, let GPS_AUTO handle dynamic config? // XXX should assume binary, let GPS_AUTO handle dynamic config?
_port->print(MTK_SET_BINARY); _port->print(MTK_SET_BINARY);

View File

@ -22,6 +22,7 @@ AP_GPS_MTK16::init(AP_HAL::UARTDriver *s, enum GPS_Engine_Setting nav_setting)
{ {
_port = s; _port = s;
_port->flush(); _port->flush();
_step = 0;
// initialize serial port for binary protocol use // initialize serial port for binary protocol use
// XXX should assume binary, let GPS_AUTO handle dynamic config? // XXX should assume binary, let GPS_AUTO handle dynamic config?

View File

@ -18,6 +18,7 @@
// Constructors //////////////////////////////////////////////////////////////// // Constructors ////////////////////////////////////////////////////////////////
AP_GPS_MTK19::AP_GPS_MTK19() : GPS() AP_GPS_MTK19::AP_GPS_MTK19() : GPS()
{ {
_step = 0;
} }
// Public Methods ////////////////////////////////////////////////////////////// // Public Methods //////////////////////////////////////////////////////////////

View File

@ -29,6 +29,7 @@ AP_GPS_SIRF::init(AP_HAL::UARTDriver *s, enum GPS_Engine_Setting nav_setting)
{ {
_port = s; _port = s;
_port->flush(); _port->flush();
_step = 0;
// For modules that default to something other than SiRF binary, // For modules that default to something other than SiRF binary,
// the module-specific subclass should take care of switching to binary mode // the module-specific subclass should take care of switching to binary mode

View File

@ -50,6 +50,7 @@ AP_GPS_UBLOX::init(AP_HAL::UARTDriver *s, enum GPS_Engine_Setting nav_setting)
_configure_gps(); _configure_gps();
_nav_setting = nav_setting; _nav_setting = nav_setting;
_step = 0;
} }
// Process bytes available from the stream // Process bytes available from the stream