I am using the following language on a CR1000 to control an ISCO 3700. This works, but we have been experiencing backwater issues at the site, and would like to stop sampling during these periods. Is there a way to incorporate the backwater language as a conditional statement?
Here is the language to signify backwater:
    If (EDS1_OStg >= EDS1_BdHt ) Then
   AVOID PULSING Vx1
Here is the language we use to control a sampler, and would like the above language incorporated.
    'EDS1 Sampling
    If (EDS1_CFLO >= EDS1_EFI) Then
      ExciteV (Vx1,2500,100000)
     EDS1_SamN = EDS1_SamN +1
   EDS1_CFLO = 0.0
   Delay(0,1,Sec)
   CallTable EDS1_SampleOut
  EndIf 
Thanks.
Dave,
Nest your control logic in an if/then when backwater is NOT present. Something like this:
If (EDS1_OStg < EDS1_BdHt ) Then
    'sampler logic....
    'EDS1 Sampling
       If...
       Endif
Endif
Hope that helps.
Janet