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>
17 lines
333 B
Text
17 lines
333 B
Text
# 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
|