Skip to content

Commit

Permalink
Bump zenoh-pico from 24b66a2 to a24f7c1
Browse files Browse the repository at this point in the history
Bumps [zenoh-pico](https://github.com/eclipse-zenoh/zenoh-pico) from `24b66a2` to `a24f7c1`.
- [Release notes](https://github.com/eclipse-zenoh/zenoh-pico/releases)
- [Commits](eclipse-zenoh/zenoh-pico@24b66a2...a24f7c1)

---
updated-dependencies:
- dependency-name: zenoh-pico
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 30, 2024
1 parent 2ddc5bf commit 36800c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zenoh-pico
Submodule zenoh-pico updated 70 files
+24 −1 .github/workflows/ci.yml
+2 −0 .github/workflows/rpi_pico.yaml
+6 −0 CMakeLists.txt
+1 −1 include/zenoh-pico/api/liveliness.h
+21 −20 include/zenoh-pico/collections/list.h
+67 −0 include/zenoh-pico/collections/lru_cache.h
+1 −0 include/zenoh-pico/collections/string.h
+7 −1 include/zenoh-pico/config.h
+6 −0 include/zenoh-pico/config.h.in
+2 −2 include/zenoh-pico/link/endpoint.h
+2 −2 include/zenoh-pico/link/link.h
+2 −2 include/zenoh-pico/net/primitives.h
+2 −2 include/zenoh-pico/net/query.h
+42 −4 include/zenoh-pico/net/session.h
+1 −1 include/zenoh-pico/protocol/core.h
+2 −0 include/zenoh-pico/protocol/definitions/network.h
+5 −6 include/zenoh-pico/protocol/keyexpr.h
+1 −0 include/zenoh-pico/session/interest.h
+10 −2 include/zenoh-pico/session/queryable.h
+1 −1 include/zenoh-pico/session/resource.h
+6 −2 include/zenoh-pico/session/subscription.h
+1 −1 include/zenoh-pico/session/utils.h
+44 −0 include/zenoh-pico/system/common/platform.h
+30 −0 include/zenoh-pico/transport/common/transport.h
+2 −1 include/zenoh-pico/transport/manager.h
+1 −1 include/zenoh-pico/transport/multicast/transport.h
+1 −0 include/zenoh-pico/transport/transport.h
+1 −1 include/zenoh-pico/transport/unicast/transport.h
+1 −0 include/zenoh-pico/utils/result.h
+60 −20 src/api/api.c
+2 −2 src/collections/list.c
+254 −0 src/collections/lru_cache.c
+17 −0 src/collections/string.c
+6 −6 src/link/endpoint.c
+2 −2 src/link/link.c
+1 −1 src/net/liveliness.c
+55 −15 src/net/primitives.c
+201 −74 src/net/session.c
+3 −3 src/protocol/core.c
+6 −0 src/protocol/definitions/network.c
+0 −1 src/protocol/definitions/transport.c
+24 −0 src/protocol/keyexpr.c
+12 −3 src/session/interest.c
+1 −1 src/session/liveliness.c
+55 −65 src/session/queryable.c
+10 −9 src/session/resource.c
+1 −2 src/session/rx.c
+62 −74 src/session/subscription.c
+30 −28 src/session/utils.c
+38 −2 src/system/arduino/esp32/system.c
+23 −0 src/system/arduino/opencr/system.c
+3 −0 src/system/common/platform.c
+28 −2 src/system/emscripten/system.c
+39 −1 src/system/espidf/system.c
+24 −0 src/system/flipper/system.c
+38 −0 src/system/freertos_plus_tcp/system.c
+52 −0 src/system/mbed/system.cpp
+52 −2 src/system/rpi_pico/system.c
+41 −1 src/system/unix/system.c
+60 −0 src/system/windows/system.c
+39 −1 src/system/zephyr/system.c
+60 −0 src/transport/common/transport.c
+5 −3 src/transport/manager.c
+9 −0 src/transport/multicast/lease.c
+4 −28 src/transport/multicast/transport.c
+21 −46 src/transport/transport.c
+21 −4 src/transport/unicast/lease.c
+7 −28 src/transport/unicast/transport.c
+203 −0 tests/connection_restore.py
+250 −0 tests/z_lru_cache_test.c

0 comments on commit 36800c5

Please sign in to comment.