8 Commits

Author SHA1 Message Date
livox 9306596a2b fix: wakeup pipe create failed 2021-09-06 10:52:21 +08:00
livox 05cc408e54 Merge pull request #110 from kamiccolo/master
fix: typo in definitions and command_impl mircrosecond -> microsecond
2021-07-16 18:35:19 +08:00
livox d7417a39e9 Update README_CN.md 2021-06-01 10:38:47 +08:00
livox 14bf8488fe Update README.md
update support email to cs@livoxtech.com
2021-05-26 17:13:00 +08:00
Livox-SDK ed40a6e900 fix: retry to query device info when command timeout 2021-04-20 12:20:54 +08:00
Livox-SDK b08ee601c7 fix:descriptor remove failed on MacOS 2021-04-20 12:18:48 +08:00
Livox-SDK 94a0c7674a fix: poll compile error 2021-04-20 12:16:38 +08:00
Kamiccolo 2168e7f383 fix: typo in definitions and command_impl mircrosecond -> microsecond 2021-03-16 13:21:58 +02:00
9 changed files with 75 additions and 33 deletions
+1 -1
View File
@@ -233,5 +233,5 @@ Here is the example:
# 5 Support # 5 Support
You can get support from Livox with the following methods: You can get support from Livox with the following methods:
* Send email to dev@livoxtech.com with a clear description of your problem and your setup * Send email to cs@livoxtech.com with a clear description of your problem and your setup
* Github Issues * Github Issues
+1 -1
View File
@@ -234,5 +234,5 @@ char broadcast_code_list[kMaxLidarCount][kBroadcastCodeSize] = {
# 5 支持 # 5 支持
你可以通过以下方式获取 Livox 的技术支持 : 你可以通过以下方式获取 Livox 的技术支持 :
* 发送邮件到 dev@livoxtech.com 描述清楚问题和使用场景 * 发送邮件到 cs@livoxtech.com 描述清楚问题和使用场景
* Github Issues * Github Issues
+1 -1
View File
@@ -41,7 +41,7 @@
#define HAVE_KQUEUE 1 #define HAVE_KQUEUE 1
#else #else
#include <sys/poll.h> #include <sys/poll.h>
#define HAVE POLL 1 #define HAVE_POLL 1
#endif #endif
#endif // CONFIG_H_ #endif // CONFIG_H_
+1 -1
View File
@@ -643,7 +643,7 @@ typedef struct {
uint8_t month; uint8_t month;
uint8_t day; uint8_t day;
uint8_t hour; uint8_t hour;
uint32_t mircrosecond; uint32_t microsecond;
} LidarSetUtcSyncTimeRequest; } LidarSetUtcSyncTimeRequest;
/** /**
@@ -83,22 +83,27 @@ bool MultipleIOKqueue::PollSetAdd(PollFd poll_fd) {
bool MultipleIOKqueue::PollSetRemove(PollFd poll_fd) { bool MultipleIOKqueue::PollSetRemove(PollFd poll_fd) {
int fd = poll_fd.fd; int fd = poll_fd.fd;
bool result = true;
if (descriptors_.find(fd) != descriptors_.end()) { if (descriptors_.find(fd) != descriptors_.end()) {
if (descriptors_[fd].event & READBLE_EVENT) { do {
EV_SET(&kevent_, fd, EVFILT_READ, EV_DELETE, 0, 0, NULL); if (descriptors_[fd].event & READBLE_EVENT) {
if (kevent(kqueue_fd_, &kevent_, 1, nullptr, 0, nullptr) == -1) { EV_SET(&kevent_, fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
return false; if (kevent(kqueue_fd_, &kevent_, 1, nullptr, 0, nullptr) == -1) {
result = false;
break;
}
} }
} if (descriptors_[fd].event & WRITABLE_EVENT) {
if (descriptors_[fd].event & WRITABLE_EVENT) { EV_SET(&kevent_, fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
EV_SET(&kevent_, fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL); if (kevent(kqueue_fd_, &kevent_, 1, nullptr, 0, nullptr) == -1) {
if (kevent(kqueue_fd_, &kevent_, 1, nullptr, 0, nullptr) == -1) { result = false;
return false; break;
}
} }
} } while(0);
descriptors_.erase(fd); descriptors_.erase(fd);
} }
return true; return result;
} }
void MultipleIOKqueue::Poll(int time_out) { void MultipleIOKqueue::Poll(int time_out) {
@@ -93,10 +93,10 @@ void MultipleIOPoll:: Poll(int time_out) {
for (int i = 0; i < pollset_num_; i++) { for (int i = 0; i < pollset_num_; i++) {
FdEvent fd_event = NONE_EVENT; FdEvent fd_event = NONE_EVENT;
if (pollset_[i].revents & POLLIN) { if (pollset_[i].revents & POLLIN) {
fd_event = | READBLE_EVENT; fd_event |= READBLE_EVENT;
} }
if (pollset_[i].revents & POLLOUT) { if (pollset_[i].revents & POLLOUT) {
fd_event = | WRITABLE_EVENT; fd_event |= WRITABLE_EVENT;
} }
int fd = pollset_[i].fd; int fd = pollset_[i].fd;
if (descriptors_.find(fd) != descriptors_.end()) { if (descriptors_.find(fd) != descriptors_.end()) {
+28 -15
View File
@@ -67,30 +67,43 @@ bool WakeUpPipe::PipeDestroy() {
} }
bool WakeUpPipe::PipeCreate() { bool WakeUpPipe::PipeCreate() {
bool status = false;
//in filedes[0] //in filedes[0]
//out filedes[1] //out filedes[1]
int filedes[2]; int filedes[2]= {};
if (pipe(filedes) == -1) { if (pipe(filedes) == -1) {
return false; return false;
} }
do {
int flags = 0;
if ((flags = fcntl(filedes[0], F_GETFD)) == -1) {
break;
}
int flags = 0; flags |= FD_CLOEXEC;
if ((flags = fcntl(filedes[0], F_GETFL|O_NONBLOCK)) == -1) { if (fcntl(filedes[0], F_SETFD, flags) == -1) {
return false; break;
} }
flags |= FD_CLOEXEC; flags = 0;
if (fcntl(filedes[0], F_SETFL, flags) == -1) { if ((flags = fcntl(filedes[1], F_GETFD)) == -1) {
return false; break;
} }
flags = 0; flags |= FD_CLOEXEC;
if ((flags = fcntl(filedes[1], F_GETFD)) == -1) { if (fcntl(filedes[1], F_SETFD, flags) == -1) {
return false; break;
} }
status = true;
} while(0);
flags |= FD_CLOEXEC; if (!status) {
if (fcntl(filedes[1], F_SETFD, flags) == -1) { if (filedes[0] > 0) {
close(filedes[0]);
}
if (filedes[1] > 0) {
close(filedes[1]);
}
return false; return false;
} }
pipe_out_ = filedes[0]; pipe_out_ = filedes[0];
@@ -209,7 +209,7 @@ bool ParseRmcTime(const char* rmc, uint16_t rmc_len, LidarSetUtcSyncTimeRequest*
} }
utc_time_req->hour = hour; utc_time_req->hour = hour;
utc_time_req->mircrosecond = (minute * 60 * 1000 + second * 1000) * 1000; utc_time_req->microsecond = (minute * 60 * 1000 + second * 1000) * 1000;
return true; return true;
} }
+24
View File
@@ -160,6 +160,18 @@ void DeviceManager::HubLidarInfomationCallback(livox_status status, uint8_t, Hub
if (connected_cb_) { if (connected_cb_) {
connected_cb_(&(devices_[kHubDefaultHandle].info), kEventHubConnectionChange); connected_cb_(&(devices_[kHubDefaultHandle].info), kEventHubConnectionChange);
} }
} else if (status == kStatusTimeout) {
LOG_WARN("Query lidars information Timeout.");
if (IsDeviceConnected(kHubDefaultHandle)) {
LOG_INFO("Retry to query lidars information.");
command_handler().SendCommand(kHubDefaultHandle,
kCommandSetHub,
kCommandIDHubQueryLidarInformation,
NULL,
0,
MakeCommandCallback<DeviceManager, HubQueryLidarInformationResponse>(
this, &DeviceManager::HubLidarInfomationCallback));
}
} else { } else {
LOG_ERROR("Failed to query lidars information connected to hub."); LOG_ERROR("Failed to query lidars information connected to hub.");
} }
@@ -178,6 +190,18 @@ void DeviceManager::QueryDeviceInformationCallback(livox_status status, uint8_t
if (connected_cb_) { if (connected_cb_) {
connected_cb_(&devices_[handle].info, kEventConnect); connected_cb_(&devices_[handle].info, kEventConnect);
} }
} else if (status == kStatusTimeout) {
LOG_WARN("Query lidar information Timeout.");
if (IsDeviceConnected(handle)) {
LOG_INFO("Retry to query lidar information.");
command_handler().SendCommand(handle,
kCommandSetGeneral,
kCommandIDGeneralDeviceInfo,
NULL,
0,
MakeCommandCallback<DeviceManager, DeviceInformationResponse>(
this, &DeviceManager::QueryDeviceInformationCallback));
}
} else { } else {
LOG_ERROR("Failed to query lidar information."); LOG_ERROR("Failed to query lidar information.");
} }