FIXUP! update documentation
This commit is contained in:
parent
a0996e12c9
commit
4364dc2067
@ -1,3 +1,12 @@
|
|||||||
|
"""
|
||||||
|
ECU Tests framework package.
|
||||||
|
|
||||||
|
Provides:
|
||||||
|
- config: YAML configuration loader and types
|
||||||
|
- lin: LIN interface abstraction and adapters (mock and BabyLIN)
|
||||||
|
|
||||||
|
Package version is exposed as __version__.
|
||||||
|
"""
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"config",
|
"config",
|
||||||
"lin",
|
"lin",
|
||||||
|
|||||||
@ -1,3 +1,12 @@
|
|||||||
|
"""
|
||||||
|
LIN interface package.
|
||||||
|
|
||||||
|
Exports:
|
||||||
|
- LinInterface, LinFrame: core abstraction and frame type
|
||||||
|
- MockBabyLinInterface: mock implementation for fast, hardware-free tests
|
||||||
|
|
||||||
|
Real hardware adapter (BabyLIN) is available in babylin.py.
|
||||||
|
"""
|
||||||
from .base import LinInterface, LinFrame
|
from .base import LinInterface, LinFrame
|
||||||
from .mock import MockBabyLinInterface
|
from .mock import MockBabyLinInterface
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user