Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 19, 2024
1 parent aa9b20d commit 8c6f0b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zenoh-pico
Submodule zenoh-pico updated 50 files
+24 −1 .github/workflows/ci.yml
+2 −0 .github/workflows/rpi_pico.yaml
+3 −0 CMakeLists.txt
+21 −20 include/zenoh-pico/collections/list.h
+2 −1 include/zenoh-pico/config.h
+1 −0 include/zenoh-pico/config.h.in
+2 −2 include/zenoh-pico/link/endpoint.h
+2 −2 include/zenoh-pico/link/link.h
+40 −2 include/zenoh-pico/net/session.h
+2 −0 include/zenoh-pico/protocol/definitions/network.h
+1 −0 include/zenoh-pico/session/interest.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
+52 −12 src/api/api.c
+2 −2 src/collections/list.c
+6 −6 src/link/endpoint.c
+2 −2 src/link/link.c
+35 −8 src/net/primitives.c
+201 −74 src/net/session.c
+6 −0 src/protocol/definitions/network.c
+0 −1 src/protocol/definitions/transport.c
+9 −0 src/session/interest.c
+0 −1 src/session/rx.c
+26 −24 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

0 comments on commit 8c6f0b4

Please sign in to comment.