<?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>nrf21540 firmware available in sdk</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/79020/nrf21540-firmware-available-in-sdk</link><description>hi we have designed a board with nrf52840 with nrf21540.and we have designed it to communicate it with spi .Is the spi example for nrf21540 is available in sdk . if not where am i able to get the firmware example for nrf21540</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 01 Jul 2022 11:27:17 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/79020/nrf21540-firmware-available-in-sdk" /><item><title>RE: nrf21540 firmware available in sdk</title><link>https://devzone.nordicsemi.com/thread/375064?ContentTypeID=1</link><pubDate>Fri, 01 Jul 2022 11:27:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3a6f0b4f-9380-4eef-a036-2a87447108b8</guid><dc:creator>Muhammad Usman</dc:creator><description>&lt;p&gt;Hi @Akshay&lt;/p&gt;
&lt;p&gt;Hope you are doing well! Are you able to solve this nrf21540 with nrf5 SDK?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks in Advance!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf21540 firmware available in sdk</title><link>https://devzone.nordicsemi.com/thread/327608?ContentTypeID=1</link><pubDate>Wed, 01 Sep 2021 12:22:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:069f64be-5927-4967-95cd-afbd5ac9643d</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The Softdevice doesn&amp;#39;t support the driver yet. It&amp;#39;s meant to be used with the more lower level application such as radio test etc.&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf21540 firmware available in sdk</title><link>https://devzone.nordicsemi.com/thread/327545?ContentTypeID=1</link><pubDate>Wed, 01 Sep 2021 08:29:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2977f26c-9740-45c5-816e-72e9238083a5</guid><dc:creator>Akshay19</dc:creator><description>&lt;p&gt;hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp;i used that driver nrf21540.c and .h from radio test example and i used those files in ble perepheral / ble_blinky example. i called the functions from nrf21540.c file like this in main()&lt;/p&gt;
&lt;p&gt;int main(void)&lt;br /&gt;{&lt;br /&gt; // Initialize.&lt;br /&gt; log_init();&lt;br /&gt; // leds_init();&lt;br /&gt; timers_init();&lt;br /&gt; // buttons_init();&lt;/p&gt;
&lt;p&gt;nrf21540_init();&lt;br /&gt; nrf21540_ant_set(NRF21540_ANT1);&lt;br /&gt; nrf21540_pwr_mode_set(NRF21540_PWR_MODE_A);&lt;br /&gt;nrf21540_tx_set(NRF21540_EXECUTE_NOW,NRF21540_EXEC_MODE_NON_BLOCKING);&lt;/p&gt;
&lt;p&gt;power_management_init();&lt;br /&gt; ble_stack_init();&lt;br /&gt; gap_params_init();&lt;br /&gt; gatt_init();&lt;br /&gt; services_init();&lt;br /&gt; advertising_init();&lt;br /&gt; conn_params_init();&lt;/p&gt;
&lt;p&gt;// Start execution.&lt;br /&gt; NRF_LOG_INFO(&amp;quot;Blinky example started.&amp;quot;);&lt;br /&gt; advertising_start();&lt;/p&gt;
&lt;p&gt;// Enter main loop.&lt;br /&gt; for (;;)&lt;br /&gt; {&lt;br /&gt; idle_state_handle();&lt;br /&gt; }&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;but when i call the&amp;nbsp;&lt;span&gt;nrf21540_tx_set(); the code is not advertising.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;or should i call this nrf21540_tx_set &amp;amp; nrf21540_rx_set in any radio events&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;this is my pin map&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;#define NRF21540_RXEN_PIN NRF_GPIO_PIN_MAP(1,13)&lt;br /&gt;#define NRF21540_TXEN_PIN NRF_GPIO_PIN_MAP(1,10)&lt;br /&gt;#define NRF21540_PDN_PIN NRF_GPIO_PIN_MAP(1,02)&lt;br /&gt;#define NRF21540_MODE_PIN NRF_GPIO_PIN_MAP(0,29)&lt;br /&gt;#define NRF21540_ANTSEL_PIN NRF_GPIO_PIN_MAP(0,02)&lt;br /&gt;#define NRF21540_CS_PIN NRF_GPIO_PIN_MAP(1,04)&lt;br /&gt;#define NRF21540_MOSI_PIN NRF_GPIO_PIN_MAP(0,25)&lt;br /&gt;#define NRF21540_MISO_PIN NRF_GPIO_PIN_MAP(1,06)&lt;br /&gt;#define NRF21540_CLK_PIN NRF_GPIO_PIN_MAP(0,24)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;where to call those tx and rx set function&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;im using gpio not spi&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;pls reply&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf21540 firmware available in sdk</title><link>https://devzone.nordicsemi.com/thread/327014?ContentTypeID=1</link><pubDate>Fri, 27 Aug 2021 13:40:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:728bc4dc-d357-4f8c-821e-ce2691019e00</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;There is planned future support in NCS, for now there is a driver in nRF5SDK at&amp;nbsp; \driver_ext\nrf21540\&lt;/p&gt;
&lt;p&gt;No spi example is available yet. The DTM and Radio test example supports the nRF21540.&lt;/p&gt;
[quote user="Akshay19"]what that radio test example do[/quote]
&lt;p&gt;&lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.2/nrf_radio_test_example.html?cp=8_1_4_6_31"&gt;Read the documentation.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf21540 firmware available in sdk</title><link>https://devzone.nordicsemi.com/thread/326962?ContentTypeID=1</link><pubDate>Fri, 27 Aug 2021 10:53:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c9add198-3a60-4a04-b353-14660564e4da</guid><dc:creator>Akshay19</dc:creator><description>&lt;p&gt;i found a radio test example(pca10112) in sdk. how can i use this to implement that in our application code. and what that radio test example do&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>