How to change the pin that is used for the u-boot programming mode
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-01-26 5:16 PM
How do I change the pin for the u-boot-stm32mp programmer mode at boot up?
Solved! Go to Solution.
Labels:
- Labels:
-
OpenSTLinux
-
STM32MP15 Lines
This discussion is locked. Please start a new topic to ask your question.
1 ACCEPTED SOLUTION
Accepted Solutions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-01-26 5: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.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-01-26 5: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.
