Remove superfluous trailing white space from TCL files
This commit is contained in:
@@ -13,17 +13,17 @@ proc filecounts_log {fname txt} {
|
||||
|
||||
proc thresholdscan {minVoltage maxVoltage stepVoltage minBMThreshold manBMThreshold stepBMThreshold scantime} {
|
||||
|
||||
# following is used to obtain an optimal BM threshold
|
||||
# following is used to obtain an optimal BM threshold
|
||||
set fileCounts ../log/bmcounts.log
|
||||
set fileCountsDiff ../log/bmcountsdiff.log
|
||||
|
||||
variable curCount
|
||||
|
||||
|
||||
set fd [open $fileCounts w]
|
||||
close $fd
|
||||
set fd [open $fileCountsDiff w]
|
||||
close $fd
|
||||
|
||||
|
||||
set txt ""
|
||||
for {set thres $minBMThreshold} {$thres <= $manBMThreshold} {incr thres $stepBMThreshold} {
|
||||
lappend txt $thres
|
||||
@@ -51,8 +51,8 @@ proc thresholdscan {minVoltage maxVoltage stepVoltage minBMThreshold manBMThresh
|
||||
lappend diff [expr [lindex $curCount $ind]-[lindex $curCount [expr $ind-1]]]
|
||||
}
|
||||
set txt "$vol : $diff"
|
||||
filecounts_log $fileCountsDiff $txt
|
||||
|
||||
filecounts_log $fileCountsDiff $txt
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user