FIXUP! update documentation

This commit is contained in:
Hosam-Eldin.mostafa 2025-10-20 21:25:47 +02:00
parent a0996e12c9
commit 4364dc2067
2 changed files with 18 additions and 0 deletions

View File

@ -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__ = [
"config",
"lin",

View File

@ -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 .mock import MockBabyLinInterface