Skip to content

Commit

Permalink
Bump swiftnav-sys/src/libswiftnav from c96bba3 to 374a792 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jul 24, 2023
1 parent 9131602 commit 0e806f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swiftnav-sys/src/libswiftnav
Submodule libswiftnav updated 73 files
+11 −0 .github/workflows/auto-cancellation.yaml
+68 −34 .github/workflows/ci.yaml
+10 −0 .gitignore
+134 −0 BUILD.bazel
+9 −1 CMakeLists.txt
+1 −1 Dockerfile
+4 −0 Dockerfile.modern
+36 −40 Jenkinsfile
+2 −4 README.md
+32 −0 WORKSPACE
+23 −0 bazel/check.BUILD
+31 −0 bazel/configure_file.bzl
+70 −2 ci-build.sh
+1 −1 cmake/common
+3 −0 include/swiftnav/almanac.h
+0 −1 include/swiftnav/array_tools.h
+2 −0 include/swiftnav/bits.h
+92 −30 include/swiftnav/bitstream.h
+29 −21 include/swiftnav/constants.h
+4 −1 include/swiftnav/ephemeris.h
+0 −1 include/swiftnav/float_equality.h
+0 −1 include/swiftnav/glonass_phase_biases.h
+23 −24 include/swiftnav/gnss_time.h
+65 −0 include/swiftnav/leap_seconds.h
+0 −1 include/swiftnav/linear_algebra.h
+0 −1 include/swiftnav/memcpy_s.h
+6 −0 include/swiftnav/signal.h
+92 −0 include/swiftnav/subsystem_status_report.h
+156 −0 scripts/leap_seconds_generator.py
+1 −0 scripts/requirements.txt
+21 −2 src/almanac.c
+67 −1 src/bits.c
+0 −1 src/coord_system.c
+0 −1 src/decode_glo.c
+65 −10 src/ephemeris.c
+0 −1 src/glo_map.c
+125 −5 src/gnss_time.c
+0 −1 src/ionosphere.c
+0 −1 src/linear_algebra.c
+0 −1 src/logging_common.c
+0 −1 src/memcpy_s.c
+0 −1 src/nav_meas.c
+0 −1 src/set.c
+0 −1 src/shm.c
+0 −1 src/sid_set.c
+10 −10 src/signal.c
+71 −0 src/subsystem_status_report.c
+0 −1 src/troposphere.c
+3 −2 tests/CMakeLists.txt
+1 −1 tests/check_almanac.c
+76 −1 tests/check_bits.c
+1 −1 tests/check_coord_system.c
+1 −1 tests/check_decode_glo.c
+1 −1 tests/check_edc.c
+1 −1 tests/check_ephemeris.c
+0 −1 tests/check_geoid_model.cc
+1 −1 tests/check_glo_map.c
+112 −0 tests/check_gnss_time.c
+30 −3 tests/check_gnss_time_cpp.cc
+1 −1 tests/check_ionosphere.c
+1 −1 tests/check_linear_algebra.c
+1 −0 tests/check_main.c
+1 −1 tests/check_nav_meas.c
+1 −1 tests/check_pvt.c
+1 −1 tests/check_set.c
+1 −1 tests/check_shm.c
+2 −2 tests/check_sid_set.c
+3 −3 tests/check_signal.c
+257 −0 tests/check_subsystem_status_report.c
+1 −0 tests/check_suites.h
+0 −1 tests/check_troposphere.c
+1 −1 tests/common/CMakeLists.txt
+2 −2 tests/common/check_utils.c

0 comments on commit 0e806f8

Please sign in to comment.