Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
33 lines
648 B
Plaintext
33 lines
648 B
Plaintext
# Kconfig - nRF5 temperature sensor configuration options
|
|
|
|
#
|
|
# Copyright (c) 2016 ARM Ltd.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig TEMP_NRF5
|
|
bool
|
|
prompt "nRF5 Temperature Sensor"
|
|
depends on SENSOR && SOC_FAMILY_NRF5
|
|
default n
|
|
help
|
|
Enable driver for nRF5 temperature sensor.
|
|
|
|
config TEMP_NRF5_NAME
|
|
string
|
|
prompt "Driver name"
|
|
default "TEMP_0"
|
|
depends on TEMP_NRF5
|
|
help
|
|
Device name with which the nRF5 temperature sensor is identified.
|
|
|
|
config TEMP_NRF5_PRI
|
|
int "TEMP interrupt priority"
|
|
depends on TEMP_NRF5
|
|
range 0 1 if SOC_SERIES_NRF51X
|
|
range 0 5 if SOC_SERIES_NRF52X
|
|
default 1
|
|
help
|
|
nRF5X TEMP IRQ priority.
|