Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion swiftnav-sys/src/libswiftnav
Submodule libswiftnav updated 84 files
+95 −0 .bazelrc
+6 −0 .github/dependabot.yaml
+0 −11 .github/workflows/auto-cancellation.yaml
+81 −28 .github/workflows/ci.yaml
+3 −3 .gitmodules
+32 −32 BUILD.bazel
+6 −2 CMakeLists.txt
+0 −4 Dockerfile.modern
+45 −13 Jenkinsfile
+4 −4 Makefile
+11 −6 WORKSPACE.bazel
+2 −2 ci-build.sh
+1 −1 cmake/common
+5 −4 include/swiftnav/bits.h
+37 −0 include/swiftnav/correct_iono_tropo.h
+16 −4 include/swiftnav/ephemeris.h
+2 −0 include/swiftnav/geoid_model.h
+13 −0 include/swiftnav/get_unaligned.h
+8 −0 include/swiftnav/gnss_time.h
+5 −5 include/swiftnav/leap_seconds.h
+10 −0 include/swiftnav/macros.h
+39 −0 include/swiftnav/signal.h
+2 −2 scripts/gtx_convert.pl
+2 −2 scripts/leap_seconds_generator.py
+1 −1 scripts/requirements.txt
+29 −1 src/bits.c
+135 −0 src/correct_iono_tropo.c
+35 −0 src/ephemeris.c
+55 −42 src/geoid_model.c
+25 −0 src/geoid_model.h
+13 −0 src/geoid_model_15_minute.c
+2 −2 src/geoid_model_15_minute.inc
+13 −0 src/geoid_model_1_degree.c
+2 −2 src/geoid_model_1_degree.inc
+47 −0 src/gnss_time.c
+1,087 −861 src/signal.c
+3 −1 src/single_epoch_solver.c
+32 −49 tests/CMakeLists.txt
+0 −213 tests/check_almanac.c
+0 −403 tests/check_bits.c
+0 −395 tests/check_coord_system.c
+0 −40 tests/check_edc.c
+0 −218 tests/check_geoid_model.cc
+0 −109 tests/check_glo_map.c
+0 −99 tests/check_gnss_time_cpp.cc
+0 −756 tests/check_linear_algebra.c
+0 −106 tests/check_log.c
+0 −41 tests/check_main.c
+0 −171 tests/check_nav_meas.c
+0 −792 tests/check_pvt.c
+0 −97 tests/check_sid_set.c
+0 −618 tests/check_signal.c
+0 −257 tests/check_subsystem_status_report.c
+0 −35 tests/check_suites.h
+0 −100 tests/check_troposphere.c
+32 −0 tests/check_utils.h
+0 −2 tests/common/CMakeLists.txt
+0 −44 tests/common/check_utils.c
+0 −8 tests/common/check_utils.h
+203 −0 tests/test_almanac.cc
+340 −0 tests/test_bits.cc
+317 −0 tests/test_coord_system.cc
+153 −0 tests/test_correct_iono_tropo.cc
+184 −0 tests/test_data.h
+31 −78 tests/test_decode_glo.cc
+28 −0 tests/test_edc.cc
+408 −379 tests/test_ephemeris.cc
+148 −0 tests/test_geoid_model.cc
+71 −0 tests/test_glo_map.cc
+260 −490 tests/test_gnss_time.cc
+73 −0 tests/test_gnss_time_cpp.cc
+17 −72 tests/test_ionosphere.cc
+713 −0 tests/test_linear_algebra.cc
+75 −0 tests/test_log.cc
+134 −0 tests/test_nav_meas.cc
+489 −0 tests/test_pvt.cc
+76 −108 tests/test_set.cc
+8 −25 tests/test_shm.cc
+69 −0 tests/test_sid_set.cc
+543 −0 tests/test_signal.cc
+238 −0 tests/test_subsystem_status_report.cc
+83 −0 tests/test_troposphere.cc
+0 −1 third_party/check
+1 −0 third_party/googletest
Loading