<?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>Floating GPIO configuration</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/126954/floating-gpio-configuration</link><description>Hello, 
 We have a dual-purpose connection in our design where the signal can be either an analog input or a digital output. We have done some testing and can see that we can switch between the two functions to get the desired affect, but it complicates</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 12 Feb 2026 15:28:42 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/126954/floating-gpio-configuration" /><item><title>RE: Floating GPIO configuration</title><link>https://devzone.nordicsemi.com/thread/561042?ContentTypeID=1</link><pubDate>Thu, 12 Feb 2026 15:28:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6a4d424a-0a9d-4636-bd43-1caf1ac6e9ad</guid><dc:creator>Szabolcs</dc:creator><description>&lt;p&gt;Hugh, thank you for your insights.&lt;/p&gt;
&lt;p&gt;Your measurements are consistent with the datasheet values, if we assume the pull-up/down resistors are 15K (11-16 by spec), then on all pins it yields a current of 3V/15K*32=6.4mA, just like you showed.&lt;/p&gt;
&lt;p&gt;The pulling resistors being connected directly to the pin makes sense to me.&amp;nbsp;For example. if you want an open-drain output, you would enable the pull-up resistor while disconnecting the input buffer. I agree that this is actually a mistake in the datasheet, the block diagram should show the connection of the pulling resistors, and the PIN[0].CNF.PULL register should be tied to them, not to the input buffer.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Floating GPIO configuration</title><link>https://devzone.nordicsemi.com/thread/560953?ContentTypeID=1</link><pubDate>Wed, 11 Feb 2026 18:13:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b494df17-e2d4-49bb-b5d1-c22279916eff</guid><dc:creator>hmolesworth</dc:creator><description>&lt;p&gt;I agree with your comments on the drawing, however it is not strictly accurate in the case of the nRF52 series - I haven&amp;#39;t checked the nRF54 yet. I say this as the input pullup/pulldown is shown downwind of the input disconnect but even when the disconnect (nRF52) is open the pullup/pulldown still affects the pin; I have tested this. If the pullup/pulldown is always connected to the pin, then an input FET hi/lo might also always be connected prior to the input disconnect circuit.&lt;/p&gt;
&lt;p&gt;Here are some older results on the nRF52832, with input disconnect and nothing connected to all 32 io pins the current increases to 6.47mA when driving low with pullup enabled and similar when driving high with pulldown enabled.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;All 32 io pins have no external connections; all 32 pins driven identically

 PPK     Measured
 ======  ========
 1.66uA  2.971V with errata workarounds, no i/o
 1.51uA  2.985V no errata workarounds, no i/o
 1.49uA  2.989V (PIN_OUTPUT | DISCONNECT | PULLNONE | FORCE_S0S1 | SENSE_OFF) Drive Low
 1.49uA  2.999V (PIN_OUTPUT | DISCONNECT | PULLDOWN | FORCE_S0S1 | SENSE_OFF) Drive Low
 6.47mA  2.894V (PIN_OUTPUT | DISCONNECT | PULLUP   | FORCE_S0S1 | SENSE_OFF) Drive Low
 6.47mA  2.889V (PIN_OUTPUT | CONNECT    | PULLUP   | FORCE_S0S1 | SENSE_OFF) Drive Low

 1.51uA  2.959V (PIN_OUTPUT | DISCONNECT | PULLNONE | FORCE_S0S1 | SENSE_OFF) Drive High
 6.42mA  2.877V (PIN_OUTPUT | DISCONNECT | PULLDOWN | FORCE_S0S1 | SENSE_OFF) Drive High
 1.53uA  2.938V (PIN_OUTPUT | DISCONNECT | PULLUP   | FORCE_S0S1 | SENSE_OFF) Drive High
 6.47uA  2.889V (PIN_OUTPUT | CONNECT    | PULLUP   | FORCE_S0S1 | SENSE_OFF) Drive High&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;The nRF54 may behave differently, but the datasheet schematic looks&amp;nbsp;similar so my suggestion is to test this. The pullup/pulldown circuit sitting prior to the input disconnect may be irrelevant here, but I would still test for feedthrough by slow ramping&amp;nbsp;input voltages to io pins to be sure; the more pins tested simultaneously the bigger the feedthrough (if any, hopefully none). Of course if oodles of power are available then feedthrough may not really be an issue and can be ignored.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Floating GPIO configuration</title><link>https://devzone.nordicsemi.com/thread/560907?ContentTypeID=1</link><pubDate>Wed, 11 Feb 2026 12:28:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b3894088-69e8-4109-9dd1-b6e3b4b1f3a6</guid><dc:creator>Szabolcs</dc:creator><description>&lt;p&gt;You can see the GPIO block diagram in the nRF54LM20A datasheet:&lt;br /&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/pastedimage1770812401924v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Here, you can see that there is a switch before the input buffer stage, hence the name &amp;quot;Input buffer disconnect&amp;quot;.&amp;nbsp;In this mode, the buffer stage is actually isolated from the GPIO pin. So in this mode, the issue you mentioned is not relevant.&lt;/p&gt;
&lt;p&gt;Unfortunately, we don&amp;#39;t have more detailed information on these switches, but they can be assumed to be &amp;quot;almost-ideal&amp;quot; analog switches.&lt;/p&gt;
&lt;p&gt;If you need to have a pin with very specific characteristic, you could use a tri-state buffer or line driver (for example something from the 74xx series).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Floating GPIO configuration</title><link>https://devzone.nordicsemi.com/thread/560845?ContentTypeID=1</link><pubDate>Tue, 10 Feb 2026 19:58:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:739cef7d-f90a-43f5-aca2-1d1fd28c1fba</guid><dc:creator>hmolesworth</dc:creator><description>&lt;p&gt;&lt;span&gt;&amp;quot;Input buffer disconnect&amp;quot; mode may well do what you require, but I would argue that it would be better to test this on the specific nRF as there is no clear description of where the disconnect is internally physically placed. There is a vanishingly small window somewhere near VDD/2 where&amp;nbsp;slow or floating input feedthrough leakage may occur; this is not leakage into or out of the io pin but instead leakage through internal FETs from internal VDD to internal GND caused by high and low FETs being slightly&amp;nbsp;biased on by an input voltage falling within that window. If input disconnect mode isolates all such FETs then maybe there is no issue, but I don&amp;#39;t see this guaranteed.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;More info here; all semi manufacturers discuss this, this is TI:&amp;nbsp;&lt;a href="https://www.ti.com/lit/an/scba004e/scba004e.pdf"&gt;scba004e.pdf&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Floating GPIO configuration</title><link>https://devzone.nordicsemi.com/thread/560825?ContentTypeID=1</link><pubDate>Tue, 10 Feb 2026 15:35:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6d771eb0-1b81-457b-b3d7-5d055c1f461a</guid><dc:creator>Szabolcs</dc:creator><description>&lt;p&gt;Hi Adam,&lt;/p&gt;
&lt;p&gt;If you configure the GPIO in &amp;quot;Input buffer disconnect&amp;quot; mode, with pull-up/down disabled, you can assume the input impedance to be at least 100 MOhm, with a capacitance of less than 5 pF, not including the pad/trace parasitics. The datasheet does not include these numbers, because they are very high and hard to measure accurately.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>