sn9000 support

This commit is contained in:
AYZEN
2026-05-20 16:20:34 +03:00
parent ae7ea9f1f9
commit 5b480f1b55
18 changed files with 854 additions and 66 deletions
@@ -312,10 +312,10 @@ class AppWindowBscanPlotMixin:
return display_key
def _requested_bscan_display_key(self) -> tuple[int, int] | None:
"""Return the multi-device B-scan display combo requested by the GUI."""
"""Return the matrix-radar B-scan display combo requested by the GUI."""
if not (
hasattr(self, "_is_multi_device_model_selected")
and self._is_multi_device_model_selected()
hasattr(self, "_is_matrix_radar_model_selected")
and self._is_matrix_radar_model_selected()
and hasattr(self, "_single_combo_input")
and hasattr(self, "_single_combo_output")
):