Skip to content
Draft
13 changes: 13 additions & 0 deletions drivers/sensors/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,19 @@ config L86_XXX_BAUD
---help---
Supported values are: 4800, 9600, 14400, 19200, 38400, 57600 and 115200

config SENSORS_UBXM10
bool "u-blox M10 GNSS support"
default n
depends on SERIAL && STANDARD_SERIAL && UORB && SENSORS_GNSS
---help---
Enable driver support for the u-blox M10 series of GNSS modules
using the UBX binary protocol over UART.

config SENSORS_UBXM10_THREAD_STACKSIZE
int "Stack size for UBX M10 module collection thread"
default 10000
depends on SENSORS_UBXM10

config SENSORS_LIS2DH
bool "STMicro LIS2DH device support"
default n
Expand Down
4 changes: 4 additions & 0 deletions drivers/sensors/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ ifeq ($(CONFIG_SENSORS_L86_XXX),y)
CSRCS += l86xxx_uorb.c
endif

ifeq ($(CONFIG_SENSORS_UBXM10),y)
CSRCS += ubxm10_uorb.c
endif

ifeq ($(CONFIG_SENSORS_GNSS),y)
CSRCS += gnss_uorb.c
endif
Expand Down
Loading
Loading