You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix logic error in offline node (ros) and interval imu stats compute (core) (#29)
* cleaner error messages and log parsed imu and lidar frames for ros
* patch rviz config to change the global frame if a different odom frame is used
* revert offline node bag and buffer completion handling logic
* cannot compute accel mag variance if imu count is 1. modify the check preventing divide by 0 errors
* remove python/config/default.yaml since --dump_config does the same job
* bump version to v0.1.1 and update python readme slightly
We provide a `colcon.pkg`[file](colcon.pkg) which defines default values for some CMake arguments. Details from [build.md](../docs/build.md) apply here, but most importantly we have `RKO_LIO_FETCH_CONTENT_DEPS=ON` by default. This option handles our optional dependencies automatically.
19
+
We provide a `colcon.pkg`[file](colcon.pkg) which defines a default CMake configuration.
20
+
Details from [build.md](../docs/build.md) apply here, but most importantly we have `CMAKE_BUILD_TYPE=Release` and `RKO_LIO_FETCH_CONTENT_DEPS=ON` by default.
21
+
The last option handles our optional dependencies automatically.
20
22
21
-
In case you'd like to provide our optional dependencies yourself, either modify `colcon.pkg`or override those CMake flags when invoking colcon, for example, by
23
+
In case you'd like to change the build type or provide our optional dependencies yourself, please modify `colcon.pkg`manually.
> I'd earlier assumed one could override colcon.pkg arguments via --cmake-args when invoking colcon, but this doesn't seem to be the case. If anyone knows a fix, please open an issue or PR!
26
26
27
-
Also consider using `Ninja` as a generator to speed up builds instead of `Make`. If you do use Make, make sure (pun intended) to parallelize the build.
27
+
Also consider using `Ninja` as a generator to speed up builds instead of `Make`.
28
+
If you do use Make, make sure (pun intended) to parallelize the build.
0 commit comments