# This is the module register Record Length 0x8020 variable CustSize 0 proc GetCustSize {} { variable CustSize set CustSize [expr [ReadRegister CustomSize] * 8] } proc SetCustSize {} { variable CustSize WriteRegister CustomSize [expr $CustSize/8] } proc DrawCustSize {} { variable Name set html "" append html "

" append html "" append html "" append html "" append html "" append html "" append html "
Acquisition Window Size (samples)" append html "" append html "
" append html "

" return $html }