<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>nrf52 raw frames</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/101956/nrf52-raw-frames</link><description>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</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 24 Jul 2023 12:00:54 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/101956/nrf52-raw-frames" /><item><title>RE: nrf52 raw frames</title><link>https://devzone.nordicsemi.com/thread/437859?ContentTypeID=1</link><pubDate>Mon, 24 Jul 2023 12:00:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fc02680b-d0fa-4230-ac41-d14fc743c01c</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi Jan,&lt;/p&gt;
&lt;p&gt;The radio configuration is done according to&lt;em&gt; radio_configure()&lt;/em&gt; function (components\drivers_nrf\radio_config\radio_config.c).&lt;/p&gt;
&lt;p&gt;The payload is a single uin32_t variable:&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1690199945936v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;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:&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1690199988830v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I am afraid I&amp;#39;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.&lt;/p&gt;
&lt;p&gt;Also, the payload will be set according to some button press:&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1690200045801v4.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;-Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52 raw frames</title><link>https://devzone.nordicsemi.com/thread/437416?ContentTypeID=1</link><pubDate>Thu, 20 Jul 2023 09:25:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6e10f07b-f8a2-4cb9-bec1-b5d6da499a77</guid><dc:creator>jeanjean</dc:creator><description>&lt;p&gt;&lt;br /&gt;Thanks, that is exactly what I need !&lt;/p&gt;
&lt;p&gt;The radio tx example works for me:&lt;br /&gt;Looks like its transmitting one byte, do you know the format ?&lt;br /&gt;Is it just the BLE preamble and the data byte ?&lt;br /&gt;&lt;br /&gt;| preamble | databyte |&lt;br /&gt;&lt;br /&gt;Other question: does the sniffer have some raw mode, like just sniffing on a ble channel and show also invalid ble frames ?&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52 raw frames</title><link>https://devzone.nordicsemi.com/thread/437267?ContentTypeID=1</link><pubDate>Wed, 19 Jul 2023 13:19:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:455584f9-8011-4b29-8428-0d9a3566ba1c</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi Jan,&lt;/p&gt;
&lt;p&gt;Please take a look at this&amp;nbsp;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/esb/README.html"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/esb/README.html&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There are also a few simpler samples in the previous (nRF5) SDK :&lt;/p&gt;
&lt;p&gt;&lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.1.0/nrf_dev_radio_tx_example.html?cp=9_1_4_6_30"&gt;https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.1.0/nrf_dev_radio_tx_example.html?cp=9_1_4_6_30&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.1.0/nrf_dev_radio_rx_example.html?cp=9_1_4_6_29"&gt;https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.1.0/nrf_dev_radio_rx_example.html?cp=9_1_4_6_29&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;-Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52 raw frames</title><link>https://devzone.nordicsemi.com/thread/437257?ContentTypeID=1</link><pubDate>Wed, 19 Jul 2023 12:48:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3c0ed89d-5ec3-4ec8-a09e-2f8e3bbde29a</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi Jan,&lt;/p&gt;
&lt;p&gt;I will check this internally and get back to you.&lt;/p&gt;
&lt;p&gt;-Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52 raw frames</title><link>https://devzone.nordicsemi.com/thread/436973?ContentTypeID=1</link><pubDate>Tue, 18 Jul 2023 11:14:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5ec4d09f-5e8c-419d-a711-5586dc192494</guid><dc:creator>jeanjean</dc:creator><description>&lt;p&gt;No, that does not help, I completely want to bypass the BLE standard.&lt;br /&gt;I want to send a raw frame and try to receive it with a SDR on the other side.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Jan&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52 raw frames</title><link>https://devzone.nordicsemi.com/thread/436958?ContentTypeID=1</link><pubDate>Tue, 18 Jul 2023 10:29:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3d9b0ac2-8c97-46ac-a70c-514127ee3fab</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi Jan,&lt;/p&gt;
&lt;p&gt;Please take a look at &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/52182/best-method-for-send-raw-frames"&gt;this ticket&lt;/a&gt; and let me know if it helps.&lt;/p&gt;
&lt;p&gt;-Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52 raw frames</title><link>https://devzone.nordicsemi.com/thread/436877?ContentTypeID=1</link><pubDate>Tue, 18 Jul 2023 05:55:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cb9d8bad-2358-4d19-8dc0-58b5d83889a0</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Letting you know that I am looking into it and will get back to you with a response soon. Please note that there might be a delay as we are currently short staffed owing to the summer holidays here in Norway. Thank you for your patience and understanding.&lt;/p&gt;
&lt;p&gt;Best Regards,&lt;/p&gt;
&lt;p&gt;Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>