Hello,
I'm trying to test and document my device (nrf52840 pcb) BLE5 abilities. so far i tested connection and dfu using my nrf connect mobile app.
Now its time to test advertisement. i tested it using BLE_GAP_ADV_TYPE_NONCONNECTABLE_NONSCANNABLE_UNDIRECTED that as i understand is by default LE 1M PHY,
and Im trying to test LE 2M PHY and LE CODED PHY. plus when i try to set m_adv_params.primary_phy and m_adv_params.secondary_phy to BLE_GAP_PHY_CODED im getting a runtime error: [NRF_ERROR_INVALID_PARAM].
So i tried using BLE_GAP_ADV_TYPE_EXTENDED_NONCONNECTABLE_NONSCANNABLE_UNDIRECTED, here i am not getting an error, but i also cant see the advertisement in my nrf mobile app (yes, my mobile device is suitable for 2M PHY and CODED PHY).
Any idea how can i test advertisement on my device that will use BLE5 only?
Pluse i didnt really understand the diffrance between BLE_GAP_ADV_TYPE_NONCONNECTABLE_NONSCANNABLE_UNDIRECTED vs BLE_GAP_ADV_TYPE_EXTENDED_NONCONNECTABLE_NONSCANNABLE_UNDIRECTED.