-
Notifications
You must be signed in to change notification settings - Fork 802
Expand file tree
/
Copy pathmodule.py
More file actions
104 lines (85 loc) · 3.25 KB
/
Copy pathmodule.py
File metadata and controls
104 lines (85 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Copyright 2026 Dimensional Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Python NativeModule wrapper for the C++ Livox Mid-360 driver.
Usage::
from dimos.hardware.sensors.lidar.livox.module import Mid360
from dimos.core.coordination.blueprints import autoconnect
from dimos.core.coordination.module_coordinator import ModuleCoordinator
ModuleCoordinator.build(autoconnect(
Mid360.blueprint(host_ip="192.168.1.5"),
SomeConsumer.blueprint(),
)).loop()
"""
from __future__ import annotations
from typing import TYPE_CHECKING
from dimos.core.core import rpc
from dimos.core.native_module import NativeModule, NativeModuleConfig
from dimos.core.stream import Out
from dimos.hardware.sensors.lidar.livox.ports import (
SDK_CMD_DATA_PORT,
SDK_HOST_CMD_DATA_PORT,
SDK_HOST_IMU_DATA_PORT,
SDK_HOST_LOG_DATA_PORT,
SDK_HOST_POINT_DATA_PORT,
SDK_HOST_PUSH_MSG_PORT,
SDK_IMU_DATA_PORT,
SDK_LOG_DATA_PORT,
SDK_POINT_DATA_PORT,
SDK_PUSH_MSG_PORT,
)
from dimos.msgs.sensor_msgs.Imu import Imu
from dimos.msgs.sensor_msgs.PointCloud2 import PointCloud2
from dimos.spec import perception
class Mid360Config(NativeModuleConfig):
"""Config for the C++ Mid-360 native module."""
cwd: str | None = "cpp"
executable: str = "result/bin/mid360_native"
build_command: str | None = "nix build .#mid360_native"
# The mid360 binary emits [DIMOS_NATIVE_READY] after Livox SDK is up.
ready_timeout_sec: float = 15.0
host_ip: str = "192.168.1.5"
lidar_ip: str = "192.168.1.155"
frequency: float = 10.0
enable_imu: bool = True
frame_id: str = "lidar_link"
imu_frame_id: str = "imu_link"
# SDK port configuration (see livox/ports.py for defaults)
cmd_data_port: int = SDK_CMD_DATA_PORT
push_msg_port: int = SDK_PUSH_MSG_PORT
point_data_port: int = SDK_POINT_DATA_PORT
imu_data_port: int = SDK_IMU_DATA_PORT
log_data_port: int = SDK_LOG_DATA_PORT
host_cmd_data_port: int = SDK_HOST_CMD_DATA_PORT
host_push_msg_port: int = SDK_HOST_PUSH_MSG_PORT
host_point_data_port: int = SDK_HOST_POINT_DATA_PORT
host_imu_data_port: int = SDK_HOST_IMU_DATA_PORT
host_log_data_port: int = SDK_HOST_LOG_DATA_PORT
class Mid360(NativeModule, perception.Lidar, perception.IMU):
"""Livox Mid-360 LiDAR module backed by a native C++ binary.
Ports:
lidar (Out[PointCloud2]): Point cloud frames at configured frequency.
imu (Out[Imu]): IMU data at ~200 Hz (if enabled).
"""
config: Mid360Config
lidar: Out[PointCloud2]
imu: Out[Imu]
@rpc
def start(self) -> None:
super().start()
@rpc
def stop(self) -> None:
super().stop()
# Verify protocol port compliance (mypy will flag missing ports)
if TYPE_CHECKING:
Mid360()