<?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>NRF Radio test FW : Set ZigBee Bandwidth</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/123575/nrf-radio-test-fw-set-zigbee-bandwidth</link><description>Hello All, 
 We have developed a Zigbee End Node device for which we would like to make a radio test. 
 we are using nRF connect SDK 2.0.0, please note the reason we use the old SDK vesrion as we had started this project 2 years earlier. 
 As the Nordic</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 11 Aug 2025 06:22:09 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/123575/nrf-radio-test-fw-set-zigbee-bandwidth" /><item><title>RE: NRF Radio test FW : Set ZigBee Bandwidth</title><link>https://devzone.nordicsemi.com/thread/545127?ContentTypeID=1</link><pubDate>Mon, 11 Aug 2025 06:22:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:384c3681-07f6-4b23-8ad4-a896727e76cd</guid><dc:creator>UVP</dc:creator><description>&lt;p&gt;Hello Edvin,&lt;/p&gt;
&lt;p&gt;Thank you for the feedback, your feedback helped me lot&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF Radio test FW : Set ZigBee Bandwidth</title><link>https://devzone.nordicsemi.com/thread/545071?ContentTypeID=1</link><pubDate>Fri, 08 Aug 2025 13:43:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:198fce68-9400-48b7-a631-2ed65c2938c1</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Try setting the data_rate to&amp;nbsp;Ieee802154_250Kbit, which is what Zigbee uses. Then you need to set the start channel to 11 and end channel to 26 using these commands:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;data_rate ieee802154_250Kbit
start_channel 11
end_channel 26&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Setting the start_channel and end_channel is mentioned in the sample descriptions &lt;a href="https://docs.nordicsemi.com/bundle/ncs-2.3.0/page/nrf/samples/peripheral/radio_test/README.html#overview"&gt;Overview section&lt;/a&gt;&amp;nbsp;(the &amp;quot;Note&amp;quot;).&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I think you are mixing up the channel width with the data modulation and transfer speed. E.g. Bluetooth can have both 1MBPS and 2MBPS (and 125kBPS), but they all use the same channels, that are all 1MHz wide.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The Zigbee channels (802.15.4 channels) are wider, but it doesn&amp;#39;t mean they communicate at the rate of 2MBPS.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regarding the FEM:&lt;/p&gt;
&lt;p&gt;If you look in your radio_test\src\radio_cmd.c, you see the radio_param_config struct:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static struct radio_param_config {
	/** Radio transmission pattern. */
	enum transmit_pattern tx_pattern;

	/** Radio mode. Data rate and modulation. */
	nrf_radio_mode_t mode;

	/** Radio output power. */
	uint8_t txpower;

	/** Radio start channel (frequency). */
	uint8_t channel_start;

	/** Radio end channel (frequency). */
	uint8_t channel_end;

	/** Delay time in milliseconds. */
	uint32_t delay_ms;

	/** Duty cycle. */
	uint32_t duty_cycle;

#if CONFIG_FEM
	/* Front-end module (FEM) configuration. */
	struct radio_test_fem fem;
#endif /* CONFIG_FEM */
} config = {
	.tx_pattern = TRANSMIT_PATTERN_RANDOM,
	.mode = NRF_RADIO_MODE_BLE_1MBIT,
	.txpower = RADIO_TXPOWER_TXPOWER_0dBm,
	.channel_start = 0,
	.channel_end = 80,
	.delay_ms = 10,
	.duty_cycle = 50,
#if CONFIG_FEM
	.fem.gain = FEM_USE_DEFAULT_GAIN
#endif /* CONFIG_FEM */
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;And you can see that the &amp;quot;fem&amp;quot; option is only enabled if CONFIG_FEM is set. Try adding:&lt;/p&gt;
&lt;p&gt;CONFIG_FEM=y&lt;/p&gt;
&lt;p&gt;in the radio_test&amp;#39;s prj.conf file, and see if that helps!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>