Prefer no-squelch rtl_fm startup profile for Morse

This commit is contained in:
Smittix
2026-02-26 12:28:53 +00:00
parent 4560ec1800
commit 99db7f1faf
2 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -379,9 +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' in popen_cmds[0]
assert '-l' not in popen_cmds[0]
assert '-E' in popen_cmds[1] and 'direct2' in popen_cmds[1]
assert '-l' not in popen_cmds[1]
assert '-l' in popen_cmds[1]
stop_resp = client.post('/morse/stop')
assert stop_resp.status_code == 200