4bdd90cc88
fix(modem): Fixed UART task to check for buffered data periodically
...
Closes https://github.com/espressif/esp-protocols/issues/536
2024-03-26 14:44:59 +01:00
a5954dda17
Merge pull request #533 from david-cermak/fix/mdns_process_tx_packets
...
fix(mdns): Schedule all queued Tx packets from timer task
2024-03-26 10:12:41 +01:00
b9c675b0b1
Merge pull request #523 from bryghtlabs-richard/master
...
fix(websocket): fix esp_event dependency management (IDFGH-12301) (IDFGH-12302)
2024-03-20 19:09:29 +01:00
d4e693e392
fix(mdns): Schedule all queued Tx packets from timer task
...
Co-Authored-By: not-my-real-name <none@interent.com >
Partially addresses: https://github.com/espressif/esp-idf/issues/13333
2024-03-20 11:47:29 +01:00
963b32e7b4
Merge pull request #497 from rretanubun/make-mdns-console-kcconfig
...
feat(mdns): Make including mdns_console KConfig (IDFGH-11988)
2024-03-20 09:39:34 +01:00
08a62ccc85
fix(modem): Cleanup unused configs from PPPoS example
...
Merges https://github.com/espressif/esp-protocols/pull/403
2024-03-18 14:10:46 +01:00
56fe53279e
fix(modem): Update CMUX example with SIM7070_gnss cleaned-up
...
Merges https://github.com/espressif/esp-protocols/pull/246
2024-03-18 14:10:46 +01:00
5baaf54291
fix(modem): Update console example with SIM7070_gnss format comments
...
Merges https://github.com/espressif/esp-protocols/pull/245
2024-03-18 14:10:46 +01:00
21c84bfa8d
fix(mdns): add lock for some common apis
2024-03-14 17:53:05 +08:00
438449f58f
Merge pull request #454 from gabsuren/modem/latest_version
...
feat(modem): host test support of the latest ESP-IDF release (IDF-7828)
2024-03-14 13:49:05 +04:00
a23a0027fa
ci(common): updated github actions(checkout, upload, download) v3 to 4, Ubuntu 20.04 to v22.04
2024-03-12 14:22:01 +04:00
3f74b4e8c0
feat(modem): host test support of the latest ESP-IDF release
2024-03-12 12:05:59 +04:00
7be16bcc88
fix(mdns): fix mdns answer append while host is invalid
2024-03-11 20:26:38 +08:00
1fb02a9a60
fix(websocket): fix esp_event dependency management
...
Move esp_event from PRIV_REQUIRES to REQUIRES, as it is
included by esp_websocket_client.h, so any code including
that header also requires esp_event.
This resolves the following build error for files not
explicitly requiring esp_event:
ninja: build stopped: subcommand failed.
Compilation failed because esp_websocket_client.h (in "espressif__esp_websocket_client" component) includes esp_event.h, provided by esp_event component(s).
However, esp_event component(s) is in the private requirements list of "espressif__esp_websocket_client".
To fix this, move esp_event from PRIV_REQUIRES into REQUIRES list of idf_component_register call in ...\managed_components\espressif__esp_websocket_client\CMakeLists.txt.
ninja failed with exit code 1, output of the command is in...
2024-03-08 10:10:48 -06:00
5b467cbf5c
fix(websocket): Skip warn on zero timeout and auto reconnect is disabled
2024-03-06 22:20:48 +01:00
a82c7922aa
bump(mdns): 1.2.4 -> 1.2.5
...
1.2.5
Bug Fixes
- Fixed build issues for targets without WiFi caps (302b46f
)
2024-03-06 10:32:17 +04:00
d31ad025c8
Merge pull request #515 from david-cermak/fix/ws_dyn_buffer
...
[ws-client]: Fix usage of the dynamic buffer
2024-03-05 16:25:51 +01:00
302b46f8e2
fix(mdns): Fixed build issues for targets without WiFi caps
2024-03-01 10:24:29 +01:00
3b80181d30
fix(modem): Fix remaining print format warnings
...
Partially addresses https://github.com/espressif/esp-protocols/issues/79
2024-02-28 19:24:52 +01:00
9c54b72e1f
fix(websocket): Fixed to use int return value in Tx functions
2024-02-28 12:48:06 +01:00
16174470ee
fix(websocket): Fixed Tx functions with DYNAMIC_BUFFER
2024-02-28 12:47:59 +01:00
a8035c21a2
bump(eppp): Published ESP-PPP-Link as eppp-v0.0.1
2024-02-23 12:05:21 +01:00
7eefcf084e
feat(eppp): Added CI job to build examples and tests
2024-02-23 12:05:02 +01:00
18f845275f
feat(eppp): Added support for SPI transport
2024-02-23 11:47:22 +01:00
ad27414a64
feat(eppp): Added support for UART transport
2024-02-23 11:47:15 +01:00
a7610395ef
feat(eppp): Introduced ESP-PPP-Link component
2024-02-23 11:11:49 +01:00
0d0630ed76
feat(websocket): Expanded example to demonstrate the transfer over TLS
2024-02-23 12:08:41 +04:00
38a3631a27
Merge pull request #495 from eht-datarespons/master
...
fix(websocket): Continue waiting for TCP connection to be closed (IDFGH-11965)
2024-02-08 14:37:44 +01:00
247ca41bb7
bump(mdns): 1.2.3 -> 1.2.4
...
1.2.4
Bug Fixes
- Correction on 6d2c475
MDNS_PREDEF_NETIF_ETH fix (fc59f87c4e
)
- fix the logic of creating pcb for networking socket (5000a9a20a
)
- fix compiling issue when disabling IPv4 (2646dcd23a
)
- Fix compile error when MDNS_PREDEF_NETIF_ETH is defined, but ETH_ENABLED is not (#459 ) (6d2c475c20
)
2024-02-06 11:51:38 +04:00
891384cc53
Merge pull request #414 from wqx6/fix/mdns_disable_ipv4
...
fix(mdns): fix compiling issue when disabling IPv4 (IDFGH-11453)
2024-02-06 11:45:45 +04:00
312982e4aa
fix(websocket): added dependency checks, sdkconfig.defaults and refined README.md
2024-02-05 13:22:39 +04:00
d85311880d
fix(websocket): Close websocket and dispatch event if server does not close within a reasonable amount of time.
2024-01-29 08:01:39 +01:00
27adbfeb3b
feat(mdns): Make including mdns_console KConfigurable
...
The CLI that mdns_console offers is very useful for debugging
and bootstrapping mDNS onto new projects, but some projects
may not want console CLI in place to reduce binary size.
This gives a KConfig option to do so.
2024-01-26 13:35:47 -05:00
5ba7cfab8e
Merge pull request #496 from gabsuren/readme_websocket_linux
...
docs(websocket): Added README for websocket host example (IDF-9115)
2024-01-26 20:31:15 +04:00
2f7c58259d
docs(websocket): Added README for websocket host example
2024-01-26 20:29:28 +04:00
2b092e0db4
fix(websocket): Continue waiting for TCP connection to be closed
...
Prevents an issue where WEBSOCKET_EVENT_CLOSED is not sent after
websocket is closed.
2024-01-23 14:58:27 +01:00
2782277f3f
bump(modem): 1.0.5 -> 1.1.0
...
1.1.0
Features
- Added support for at_raw() command (ae38110
, #471 )
- Added iperf test for PPP netifs (976e98d
)
- Added test that performs OTA to exercise modem layers (f2223dd
)
Bug Fixes
- Fixed OTA test to gracefully fail with no verification (1dc4299
)
- Added C-API to configure APN (ce7dadd
, #485 )
- Fixed AT commands to copy strings to prevent overrides (741d166
, #463 )
- Fixed incorrect dial command format (0998f3d
, #433 )
- Fixed documentation and example on creating custom device (577de67
, #452 )
- Removed CI jobs for IDF v4.2 (d88cd61
)
- Fixed OAT test to verify server cert and CN (edc3e72
)
- Fixed set_pdp_context() command timeout (1d80cbc
, #455 )
Updated
- docs(modem): Added description of manual test procedure (68ce794
)
2024-01-22 16:33:07 +01:00
3225f40c22
Merge pull request #491 from david-cermak/feat/modem_set_apn
...
fix(modem): Added C-API to configure APN
2024-01-22 16:05:51 +01:00
d63f831fff
Merge pull request #466 from gabsuren/websocket_bump_1.2.2
...
bump(websocket): 1.2.1 -> 1.2.2
2024-01-19 19:27:37 +04:00
68ce794098
docs(modem): Added description of manual test procedure
2024-01-19 11:16:18 +01:00
60174f290e
bump(mqtt_cxx): 0.2.0 -> 0.3.0
...
0.3.0
Bug Fixes
- Incorrect documentation link (aa4e9d57
)
- reference protocol_examples_common from IDF (e6c0538d
)
- specify override_path in example manifest files (fa005c63
)
2024-01-19 09:43:07 +01:00
7b777948fc
Merge pull request #487 from euripedesrocha/mqttcxx_link_fix
...
Incorrect documentation link
2024-01-18 05:10:23 -03:00
1dc4299eb0
fix(modem): Fixed OTA test to gracefully fail with no verification
2024-01-17 17:43:47 +01:00
ce7daddc77
fix(modem): Added C-API to configure APN
...
Closes https://github.com/espressif/esp-protocols/issues/485
2024-01-17 14:30:05 +01:00
fc59f87c4e
fix(mdns): Correction on 6d2c475
MDNS_PREDEF_NETIF_ETH fix
2024-01-17 11:51:17 +01:00
d3bf773445
Revert "feat(console): Added component with iperf command"
2024-01-17 20:20:30 +11:00
1c29af9237
Merge pull request #472 from david-cermak/fix/modem_at_corrupt_response
...
fix(modem): Fixed AT commands to copy strings to prevent overrides
2024-01-17 09:48:24 +01:00
b53981a68c
Merge pull request #479 from marekmaskarinec/master
...
fix(mdns): Fix compile error when MDNS_PREDEF_NETIF_ETH is defined, but ETH_ENABLED is not (IDFGH-11868)
2024-01-17 09:48:05 +01:00
5000a9a20a
fix(mdns): fix the logic of creating pcb for networking socket
2024-01-17 10:48:40 +08:00
2646dcd23a
fix(mdns): fix compiling issue when disabling IPv4
2024-01-17 10:48:40 +08:00