mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-22 13:05:51 +00:00
nrf51 and nrf52 by default was enabling temperature sensor if sensor API was enabled. It was causing code size increase even when temperature sensor was not touched by anyone. Removed default enabling of temperature sensor for both series. Signed-off-by: Krzysztof Chruscinski <krzysztof.chruscinski@nordicsemi.no>
18 lines
333 B
Plaintext
18 lines
333 B
Plaintext
# Nordic Semiconductor nRF51 MCU line
|
|
|
|
# Copyright (c) 2016 Linaro Limited
|
|
# Copyright (c) 2018 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_SERIES_NRF51X
|
|
|
|
source "soc/arm/nordic_nrf/nrf51/Kconfig.defconfig.nrf51*"
|
|
|
|
config SOC_SERIES
|
|
default "nrf51"
|
|
|
|
config NUM_IRQS
|
|
default 26
|
|
|
|
endif # SOC_SERIES_NRF51X
|