mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect-gui.git
synced 2025-06-24 05:04:12 +08:00
276 lines
10 KiB
C++
276 lines
10 KiB
C++
#include <stdio.h>
|
||
#include <stdlib.h>
|
||
#include <unistd.h>
|
||
#include <string.h>
|
||
#include "livox_sdk.h"
|
||
|
||
typedef enum {
|
||
kDeviceStateDisconnect = 0,
|
||
kDeviceStateConnect = 1,
|
||
kDeviceStateSampling = 2,
|
||
} DeviceState;
|
||
|
||
typedef struct {
|
||
uint8_t handle;
|
||
DeviceState device_state;
|
||
DeviceInfo info;
|
||
} DeviceItem;
|
||
|
||
DeviceItem devices[kMaxLidarCount];
|
||
int lidar_count = 0;
|
||
|
||
/** 回调函数声明 */
|
||
void OnLidarErrorStatusCallback(livox_status status, uint8_t handle, ErrorMessage *message);
|
||
void GetLidarData(uint8_t handle, LivoxEthPacket *data, uint32_t data_num, void *client_data);
|
||
void OnSampleCallback(livox_status status, uint8_t handle, uint8_t response, void *data);
|
||
void OnCommonCommandCallback(livox_status status, uint8_t handle, uint8_t response, void *data);
|
||
void OnStopSampleCallback(livox_status status, uint8_t handle, uint8_t response, void *data);
|
||
void OnDeviceInfoChange(const DeviceInfo *info, DeviceEvent type);
|
||
void OnDeviceBroadcast(const BroadcastDeviceInfo *info);
|
||
|
||
/** 用于Python的回调函数指针 */
|
||
void (*python_data_callback)(uint8_t, uint32_t *, uint32_t) = NULL;
|
||
void (*python_error_callback)(livox_status, uint8_t, ErrorMessage*) = NULL;
|
||
void (*python_device_change_callback)(const DeviceInfo*, DeviceEvent) = NULL;
|
||
void (*python_device_broadcast_callback)(const BroadcastDeviceInfo*) = NULL;
|
||
void (*python_common_command_callback)(livox_status, uint8_t, uint8_t) = NULL;
|
||
|
||
extern "C" {
|
||
|
||
/** 初始化Livox SDK */
|
||
bool init_sdk() {
|
||
printf("Livox SDK initializing.\n");
|
||
if (!Init()) {
|
||
return false;
|
||
}
|
||
printf("Livox SDK has been initialized.\n");
|
||
LivoxSdkVersion _sdkversion;
|
||
GetLivoxSdkVersion(&_sdkversion);
|
||
printf("Livox SDK version %d.%d.%d .\n", _sdkversion.major, _sdkversion.minor, _sdkversion.patch);
|
||
|
||
memset(devices, 0, sizeof(devices));
|
||
return true;
|
||
}
|
||
|
||
/** 启动设备扫描 */
|
||
bool start_discovery() {
|
||
SetBroadcastCallback(OnDeviceBroadcast);
|
||
SetDeviceStateUpdateCallback(OnDeviceInfoChange);
|
||
|
||
if (!Start()) {
|
||
printf("Failed to start device discovery.\n");
|
||
Uninit();
|
||
return false;
|
||
}
|
||
printf("Started device discovery.\n");
|
||
return true;
|
||
}
|
||
|
||
/** 停止SDK并清理 */
|
||
void stop_sdk() {
|
||
printf("Stopping Livox SDK.\n");
|
||
for (int i = 0; i < kMaxLidarCount; ++i) {
|
||
if (devices[i].device_state == kDeviceStateSampling) {
|
||
LidarStopSampling(devices[i].handle, OnStopSampleCallback, NULL);
|
||
}
|
||
}
|
||
Uninit();
|
||
}
|
||
|
||
int connect(const char *broadcast_code) {
|
||
uint8_t handle = 0;
|
||
livox_status result = AddLidarToConnect(broadcast_code, &handle);
|
||
if (result == kStatusSuccess) {
|
||
/** Set the point cloud data for a specific Livox LiDAR. */
|
||
SetDataCallback(handle, GetLidarData, NULL);
|
||
}
|
||
return result;
|
||
}
|
||
|
||
int start_sampling(uint8_t handle) {
|
||
livox_status result = LidarStartSampling(handle, OnSampleCallback, NULL);
|
||
devices[handle].device_state = kDeviceStateSampling;
|
||
return result;
|
||
}
|
||
|
||
int stop_sampling(uint8_t handle) {
|
||
livox_status result = LidarStopSampling(handle, OnSampleCallback, NULL);
|
||
devices[handle].device_state = kDeviceStateSampling;
|
||
return result;
|
||
}
|
||
|
||
int set_mode(LidarMode mode) {
|
||
return LidarSetMode(devices[0].handle, mode, OnCommonCommandCallback, NULL);
|
||
}
|
||
|
||
/** 注册数据回调函数给Python调用 */
|
||
void register_data_callback(void (*data_callback)(uint8_t handle, uint32_t *data, uint32_t data_num)) {
|
||
python_data_callback = data_callback;
|
||
}
|
||
|
||
/** 注册错误回调函数给Python调用 */
|
||
void register_error_callback(void (*error_callback)(livox_status status, uint8_t handle, ErrorMessage *message)) {
|
||
python_error_callback = error_callback;
|
||
}
|
||
|
||
/** 注册设备状态变化回调给Python调用 */
|
||
void register_device_change_callback(void (*device_change_callback)(const DeviceInfo* info, DeviceEvent type)) {
|
||
python_device_change_callback = device_change_callback;
|
||
}
|
||
|
||
/** 注册设备广播回调给Python调用 */
|
||
void register_device_broadcast_callback(void (*device_broadcast_callback)(const BroadcastDeviceInfo *info)) {
|
||
python_device_broadcast_callback = device_broadcast_callback;
|
||
}
|
||
|
||
/** 注册设备广播回调给Python调用 */
|
||
void register_common_command_callback(void (*common_command_callback)(livox_status status, uint8_t handle, uint8_t response)) {
|
||
python_common_command_callback = common_command_callback;
|
||
}
|
||
|
||
}
|
||
|
||
/** 回调函数的定义 */
|
||
void OnLidarErrorStatusCallback(livox_status status, uint8_t handle, ErrorMessage *message) {
|
||
if (python_error_callback) {
|
||
python_error_callback(status, handle, message);
|
||
}
|
||
}
|
||
|
||
void OnCommonCommandCallback(livox_status status, uint8_t handle, uint8_t response, void *data) {
|
||
if (python_common_command_callback) {
|
||
python_common_command_callback(status, handle, response);
|
||
}
|
||
}
|
||
|
||
void GetLidarData(uint8_t handle, LivoxEthPacket *data, uint32_t data_num, void *client_data) {
|
||
if (data) {
|
||
/** Parsing the timestamp and the point cloud data. */
|
||
uint64_t cur_timestamp = *((uint64_t *)(data->timestamp));
|
||
if(data ->data_type == kCartesian) {
|
||
LivoxRawPoint *p_point_data = (LivoxRawPoint *)data->data;
|
||
}else if ( data ->data_type == kSpherical) {
|
||
LivoxSpherPoint *p_point_data = (LivoxSpherPoint *)data->data;
|
||
}else if ( data ->data_type == kExtendCartesian) {
|
||
LivoxExtendRawPoint *p_point_data = (LivoxExtendRawPoint *)data->data;
|
||
LivoxExtendRawPoint point_array[data_num];
|
||
uint32_t *converted_data = (uint32_t *)malloc(data_num * 4 * sizeof(uint32_t));
|
||
for (uint32_t i = 0; i < data_num; ++i) {
|
||
LivoxExtendRawPoint *point = &p_point_data[i];
|
||
// 将结构体的 x, y, z 放入 uint32_t 数组中
|
||
converted_data[i * 4] = point->x;
|
||
converted_data[i * 4 + 1] = point->y;
|
||
converted_data[i * 4 + 2] = point->z;
|
||
// 将 reflectivity 和 tag 合并成一个 uint32_t(高16位和低16位)
|
||
converted_data[i * 4 + 3] = (uint32_t)(point->reflectivity << 8 | point->tag);
|
||
}
|
||
// 调用 Python 回调函数
|
||
if (python_data_callback) {
|
||
python_data_callback(handle, converted_data, data_num);
|
||
}
|
||
}else if ( data ->data_type == kExtendSpherical) {
|
||
LivoxExtendSpherPoint *p_point_data = (LivoxExtendSpherPoint *)data->data;
|
||
}else if ( data ->data_type == kDualExtendCartesian) {
|
||
LivoxDualExtendRawPoint *p_point_data = (LivoxDualExtendRawPoint *)data->data;
|
||
}else if ( data ->data_type == kDualExtendSpherical) {
|
||
LivoxDualExtendSpherPoint *p_point_data = (LivoxDualExtendSpherPoint *)data->data;
|
||
}else if ( data ->data_type == kImu) {
|
||
LivoxImuPoint *p_point_data = (LivoxImuPoint *)data->data;
|
||
}else if ( data ->data_type == kTripleExtendCartesian) {
|
||
LivoxTripleExtendRawPoint *p_point_data = (LivoxTripleExtendRawPoint *)data->data;
|
||
}else if ( data ->data_type == kTripleExtendSpherical) {
|
||
LivoxTripleExtendSpherPoint *p_point_data = (LivoxTripleExtendSpherPoint *)data->data;
|
||
}
|
||
// printf("data_type %d\n", data->data_type);
|
||
}
|
||
}
|
||
|
||
void OnSampleCallback(livox_status status, uint8_t handle, uint8_t response, void *data) {
|
||
if (status == kStatusSuccess && response != 0) {
|
||
devices[handle].device_state = kDeviceStateConnect;
|
||
} else if (status == kStatusTimeout) {
|
||
devices[handle].device_state = kDeviceStateConnect;
|
||
}
|
||
}
|
||
|
||
void OnStopSampleCallback(livox_status status, uint8_t handle, uint8_t response, void *data) {
|
||
// 停止采样时的回调处理
|
||
}
|
||
|
||
/** Query the firmware version of Livox LiDAR. */
|
||
void OnDeviceInformation(livox_status status, uint8_t handle, DeviceInformationResponse *ack, void *data) {
|
||
if (status != kStatusSuccess) {
|
||
printf("Device Query Informations Failed %d\n", status);
|
||
}
|
||
if (ack) {
|
||
printf("firm ver: %d.%d.%d.%d\n",
|
||
ack->firmware_version[0],
|
||
ack->firmware_version[1],
|
||
ack->firmware_version[2],
|
||
ack->firmware_version[3]);
|
||
}
|
||
}
|
||
|
||
void LidarConnect(const DeviceInfo *info) {
|
||
uint8_t handle = info->handle;
|
||
QueryDeviceInformation(handle, OnDeviceInformation, NULL);
|
||
if (devices[handle].device_state == kDeviceStateDisconnect) {
|
||
devices[handle].device_state = kDeviceStateConnect;
|
||
devices[handle].info = *info;
|
||
}
|
||
}
|
||
|
||
void LidarDisConnect(const DeviceInfo *info) {
|
||
uint8_t handle = info->handle;
|
||
devices[handle].device_state = kDeviceStateDisconnect;
|
||
}
|
||
|
||
void LidarStateChange(const DeviceInfo *info) {
|
||
uint8_t handle = info->handle;
|
||
devices[handle].info = *info;
|
||
}
|
||
|
||
void OnDeviceInfoChange(const DeviceInfo *info, DeviceEvent type) {
|
||
if (info == NULL) {
|
||
return;
|
||
}
|
||
|
||
uint8_t handle = info->handle;
|
||
if (handle >= kMaxLidarCount) {
|
||
return;
|
||
}
|
||
if (type == kEventConnect) {
|
||
LidarConnect(info);
|
||
printf("[WARNING] Lidar sn: [%s] Connect!!!\n", info->broadcast_code);
|
||
} else if (type == kEventDisconnect) {
|
||
LidarDisConnect(info);
|
||
printf("[WARNING] Lidar sn: [%s] Disconnect!!!\n", info->broadcast_code);
|
||
} else if (type == kEventStateChange) {
|
||
LidarStateChange(info);
|
||
printf("[WARNING] Lidar sn: [%s] StateChange!!!\n", info->broadcast_code);
|
||
}
|
||
printf("Device Working State %d\n", devices[handle].info.state);
|
||
if (devices[handle].device_state == kDeviceStateConnect) {
|
||
if (devices[handle].info.state == kLidarStateInit) {
|
||
printf("Device State Change Progress %u\n", devices[handle].info.status.progress);
|
||
} else {
|
||
printf("Device State Error Code 0X%08x\n", devices[handle].info.status.status_code.error_code);
|
||
}
|
||
printf("Device feature %d\n", devices[handle].info.feature);
|
||
SetErrorMessageCallback(handle, OnLidarErrorStatusCallback);
|
||
if (devices[handle].info.state == kLidarStateNormal) {
|
||
LidarStartSampling(handle, OnSampleCallback, NULL);
|
||
devices[handle].device_state = kDeviceStateSampling;
|
||
}
|
||
}
|
||
if (python_device_change_callback) {
|
||
python_device_change_callback(info, type);
|
||
}
|
||
}
|
||
|
||
void OnDeviceBroadcast(const BroadcastDeviceInfo *info) {
|
||
if (python_device_broadcast_callback) {
|
||
python_device_broadcast_callback(info);
|
||
}
|
||
}
|