Fixed undeclared variable updatespeed
pull/586/head
kjablonski 2017-04-21 06:57:18 -05:00 zatwierdzone przez GitHub
rodzic a8bd9a28f9
commit e3fcadb4ba
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -254,7 +254,7 @@ func initGPSSerial() bool {
// Byte order for UBX configuration is little endian.
// Set 10 Hz update to make gpsattitude more responsive for ublox7/8.
updatespeed = []byte{0x64, 0x00, 0x01, 0x00, 0x01, 0x00} // 10 Hz
updatespeed := []byte{0x64, 0x00, 0x01, 0x00, 0x01, 0x00} // 10 Hz
// Set navigation settings.
nav := make([]byte, 36)