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
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
Thanks, that is exactly what I need !
The radio tx example works for me:
Looks like its transmitting one byte, do you know the format ?
Is it just the BLE preamble and the data byte ?
| preamble | databyte |
Other question: does the sniffer have some raw mode, like just sniffing on a ble channel and show also invalid ble frames ?
Thanks,
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