2023-01-26 05:16 PM
How do I change the pin for the u-boot-stm32mp programmer mode at boot up?
Solved! Go to Solution.
2023-01-26 05:19 PM
In the your-board-name-u-boot.dtsi file you can change it at
/ {
* * *
config{
st,stm32prog-gpios = <&gpio0 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
};
};
so search for the st,stm32prog-gpios tag.
2023-01-26 05:19 PM
In the your-board-name-u-boot.dtsi file you can change it at
/ {
* * *
config{
st,stm32prog-gpios = <&gpio0 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
};
};
so search for the st,stm32prog-gpios tag.