InstrumentServer is a general-purpose SCPI-over-TCP server that can host any device implementing the SCPIDevice protocol (process method). Moving it from simulation/ to instruments/transport/ reflects this: - simulation package now depends on instruments package - InstrumentServer can host both virtual and real instrument adapters - Added SCPIDevice Protocol for type-safe device registration
12 lines
367 B
Python
12 lines
367 B
Python
"""Physics simulation package.
|
|
|
|
Provides virtual instruments backed by a coupled thermal-electrical
|
|
physics engine. Used for development and testing without real hardware.
|
|
|
|
Note: InstrumentServer has moved to py_dvt_ate.instruments.transport
|
|
"""
|
|
|
|
from py_dvt_ate.simulation.server import ServerConfig, SimulationServer
|
|
|
|
__all__ = ["ServerConfig", "SimulationServer"]
|