You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
334 B
11 lines
334 B
2 months ago
|
# Shared openocd script helpers
|
||
|
|
||
|
# put things like "hla_serial 'asdfadfa'" in openocd.<board>.local.cfg to support
|
||
|
# multiple simultaneously connected boards.
|
||
|
proc optional_local { LOCAL_FILE } {
|
||
|
if { [ file exists $LOCAL_FILE ] } {
|
||
|
puts "Loading custom local settings from $LOCAL_FILE"
|
||
|
source $LOCAL_FILE
|
||
|
}
|
||
|
}
|