Question
STM32WB Fixed Advertising Channel for Certification
Hey Guys,
I have a problem with my STM32WB55CC. For the certification of my product I have to set the advertising channel to a fixed one (37, 38, 39).
The command I try to use is the following:
volatile uint8_t ret;
ret = hci_le_set_advertising_parameters(
BLE_TIMER_INTERVAL_MIN_FAST,
BLE_TIMER_INTERVAL_MAX_FAST,
ADV_NONCONN_IND,
PUBLIC_ADDR,
0,
0,
ADV_CH_37,
0
);The return value is always "0x01" (Unknown Command). What can I do to get it working???
Thanks a lot!