mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
30 lines
934 B
Plaintext
30 lines
934 B
Plaintext
# Copyright (c) 2020 HAW Hamburg
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
menu "MRF24J40 driver"
|
|
depends on USEMODULE_MRF24J40
|
|
|
|
config MRF24J40_OQPSK
|
|
bool "OQPSK support"
|
|
|
|
config MRF24J40_USE_EXT_PA_LNA
|
|
bool "Enable external PA/LNA control"
|
|
default y
|
|
depends on !USEMODULE_MRF24J40MA
|
|
help
|
|
Increase RSSI for MRF24J40MC/MD/ME devices. No effect on MRF24J40MA.
|
|
For more information, please refer to section 4.2 of MRF24J40 datasheet.
|
|
|
|
config MRF24J40_TEST_SPI_CONNECTION
|
|
bool "Enable basic self-test on init"
|
|
help
|
|
Perform a write / read to a known register on startup to detect if the
|
|
device is connected. Enable this if you want the boot not to hang if the
|
|
device is not connected / there are SPI errors.
|
|
|
|
endmenu # MRF24J40 driver
|