We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6ea321 commit f388a11Copy full SHA for f388a11
1 file changed
variants/arduino_uno_q_stm32u585xx/flash_sketch.cfg
@@ -2,16 +2,26 @@
2
# SPDX-License-Identifier: Apache-2.0
3
4
reset_config srst_only srst_nogate srst_push_pull connect_assert_srst
5
+if {$::tcl_platform(platform) eq "windows"} {
6
+ set null_device NUL
7
+} else {
8
+ set null_device /dev/null
9
+}
10
init
11
reset
12
halt
13
flash info 0
14
+log_output $null_device
15
if {[catch {flash verify_image ${filename0}}] != 0} {
16
+ log_output default
17
flash write_image erase ${filename0}
18
}
19
20
if {[catch {flash verify_image ${filename1} 0x8100000 bin}] != 0} {
21
22
flash write_image erase ${filename1} 0x8100000 bin
23
24
+log_output default
25
26
sleep 100
27
mww 0x40036400 0xCAFFEEEE
0 commit comments