nrf52 raw frames


Hi,

I want to workout a very simple custom wireless protocol, is it possible to send raw frames with the nrf52 ?
So not following the BLE standard and disable whitening.

Is there somewhere an example for it.

Thanks in advance!
Jan

Parents Reply Children
  • Hi Jan,

    The radio configuration is done according to radio_configure() function (components\drivers_nrf\radio_config\radio_config.c).

    The payload is a single uin32_t variable:

    Not sure if the length is set, or if it will actually transmit PACKET_PAYLOAD_MAXSIZE. It seems that the length field in the packet is 0:

    I am afraid I'm not aware of any raw modes to capture proprietary packets using the sniffer. The default mode of the radio tx example is NRF1M, not BLE1M used by the sniffer.

    Also, the payload will be set according to some button press:

    -Priyanka

Related