Hi,
I want to configure P1.02 and P2.06 as normal GPIO for my nrf54l15 custom board. For this I have added the following in my .overlay file
/ {
gpio_keys {
compatible = "gpio-leds";
button1: button_1 {
gpios = <&gpio1 3 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
label = "BUTTON_1";
};
button2: button_2 {
gpios = <&gpio2 6 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
label = "BUTTON_2";
};
};
};
From https://devzone.nordicsemi.com/f/nordic-q-a/121530/nrf-connect-2-91sdk-nrf54l15-p1-2-p1-3-iic-when-nrf-connect-2-91sdk-and-nrf54l15-are-configured-with-p1-2-and-p1-3-as-iic-there-is-no-signal-output/535791 reference, I tried adding
&uicr {
nfct-pins-as-gpios;
};
to make P1.03 a normal GPIO, but it also didn't work.
How to make P1.03 and P2.06 work as normal GPIO???
Thanks,
Payal