nrf52832学习笔记(3)设置发射功率

只要调用下面api就可以设置发射功率

/*
 * @param[in] tx_power Radio transmit power in dBm (accepted values are -40, -30, -20, -16, -12, -8, -4, 0, and 4 dBm).
 *
 * @note The -30dBm setting is only available on nRF51 series ICs.
 * @note The -40dBm setting is only available on nRF52 series ICs.
 *
 * @retval ::NRF_SUCCESS Successfully changed the transmit power.
 * @retval ::NRF_ERROR_INVALID_PARAM Invalid parameter(s) supplied.
 */
uint32_t, sd_ble_gap_tx_power_set(int8_t tx_power));

只要调用这个函数就可以设置发射功率
在gap参数初始化里
nrf52832学习笔记(3)设置发射功率_第1张图片

在广播初始化时也可以设置发射功率
nrf52832学习笔记(3)设置发射功率_第2张图片

nrf52832学习笔记(3)设置发射功率_第3张图片

你可能感兴趣的:(nrf52832,蓝牙)