GPIO Pin configuration issue

Hi,  

We are using nRF52832 custom board for our application. 

In this board we have to use P0.05 pin as GPIO Input. But it is continuously showing LOW signal in multimeter also. 

When we remove the power of nRF IC the pin show HIGH. That means the IC making the line to LOW signal.

Parents Reply
  • we are using dev kit device tree and overlay for our custom board. On our custom board, we are not using uart. The gpio pin p0.05 configured on overlay as follows:
    buttons
    { compatible = "gpio-keys";
    button
    _0: button_0{
    gpios
    = <&gpio0 5 GPIO_ACTIVE_HIGH>;
    label
    = "CHARGER";
    status
    = "okay";
    };
    }
    We also tried to configure this pin as adc input pin
    ; but it is also showed the same behavior.

Children
Related