Files
RFG_stm32_ADC_receiver_GUI/RFG_ADC_dataplotter.py
2026-03-10 14:50:58 +03:00

9 lines
187 B
Python

#!/usr/bin/env python3
"""Backward-compatible launcher for the refactored dataplotter."""
from rfg_adc_plotter.main import main
if __name__ == "__main__":
raise SystemExit(main())