This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

NRF barebone snippet transmit code

Hello, I am new to NRF52. I have setup a project under Embitz ide. I can compile GPIO toggle code and program the the code. However when I try an transmit example github.com/.../main.c. the the packets are not seen in Bluetooth sniffer. Is there any thing I am missing?

Parents
  • Hi

    The reason you're not seeing these packets on your Bluetooth sniffer is that this packet is not a BLE packet, but rather just a basic proprietary 2.4GHz packet with arbitrary values. In order to make an advertising packet transmitting as a Bluetooth device, there are a lot of layers, flags, and settings that must be in order to comply with the Bluetooth spec. You can check out our ble_peripheral SDK examples to see how we set up the radio and advertising data to transmit Bluetooth advertising packets.

    Best regards,

    Simon

Reply
  • Hi

    The reason you're not seeing these packets on your Bluetooth sniffer is that this packet is not a BLE packet, but rather just a basic proprietary 2.4GHz packet with arbitrary values. In order to make an advertising packet transmitting as a Bluetooth device, there are a lot of layers, flags, and settings that must be in order to comply with the Bluetooth spec. You can check out our ble_peripheral SDK examples to see how we set up the radio and advertising data to transmit Bluetooth advertising packets.

    Best regards,

    Simon

Children
Related