autotest: increase time allowed for getting statustexts

frsky is run i9n a thread  - and signficiant speedsup seem to adversely affect it
This commit is contained in:
Peter Barker 2022-07-18 17:58:42 +10:00 committed by Peter Barker
parent 84adb059ed
commit d2caebf39c
1 changed files with 2 additions and 1 deletions

View File

@ -11043,10 +11043,11 @@ switch value'''
received_frsky_texts = []
last_len_received_statustexts = 0
timeout = 7 * self.speedup # it can take a *long* time to get these messages down!
while True:
self.drain_mav()
now = self.get_sim_time_cached()
if now - tstart > 60: # it can take a *long* time to get these messages down!
if now - tstart > timeout:
raise NotAchievedException("Did not get statustext in time")
frsky.update()
data = frsky.get_data(0x5000) # no timestamping on this data, so we can't catch legitimate repeats.