mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-23 02:24:03 +08:00
* laikad update, renaming
* update locationd
* fix naming
* address PR comments
* upsi
* .
* draft to fix replay
* fix process relay to allow no response for messages
* final fix for process replay
* .
* bump cereal
* update process replay ref commit
* reduce wait time
* .
* last ref change
* move laikad helpers to laika
* .
* fix ublox test
* update refs
* add proper qcom replay support
* fix gnss support if both is available
* update refs
* remove left over
* revert laikad msg
* move laika back to master
* init
* fix gps valid flag
* change time
* add gnss to ignore
* remove gps_valid flag
* .
* adopt orientation reset threshold
* .
* update laikad
* .
* fix stanstill KF resets
* test orienation reset count
* update laika
* bump cereal
* fix process replay
* update laika repo
* remove handle gps
* add extra logging for cache
* .
* add more log
* .
* .
* update laika
* dont remove gps code
* inc min satellite count
* update magic vals and add acc drop
* update laika
* upsi
* rem
* bump laika
* use nav and correct
* more fixes
* use sftp
* No more glonass
* Revert "No more glonass"
This reverts commit a76124da50a1e25f423ad1137c7a046e1d57811d.
* nump laika
* back support old ephemeris cache
* add health to ephemeris message
* bump laika
* remove print
* fix laikad tests
* clean
* remove extra log
* bump laika
* inc timeout for plotjuggler build
* rem cache clear
* .
* enable gps after checks
Co-authored-by: Kurt Nistelberger <kurt.nistelberger@gmail.com>
Co-authored-by: Bruce Wayne <harald.the.engineer@gmail.com>
Co-authored-by: Shane Smiskol <shane@smiskol.com>
old-commit-hash: 88423e25df
42 lines
1.3 KiB
C++
Executable File
42 lines
1.3 KiB
C++
Executable File
#include "locationd.h"
|
|
|
|
extern "C" {
|
|
typedef Localizer* Localizer_t;
|
|
|
|
Localizer *localizer_init(bool has_ublox) {
|
|
return new Localizer(has_ublox);
|
|
}
|
|
|
|
void localizer_get_message_bytes(Localizer *localizer, bool inputsOK, bool sensorsOK, bool gpsOK, bool msgValid,
|
|
char *buff, size_t buff_size) {
|
|
MessageBuilder msg_builder;
|
|
kj::ArrayPtr<char> arr = localizer->get_message_bytes(msg_builder, inputsOK, sensorsOK, gpsOK, msgValid).asChars();
|
|
assert(buff_size >= arr.size());
|
|
memcpy(buff, arr.begin(), arr.size());
|
|
}
|
|
|
|
void localizer_handle_msg_bytes(Localizer *localizer, const char *data, size_t size) {
|
|
localizer->handle_msg_bytes(data, size);
|
|
}
|
|
|
|
void get_filter_internals(Localizer *localizer, double *state_buff, double *std_buff){
|
|
Eigen::VectorXd state = localizer->get_state();
|
|
memcpy(state_buff, state.data(), sizeof(double) * state.size());
|
|
Eigen::VectorXd stdev = localizer->get_stdev();
|
|
memcpy(std_buff, stdev.data(), sizeof(double) * stdev.size());
|
|
}
|
|
|
|
bool is_gps_ok(Localizer *localizer){
|
|
return localizer->is_gps_ok();
|
|
}
|
|
|
|
bool are_inputs_ok(Localizer *localizer){
|
|
return localizer->are_inputs_ok();
|
|
}
|
|
|
|
void observation_timings_invalid_reset(Localizer *localizer){
|
|
localizer->observation_timings_invalid_reset();
|
|
}
|
|
|
|
}
|