Adjustment to dashboard style and 500 error

This commit is contained in:
Marc
2026-01-23 16:00:13 -06:00
parent f724421ce7
commit 57d448c003
4 changed files with 886 additions and 420 deletions

View File

@@ -178,17 +178,17 @@ class RTLSDRCommandBuilder(CommandBuilder):
cmd = [
'AIS-catcher',
'-d', str(device.index),
f'-d:{device.index}', # Device index (colon format required)
'-S', str(tcp_port), # TCP server with JSON output
'-o', '5', # JSON output format
'-q', # Quiet mode (less console output)
]
if gain is not None and gain > 0:
cmd.extend(['-gr', 'tuner', str(int(gain))])
cmd.extend(['-gr', 'TUNER', str(int(gain))])
if bias_t:
cmd.extend(['-gr', 'biastee', '1'])
cmd.extend(['-gr', 'BIASTEE', 'on'])
return cmd