DTR and RTS signal #1881
-
Hi community, However, by adding these line, DTR and RST wouldn't change. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Hi, The disableDTR/RTS does not enable the signal during the programming but prevents Serial Monitor from asserting the control signals when that board is selected, that's all. Programming via UART is manage by the STM32CubeProgrammer. Looking at the builtin bootloader specification, the UART does not use the DTR/RTS. |
Beta Was this translation helpful? Give feedback.
-
and last finally I need to do this: ${STM32CP_CLI} -c port=${PORT} rts=low dtr=low (I need a wait time for the board to come in boot mode driving by RTS signal) |
Beta Was this translation helpful? Give feedback.
and last finally I need to do this:
${STM32CP_CLI} -c port=${PORT} rts=low dtr=low
sleep 1
${STM32CP_CLI} -c port=${PORT} rts=low dtr=low ${MODE} ${ERASE:+"-e all"} -q -d "${FILEPATH}" "${ADDRESS}" -s "${ADDRESS}" "${OPTS}"
(I need a wait time for the board to come in boot mode driving by RTS signal)