-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stm32: nucleo_g474re: reflash board successively with pyocd #23230
Conversation
string | ||
default "stm32g474xx" | ||
|
||
config NUM_IRQS | ||
int | ||
default 102 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's split this is a dedicated commit (same PR could be used).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done into 13c405dda1e2f443a592a5464120fdf04cddbf84 and 3611b5da65c826dd2d62ac3d2517f316a0670040
separate in 2 commits |
Reflash the nucleo_g474re successively Signed-off-by: Francois Ramu <francois.ramu@st.com>
This patch aligns the Kconfig.defconfig.stm32g474re to the Kconfig.defconfig.stm32g431rb Signed-off-by: Francois Ramu <francois.ramu@st.com>
adding a comment in boards/arm/nucleo_g474re/board.cmake |
Pyocd couldn't flash the nucleo_g474re board with the target stm32g474retx (issue zephyrproject-rtos#23351). Therefore PR zephyrproject-rtos#23230 introduced a workaround changing the target to stm32g474rbtx. In the meantime this issue was resolved, therefore revert the workaround. Signed-off-by: Thomas Stranger <thomas.stranger@outlook.com>
Pyocd couldn't flash the nucleo_g474re board with the target stm32g474retx (issue #23351). Therefore PR #23230 introduced a workaround changing the target to stm32g474rbtx. In the meantime this issue was resolved, therefore revert the workaround. Signed-off-by: Thomas Stranger <thomas.stranger@outlook.com>
It happens that the nucleo_g474re board cannot be flashed a second time and reboot with pyocd.
(copy binary to the target board is still functional)
This patch changes the board_runner_args(pyocd "--target=stm32g474rbtx") in the board.cmake
Use west flash to program the target board /zephyr/boards/arm/nucleo_g474re
Signed-off-by: Francois Ramu francois.ramu@st.com
Fixes #23351