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
346 B
11 lines
346 B
# Copyright (c) 2022 Tokita, Hiroshi <tokita.hiroshi@gmail.com> |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
# Checking and set 'adapter speed'. |
|
# Set the adaptor speed, if unset, and given as an argument. |
|
proc set_adapter_speed_if_not_set { speed } { |
|
puts "checking adapter speed..." |
|
if { [catch {adapter speed} ret] } { |
|
adapter speed $speed |
|
} |
|
}
|
|
|