Source code for labgrid.resource.serialport

import attr

from ..factory import target_factory
from .common import Resource, NetworkResource
from .base import SerialPort


@target_factory.reg_resource
@attr.s
[docs]class RawSerialPort(SerialPort, Resource): def __attrs_post_init__(self): super().__attrs_post_init__() if self.port is None: ValueError("RawSerialPort must be configured with a port")
# This does not derive from SerialPort because it is not directly accessible @target_factory.reg_resource @attr.s
[docs]class NetworkSerialPort(NetworkResource): port = attr.ib(validator=attr.validators.instance_of(int)) speed = attr.ib(default=115200, validator=attr.validators.instance_of(int))