Hello, I want to use the nrf52 in either the BLE mode or the NRF24 mode (gazelle hs protocol). Where should I look for a start? Thanks!
Hello, I want to use the nrf52 in either the BLE mode or the NRF24 mode (gazelle hs protocol). Where should I look for a start? Thanks!
Сan I programmatically select these two modes? For example, BLE is selected by default, but if the NRF52 receives a gazelle protocol, it switches to it.
The two protocols will have to be Time Division Multiplexed. The BLE stack (SoftDevice) will have priority of the RADIO, but it will in periods called Timeslots yield it priority over the radio to the application, allowing you to run the gazell stack. See Multiprotocol support and Multiprotocol Application example.
Thanks! I will try
Thanks! I will try