So far we managed to implement VS Code, and make almost everything work, Chip: OM6626A (with BT 5.4 hardware support? - LE_VERSION 13) ROM Library: July 2023 build BLE Link Layer Version: 13 Configuration: ble_1peripheral preset
1. Does the July 2023 SDK (LE_VERSION 13) support extended connectable advertising? 2. What Bluetooth Core Specification version does LE_VERSION 13 correspond to? 3. Is this the latest SDK release, or is there a newer version available? 4.Can you provide a working code example for extended connectable advertising?
adv_param.own_addr_type = OB_ADV_ADDR_TYPE_RANDOM; adv_param.prim_phy = OB_ADV_PHY_CODED; adv_param.secd_phy = OB_ADV_PHY_CODED; adv_param.tx_pwr = 20; // +20 dBm MAX TX power for best range (~50-80m) adv_param.filter_policy = OB_ADV_FILTER_NONE; adv_param.prim_ch_map = OB_ADV_CH_ALL; // Use all 3 channels (37, 38, 39)
|