<?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>GPIO pullup</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/44109/gpio-pullup</link><description>Good day! 
 Thank you for your consideration of my problem! The system is an nRF52832 utilized as a motor driver of a small 2W high rpm maxon motor. The system performs as expected but am having some difficulty with the pullups on the hall sensors which</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 26 Feb 2019 20:26:41 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/44109/gpio-pullup" /><item><title>RE: GPIO pullup</title><link>https://devzone.nordicsemi.com/thread/173122?ContentTypeID=1</link><pubDate>Tue, 26 Feb 2019 20:26:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:df77aa21-4988-471e-8525-e1aaba1587c4</guid><dc:creator>Cy</dc:creator><description>&lt;p&gt;Where is this enum located? I do not see it in either nrf_drv_gpiote.h or .c, thank you for your quick and accurate response.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GPIO pullup</title><link>https://devzone.nordicsemi.com/thread/172968?ContentTypeID=1</link><pubDate>Tue, 26 Feb 2019 09:30:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e8f8eb08-eb45-4931-b122-b115c1029183</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
[quote user=""]&lt;span&gt;in_configII.&lt;/span&gt;&lt;span&gt;pull&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;true&lt;/span&gt;&lt;span&gt;;&lt;/span&gt;[/quote]
&lt;p&gt;This one should be equal to this enum:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;typedef enum
{
    NRF_GPIO_PIN_NOPULL   = GPIO_PIN_CNF_PULL_Disabled, ///&amp;lt;  Pin pull-up resistor disabled.
    NRF_GPIO_PIN_PULLDOWN = GPIO_PIN_CNF_PULL_Pulldown, ///&amp;lt;  Pin pull-down resistor enabled.
    NRF_GPIO_PIN_PULLUP   = GPIO_PIN_CNF_PULL_Pullup,   ///&amp;lt;  Pin pull-up resistor enabled.
} nrf_gpio_pin_pull_t;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Setting it to true (1) will resolve to PIN_PULLDOWN. Could you try setting it to NRF_GPIO_PIN_PULLUP and see if it works better?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Håkon&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>