ttl: fix type error

This commit is contained in:
Sebastien Bourdeauducq 2022-02-13 12:47:53 +08:00
parent 4cd47fa935
commit 2616e1928d
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ class TTLInOut:
rtio_output(self.target_sens, 0)
success = True
try:
while rtio_input_timestamp(now_mu() + int64(self.gate_latency_mu), self.channel) != -1:
while rtio_input_timestamp(now_mu() + int64(self.gate_latency_mu), self.channel) != int64(-1):
success = False
except RTIOOverflow:
success = False