Hi, I have found several aged topics on Devzone but need this feature and would like current state. If it still not supported, is there any example implementation on how manage it in software.
The idea is
BLE_ADVERTISING_DEF(adv_1); #define APP_BLE_CONN_CFG_TAG1 1 BLE_ADVERTISING_DEF(adv_2); #define APP_BLE_CONN_CFG_TAG2 2 ble_advertising_init(&adv_1, init_1); ble_advertising_conn_cfg_tag_set(&adv_1,APP_BLE_CONN_CFG_TAG1); ble_advertising_start(&adv_1, advertising_mode1); ble_advertising_init(&adv_2, init_2); ble_advertising_conn_cfg_tag_set(&adv_2,APP_BLE_CONN_CFG_TAG2); ble_advertising_start(&adv_2, advertising_mode2);
And have 2 separate avertisements simultaneously with different data, intervals.
Thanks