<?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>Zigbee support on the micro:bit v2</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/97965/zigbee-support-on-the-micro-bit-v2</link><description>I&amp;#39;m using Zephyr 3.2.99 via the nRF Connect SDK 2.3.0. 
 When I select the micro:bit v2 board (bbc_microbit_v2) and my `prj.conf` contains only `CONFIG_ZIGBEE=y` I get the following Kconfig warning: 
 warning: IEEE802154_NRF5_FCS_IN_LENGTH (defined at</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 22 Mar 2023 19:17:48 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/97965/zigbee-support-on-the-micro-bit-v2" /><item><title>RE: Zigbee support on the micro:bit v2</title><link>https://devzone.nordicsemi.com/thread/416914?ContentTypeID=1</link><pubDate>Wed, 22 Mar 2023 19:17:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:08b6f448-481c-447c-8a30-d4fbf64cb4a2</guid><dc:creator>wintersteiger</dc:creator><description>&lt;p&gt;Thanks for the quick reply, Marte! So simple, I should have thought of it myself! I can confirm, everything works as intended with this change.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Zigbee support on the micro:bit v2</title><link>https://devzone.nordicsemi.com/thread/416812?ContentTypeID=1</link><pubDate>Wed, 22 Mar 2023 13:32:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c78245f1-4c4e-4dc5-90ee-4dae60423ba2</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;You are correct that the issue can be traced to the IEEE 802.14.5 radio not being enabled on the MicroBit. The radio needs to be configured and enabled in devicetree. This can be solved by creating a devicetree overlay file with the following:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;/ {
	chosen {
        zephyr,ieee802154 = &amp;amp;ieee802154;
    };
};

&amp;amp;ieee802154 {
	status = &amp;quot;okay&amp;quot;;
};
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If you name the overlay app.overlay or bbc_microbit_v2.overlay, it should automatically be included in the build.&lt;/p&gt;
&lt;p&gt;I tested the Zigbee Template sample with this overlay on the MicroBit v2, and it worked.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Marte&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>