Set scan=1ms and scans per sample=10 on the counters when SICS starts up.

This commit is contained in:
Ferdi Franceschini
2013-04-09 14:38:39 +10:00
parent 2dc1657d66
commit 278c64b377

View File

@@ -35,6 +35,8 @@ proc ::counter::ic_initialize {} {
# This must be sourced before the hmm_configuration.tcl until we separate the scan setup from the hmm setup # This must be sourced before the hmm_configuration.tcl until we separate the scan setup from the hmm setup
for {set i 0; set n 1} {$i < $isc_numchannels} {incr i; incr n} { for {set i 0; set n 1} {$i < $isc_numchannels} {incr i; incr n} {
MakeCounter bm$n anstomonitor [ params host $isc_monitor_address port [lindex $isc_portlist $i] ] MakeCounter bm$n anstomonitor [ params host $isc_monitor_address port [lindex $isc_portlist $i] ]
bm$n send scan=1
bm$n send sample=10
append bm_list "bm$n " append bm_list "bm$n "
} }
} }