mirror of
https://github.com/mikecarper/MeshCore.git
synced 2026-09-13 21:15:32 +00:00
Expose the Full Companion terminal over TCP and add an authenticated, replay-resistant host command service with documented CPU temperature, reboot, and allowlisted program examples.\n\nImprove LoRa OTA diagnostics and persistent CLI handling, reduce clock correction drift to ten minutes, and make mOTA stream flush behavior an explicit transport policy with regression coverage.
9 lines
192 B
Python
Executable File
9 lines
192 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Compatibility entry point for the expanded MeshCore host CLI service."""
|
|
|
|
from host_cli_service import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|