Skip to content

Commit 94b8265

Browse files
rjaylesdanieldegrasse
authored andcommitted
drivers: bluetooth: dedicated Kconfig for the STM32WBA configuration
Adds a Kconfig for the STM32WBA associated BT configuration The first configuration added is the possibility to activate the calibration of the radio using the temperature Signed-off-by: Romain Jayles <romain.jayles@st.com>
1 parent dd79c81 commit 94b8265

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

drivers/bluetooth/hci/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ config BT_AIROC
304304
source "drivers/bluetooth/hci/Kconfig.esp32"
305305
source "drivers/bluetooth/hci/Kconfig.infineon"
306306
source "drivers/bluetooth/hci/Kconfig.nxp"
307+
source "drivers/bluetooth/hci/Kconfig.stm32"
307308

308309
config BT_DRIVER_QUIRK_NO_AUTO_DLE
309310
bool "Host auto-initiated Data Length Update quirk"

drivers/bluetooth/hci/Kconfig.stm32

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Copyright (c) 2025 STMicroelectronics
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
menu "STM32WBA Bluetooth configuration"
6+
depends on BT_STM32WBA
7+
8+
config BT_STM32WBA_USE_TEMPERATURE_BASED_RADIO_CALIBRATION
9+
bool "STM32WBA Radio calibration based on temperature sensor"
10+
default y
11+
select SENSOR
12+
select STM32_TEMP
13+
help
14+
Allows the linklayer to calibrate itself on the current temperature read on the ADC4
15+
endmenu

0 commit comments

Comments
 (0)