Add async TCP server foundation

Create InstrumentServer class with asyncio for hosting virtual SCPI
instruments over TCP. Supports registering instruments on specific
ports with port-to-instrument mapping.
This commit is contained in:
2025-05-22 21:32:38 +00:00
parent 9fedc1f851
commit 0f0672dd03
2 changed files with 94 additions and 0 deletions

View File

@@ -3,3 +3,7 @@
Provides virtual instruments backed by a coupled thermal-electrical
physics engine. Used for development and testing without real hardware.
"""
from py_dvt_ate.simulation.tcp_server import InstrumentServer
__all__ = ["InstrumentServer"]