mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-22 10:11:13 +00:00
f965ac74f9
- Extract MAVLinkBridge + 3 private helpers to pymavlink_bridge.py (455 LOC) - Extract MockMAVConnection to mock_mavlink.py (30 LOC) - Replace core/mavlink.py with shim re-exporting all names including _confidence_to_fix_type, _eskf_to_gps_input, _unix_to_gps_time - Update components/mavlink_io/__init__.py with full public surface - 216 tests pass (regression floor maintained) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
443 B
Python
20 lines
443 B
Python
from .protocol import MAVLinkBridgeProtocol
|
|
from .pymavlink_bridge import (
|
|
MAVLinkBridge,
|
|
_PYMAVLINK_AVAILABLE,
|
|
_unix_to_gps_time,
|
|
_confidence_to_fix_type,
|
|
_eskf_to_gps_input,
|
|
)
|
|
from .mock_mavlink import MockMAVConnection
|
|
|
|
__all__ = [
|
|
"MAVLinkBridgeProtocol",
|
|
"MAVLinkBridge",
|
|
"_PYMAVLINK_AVAILABLE",
|
|
"_unix_to_gps_time",
|
|
"_confidence_to_fix_type",
|
|
"_eskf_to_gps_input",
|
|
"MockMAVConnection",
|
|
]
|