How to set BLE tx power

For a school project I need some BLE beacons to advertise in the background.
I'm currently using this example project: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.3.0/zephyr/samples/bluetooth/beacon/README.html

I believe it's only transmitting with 0 dBm. I'd like to change this to the maximum of 8 dBm.

Adding the line "CONFIG_BT_CTLR_TX_PWR_ANTENNA=8" in my config didn't seem to have any impact.
Another option I saw was adding some params to the "bt_le_adv_start()" method but I'm not sure how to structure these params.

Any other solutions are welcome. At the end of the day I just want to advertise to the 3 BLE adv. channels with as much tx power as possible.

Related