mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 13:42:49 +00:00
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>
43 lines
650 B
Plaintext
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
|