Files
drivers/gps/registers.go
T
Anthony Elder a24657d1eb GPS driver (#55)
* u-blox GPS driver for both I2C and UART
2019-05-23 15:29:29 +02:00

18 lines
224 B
Go

package gps
// Constants/addresses used for u-blox I2C.
// The I2C address which this device listens to.
const (
I2C_ADDRESS = 0x42
)
const (
BYTES_AVAIL_REG = 0xfd
DATA_STREAM_REG = 0xff
)
const (
bufferSize = 32
)