zephyr/boards/shields/sparkfun_sara_r4/Kconfig.defconfig
Michael Scott b08ac66f91 boards/shields: sparkfun_sara_r4: enable SARA_R4_NET_STATUS
There is a blue LED used to display connectivity for the SparkFun
SARA-R4 shield.  This LED is connected to the modem via GPIO 16
which is the default used by SARA-R4 driver when
CONFIG_MODEM_UBLOX_SARA_R4_NET_STATUS is enabled.

Signed-off-by: Michael Scott <mike@foundries.io>
2020-02-10 12:29:41 +02:00

43 lines
650 B
Plaintext

# Copyright (c) 2019 Linaro Limited
# SPDX-License-Identifier: Apache-2.0
if SHIELD_SPARKFUN_SARA_R4
if NETWORKING
config MODEM
default y
config MODEM_SHELL
default y
config MODEM_UBLOX_SARA
default y
choice MODEM_UBLOX_SARA_VARIANT
default MODEM_UBLOX_SARA_R4
endchoice
config MODEM_UBLOX_SARA_R4_NET_STATUS
default y
config UART_INTERRUPT_DRIVEN
default y
# extend retry timing to 20 seconds for LTE/LTE-M
config COAP_INIT_ACK_TIMEOUT_MS
default 20000
# Hack: disable IPv6 for now
config NET_IPV6
default n
config NET_CONFIG_NEED_IPV6
default n
rsource "boards/*.defconfig"
endif # NETWORKING
endif # SHIELD_SPARKFUN_SARA_R4