Skip to content

Commit 71a53bd

Browse files
rugeGerritsenjoerchan
authored andcommitted
bluetooth: controller: Add SOC_NRF52811 to supported platforms
More platforms are supported, but these are not yet supported by NCS. See README.rst Signed-off-by: Rubin Gerritsen <[email protected]>
1 parent bf7173d commit 71a53bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ble_controller/Kconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,22 @@ comment "Common BLE Controller module configuration"
3030

3131
choice BLE_CONTROLLER_VARIANT
3232
prompt "BLE Controller variant"
33-
default BLE_CONTROLLER_S112 if SOC_NRF52810
33+
default BLE_CONTROLLER_S112 if (SOC_NRF52810 || SOC_NRF52811)
3434
default BLE_CONTROLLER_S132 if SOC_NRF52832
3535
default BLE_CONTROLLER_S140 if SOC_NRF52840
3636
help
3737
Select a BLE Controller variant.
3838

3939
config BLE_CONTROLLER_S112
40-
depends on (SOC_NRF52810 || SOC_NRF52832)
40+
depends on (SOC_NRF52810 || SOC_NRF52811 || SOC_NRF52832)
4141
bool "s112"
4242

4343
config BLE_CONTROLLER_S132
4444
depends on (SOC_NRF52810 || SOC_NRF52832)
4545
bool "s132"
4646

4747
config BLE_CONTROLLER_S140
48-
depends on SOC_NRF52840
48+
depends on (SOC_NRF52811 || SOC_NRF52840)
4949
bool "s140"
5050

5151
endchoice

0 commit comments

Comments
 (0)