blob: ab61d9eaf2bdce1909a32d686650452ee3853ad5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from public import public
from .base import Target
@public
class SerialTarget(Target):
def write(self, data: bytes):
raise NotImplementedError
def read(self, timeout: int) -> bytes:
raise NotImplementedError
|