You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
810 B
44 lines
810 B
7 years ago
|
import time
|
||
|
|
||
|
import gex
|
||
|
|
||
|
with gex.Client(gex.TrxRawUSB()) as client:
|
||
|
fcap = gex.FCAP(client, 'fcap')
|
||
|
|
||
|
fcap.stop()
|
||
7 years ago
|
|
||
7 years ago
|
fcap.indirect_start()
|
||
7 years ago
|
#
|
||
|
time.sleep(2)
|
||
|
print(fcap.indirect_read())
|
||
|
|
||
|
# fcap.stop()
|
||
|
# #print(fcap.indirect_burst(3, timeout=20))
|
||
|
|
||
|
# r=fcap.indirect_burst(1000, timeout=5)
|
||
|
# print(r)
|
||
|
# print(r.period_raw)
|
||
|
|
||
|
# fcap.configure(filter=0)
|
||
7 years ago
|
|
||
7 years ago
|
# print(fcap.measure_pulse())
|
||
7 years ago
|
|
||
7 years ago
|
# print(fcap.direct_burst(10))
|
||
|
#
|
||
|
# fcap.direct_start(1000, 0)
|
||
|
# time.sleep(2)
|
||
|
#
|
||
|
# print(fcap.direct_read())
|
||
|
#
|
||
|
# fcap.counter_start()
|
||
|
# time.sleep(1)
|
||
|
# print(fcap.counter_clear())
|
||
|
# time.sleep(1)
|
||
|
# print(fcap.counter_read())
|
||
|
# time.sleep(1)
|
||
|
# print(fcap.counter_clear())
|
||
|
# time.sleep(1)
|
||
|
# print(fcap.counter_clear())
|
||
7 years ago
|
|
||
|
|