Hi there,
I'm using the CR3000 in burst mode, to measure a single ended voltage in burst mode. I'm using the following code (which was written for me). My question is, simply, what rate am I actually sampling at? Does burst mode log at the maximum time frequency that the logger can use?
'CR3000
Public SEVolt(2)
Public Time(9)
Public Trigger As Boolean
Dim i
Units SEVolt=mV
DataTable(Burst,True,20000)
Sample(2,SEVolt(),FP2)
EndTable
Sub Burst
Do Until i=1000
i=i+1
VoltSe(SEVolt(),2,mV1000,1,False,200,250,1.0,0.0)
CallTable(Burst)
Loop
EndSub
'Main Program
BeginProg
Scan(1,Sec,1,0)
If Trigger = True Then
Call Burst
EndIf
If i=1000 Then
i=0
Trigger=False
EndIf
NextScan
EndProg
Kind Regards,
Richard.