drivers: bluetooth: silabs: Set maximum TX power

Honor Kconfig option `BT_CTLR_TX_PWR_ANTENNA` for limiting the maximum TX
power. The default value for this option is 0 dBm, which means that after
this change the actual TX power is likely lower than before, unless
increased by this option.

Signed-off-by: Kalle Kietäväinen <kalle.kietavainen@silabs.com>
This commit is contained in:
Kalle Kietäväinen 2025-02-11 14:48:37 +02:00 committed by Benjamin Cabé
commit c8e93401d0
2 changed files with 20 additions and 0 deletions

View file

@ -31,6 +31,11 @@ void BTLE_LL_Process(uint32_t events)
{
}
int16_t BTLE_LL_SetMaxPower(int16_t power)
{
return 0;
}
void sl_btctrl_disable_2m_phy(void)
{
}