<?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>RSSI on Fanstel module with FEM dropped after SDK upgrade</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/126263/rssi-on-fanstel-module-with-fem-dropped-after-sdk-upgrade</link><description>Hi! 
 I just upgraded a product we developed using a Fanstel BT840X module (nrf52840 with a Skyworks SKY66112 amplifier) from SDK 2.3.0 to SDK 3.1.1 and I noticed that our radio signal quality has dropped enough that there&amp;#39;s clearly some problem. 
 I</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 06 Jan 2026 16:23:46 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/126263/rssi-on-fanstel-module-with-fem-dropped-after-sdk-upgrade" /><item><title>RE: RSSI on Fanstel module with FEM dropped after SDK upgrade</title><link>https://devzone.nordicsemi.com/thread/558069?ContentTypeID=1</link><pubDate>Tue, 06 Jan 2026 16:23:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:76048451-0938-442c-be54-c9a8405bcad5</guid><dc:creator>Glen M</dc:creator><description>&lt;p&gt;I ended up digging down into the library to find the function where the &amp;quot;power&amp;quot; RSSI value is set and it looks like it&amp;#39;s just a numerical difference (as opposed to a real signal level difference). The older version of the SDK did not account for the LNA gain in the reported number and the new version does in nrf_802154_trx_rssi_last_sample_get().&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;So I ended up just updating my dts file to tell it that there&amp;#39;s no gain from the LNA because I want consistency of behavior:&lt;/p&gt;
&lt;p&gt;nrf_radio_fem: skyFem {&lt;br /&gt; compatible = &amp;quot;skyworks,sky66112-11&amp;quot;, &amp;quot;generic-fem-two-ctrl-pins&amp;quot;;&lt;br /&gt; ctx-gpios = &amp;lt;&amp;amp;gpio0 17 GPIO_ACTIVE_HIGH&amp;gt;;&lt;br /&gt; crx-gpios = &amp;lt;&amp;amp;gpio0 19 GPIO_ACTIVE_HIGH&amp;gt;;&lt;br /&gt; ctx-settle-time-us = &amp;lt;23&amp;gt;;&lt;br /&gt; crx-settle-time-us = &amp;lt;5&amp;gt;;&lt;br /&gt; tx-gain-db = &amp;lt;22&amp;gt;;&lt;br /&gt; rx-gain-db = &amp;lt;0&amp;gt;; /* The real gain is 11dB but this number is included in the reported RSSI value and it has not been in the past so including it now is a change we dont want */&lt;br /&gt; };&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RSSI on Fanstel module with FEM dropped after SDK upgrade</title><link>https://devzone.nordicsemi.com/thread/557803?ContentTypeID=1</link><pubDate>Fri, 02 Jan 2026 10:03:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c3a8f0d2-e209-41c0-bf4c-8ac2b3da408a</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Yes, your pin configuration appears to be correct. Ideally, it would be good&amp;nbsp;if you could measure the CHL and CPS signals to confirm they are being driven to ‘1’ and ‘0’ respectively, but I realise the pads may be difficult to access. Alternatively, you could use the peripheral viewer in VS Code (or a similar tool) to read the GPIO configuration registers to confirm the setup, and also check the serial peripheral interfaces to ensure that none are configured to use the same pins.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RSSI on Fanstel module with FEM dropped after SDK upgrade</title><link>https://devzone.nordicsemi.com/thread/557758?ContentTypeID=1</link><pubDate>Tue, 30 Dec 2025 20:28:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a6b4405a-7cff-4534-9ff9-4ce6cebeb84f</guid><dc:creator>Glen M</dc:creator><description>&lt;p&gt;Yes I think I have those configured correctly with the following code that&amp;#39;s called at powerup:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;#define SKYWORKS_AMPLIFIER_CTX_PIN 17 // GPIO port 0&lt;br /&gt;#define SKYWORKS_AMPLIFIER_CRX_PIN 19 // GPIO port 0&lt;br /&gt;#define SKYWORKS_AMPLIFIER_CPS_PIN 6 // GPIO port 0&lt;br /&gt;#define SKYWORKS_AMPLIFIER_CHL_PIN 8 // GPIO port 0&lt;/p&gt;
&lt;p&gt;m_gpio_port_0 = (struct device *)(device_get_binding(&amp;quot;GPIO_0&amp;quot;));&lt;br /&gt;m_gpio_port_1 = (struct device *)(device_get_binding(&amp;quot;GPIO_1&amp;quot;));&lt;/p&gt;
&lt;p&gt;gpio_pin_configure(m_gpio_port_0, SKYWORKS_AMPLIFIER_CPS_PIN, GPIO_OUTPUT_INACTIVE); // GPIO_OUTPUT_INACTIVE Configures GPIO pin as output and initializes it to a logic 0.&lt;br /&gt;gpio_pin_configure(m_gpio_port_0, SKYWORKS_AMPLIFIER_CHL_PIN, GPIO_OUTPUT_ACTIVE); // GPIO_OUTPUT_ACTIVE Configures GPIO pin as output and initializes it to a logic 1.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RSSI on Fanstel module with FEM dropped after SDK upgrade</title><link>https://devzone.nordicsemi.com/thread/557723?ContentTypeID=1</link><pubDate>Tue, 30 Dec 2025 11:22:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9360f498-a9ed-4073-8b5a-b7c608511ffc</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Hello Glen,&lt;/p&gt;
&lt;p&gt;There are quite many changes between SDK v2.3.0 and v3.1.0, but I haven&amp;#39;t seen anything that should affect the FEM control. Are the pins highlighted below configured by your application to enable the FEM and high output mode (see table 6:&amp;nbsp;&lt;a href="https://www.skyworksinc.com/-/media/SkyWorks/Documents/Products/2201-2300/SKY66112-11_203225P.pdf"&gt;https://www.skyworksinc.com/-/media/SkyWorks/Documents/Products/2201-2300/SKY66112-11_203225P.pdf&lt;/a&gt;)&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/pastedimage1767093638043v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Vidar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>