You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.1 KiB
100 lines
3.1 KiB
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
#include <sched.h>
|
|
#include <sys/time.h>
|
|
#include <sys/cdefs.h>
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <assert.h>
|
|
#include <math.h>
|
|
#include <ctime>
|
|
#include <chrono>
|
|
|
|
#include "messaging.hpp"
|
|
#include "common/util.h"
|
|
#include "common/params.h"
|
|
#include "common/swaglog.h"
|
|
#include "common/timing.h"
|
|
|
|
#include "ublox_msg.h"
|
|
|
|
volatile sig_atomic_t do_exit = 0; // Flag for process exit on signal
|
|
|
|
void set_do_exit(int sig) {
|
|
do_exit = 1;
|
|
}
|
|
|
|
using namespace ublox;
|
|
const long ZMQ_POLL_TIMEOUT = 1000; // In miliseconds
|
|
int ubloxd_main(poll_ubloxraw_msg_func poll_func, send_gps_event_func send_func) {
|
|
LOGW("starting ubloxd");
|
|
signal(SIGINT, (sighandler_t) set_do_exit);
|
|
signal(SIGTERM, (sighandler_t) set_do_exit);
|
|
|
|
UbloxMsgParser parser;
|
|
|
|
SubMaster sm({"ubloxRaw"});
|
|
PubMaster pm({"ubloxGnss", "gpsLocationExternal"});
|
|
|
|
while (!do_exit) {
|
|
if (sm.update(ZMQ_POLL_TIMEOUT) == 0) continue;
|
|
|
|
auto ubloxRaw = sm["ubloxRaw"].getUbloxRaw();
|
|
const uint8_t *data = ubloxRaw.begin();
|
|
size_t len = ubloxRaw.size();
|
|
size_t bytes_consumed = 0;
|
|
while(bytes_consumed < len && !do_exit) {
|
|
size_t bytes_consumed_this_time = 0U;
|
|
if(parser.add_data(data + bytes_consumed, (uint32_t)(len - bytes_consumed), bytes_consumed_this_time)) {
|
|
// New message available
|
|
if(parser.msg_class() == CLASS_NAV) {
|
|
if(parser.msg_id() == MSG_NAV_PVT) {
|
|
//LOGD("MSG_NAV_PVT");
|
|
auto words = parser.gen_solution();
|
|
if(words.size() > 0) {
|
|
auto bytes = words.asBytes();
|
|
pm.send("gpsLocationExternal", bytes.begin(), bytes.size());
|
|
}
|
|
} else
|
|
LOGW("Unknown nav msg id: 0x%02X", parser.msg_id());
|
|
} else if(parser.msg_class() == CLASS_RXM) {
|
|
if(parser.msg_id() == MSG_RXM_RAW) {
|
|
//LOGD("MSG_RXM_RAW");
|
|
auto words = parser.gen_raw();
|
|
if(words.size() > 0) {
|
|
auto bytes = words.asBytes();
|
|
pm.send("ubloxGnss", bytes.begin(), bytes.size());
|
|
}
|
|
} else if(parser.msg_id() == MSG_RXM_SFRBX) {
|
|
//LOGD("MSG_RXM_SFRBX");
|
|
auto words = parser.gen_nav_data();
|
|
if(words.size() > 0) {
|
|
auto bytes = words.asBytes();
|
|
pm.send("ubloxGnss", bytes.begin(), bytes.size());
|
|
}
|
|
} else
|
|
LOGW("Unknown rxm msg id: 0x%02X", parser.msg_id());
|
|
} else if(parser.msg_class() == CLASS_MON) {
|
|
if(parser.msg_id() == MSG_MON_HW) {
|
|
//LOGD("MSG_MON_HW");
|
|
auto words = parser.gen_mon_hw();
|
|
if(words.size() > 0) {
|
|
auto bytes = words.asBytes();
|
|
pm.send("ubloxGnss", bytes.begin(), bytes.size());
|
|
}
|
|
} else {
|
|
LOGW("Unknown mon msg id: 0x%02X", parser.msg_id());
|
|
}
|
|
} else
|
|
LOGW("Unknown msg class: 0x%02X", parser.msg_class());
|
|
parser.reset();
|
|
}
|
|
bytes_consumed += bytes_consumed_this_time;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|