refactored heavily

This commit is contained in:
2026-05-17 17:00:48 +02:00
parent deee78e2d5
commit dc05be751b
11 changed files with 685 additions and 638 deletions
+13
View File
@@ -0,0 +1,13 @@
# ---------------------------------------------------------------------------
# Transport-Abstraktionen
# ---------------------------------------------------------------------------
class GnssTransport:
def read(self, n: int) -> bytes:
raise NotImplementedError
def write(self, data: bytes) -> None:
raise NotImplementedError
def close(self) -> None:
raise NotImplementedError