Add IQ-capture Morse fallback when rtl_fm has no PCM

This commit is contained in:
Smittix
2026-02-26 13:06:38 +00:00
parent 81e5f5479f
commit e3cf9daaed
3 changed files with 401 additions and 118 deletions

View File

@@ -379,8 +379,9 @@ class TestMorseLifecycleRoutes:
assert start_resp.get_json()['status'] == 'started'
assert len(popen_cmds) >= 2
assert '-E' in popen_cmds[0] and 'direct2' in popen_cmds[0]
assert '-l' not in popen_cmds[0]
assert '-E' in popen_cmds[1] and 'direct2' in popen_cmds[1]
assert '-r' in popen_cmds[0]
assert '-A' in popen_cmds[0]
assert '-E' in popen_cmds[1] and 'direct2' not in popen_cmds[1]
assert '-r' in popen_cmds[1]
assert '-A' in popen_cmds[1]
assert 'dc' in popen_cmds[1]