David Cermak
fac2edbe59
fix(modem): Use another public broker for examples and tests
...
since mqtt.eclipseprojects.io is no longer available
2025-07-11 08:16:17 +02:00
David Cermak
ed0f633418
fix(modem): Fix incompatible iterator in std::search() in new gcc
...
Creates a temporary string view and uses find() instead.
2025-07-11 08:15:53 +02:00
david-cermak
a8631eecf5
Merge pull request #814 from david-cermak/feat/eppp_channels
...
[eppp-link]: Support for channels
eppp-v1.0.0
2025-07-10 14:45:29 +02:00
David Cermak
3e28a7264c
bump(eppp): 0.3.1 -> 1.0.0
...
1.0.0
Features
- Add support for custom channels (4ee9360f )
2025-07-10 13:57:13 +02:00
David Cermak
4ee9360f53
feat(eppp): Add support for custom channels
2025-07-10 13:55:46 +02:00
david-cermak
e9b21ea7a3
Merge pull request #833 from david-cermak/fix/mosq_minor
...
[mosq]: Fix some recent bugs
mosq-v2.0.20_3
2025-07-01 12:41:01 +02:00
David Cermak
ac1b2b7573
bump(mosq): 2.0.20~2 -> 2.0.20~3
...
2.0.20~3
Bug Fixes
- Support build on older IDF branches (13b90ad1 )
- Fix misleading error when accepting connection (fd410061 , #807 )
- Make mosquitto component c++ compatible (c4169765 , #817 )
- include config.h before any system header (1b1ede43 )
2025-07-01 12:20:45 +02:00
David Cermak
13b90ad14b
fix(mosq): Support build on older IDF branches
...
and added build jobs to CI
2025-07-01 12:18:08 +02:00
David Cermak
fd41006193
fix(mosq): Fix misleading error when accepting connection
...
Closes https://github.com/espressif/esp-protocols/issues/807
2025-07-01 11:31:32 +02:00
Euripedes
e71926f6ed
Merge pull request #752 from bryghtlabs-richard/feat/websocketReconnectOnClose
...
feat(websocket): add ability to reconnect after close (IDFGH-15455)
2025-06-27 14:31:16 +02:00
c4169765af
fix(mosq): Make mosquitto component c++ compatible
...
Closes https://github.com/espressif/esp-protocols/issues/817
Closes https://github.com/espressif/esp-protocols/issues/816
2025-06-27 12:36:16 +02:00
david-cermak
f43dd5012f
Merge pull request #829 from david-cermak/fix/modem_get_network_state
...
[modem]: Fix get_network_registration_state() to accept two params
2025-06-25 12:35:45 +02:00
david-cermak
b143894874
Merge pull request #821 from lolrobbe2/fix-urc-line-handler-modem
...
fix(modem): Consume buffer after handled URC
2025-06-24 10:22:45 +02:00
david-cermak
d1c912c833
Merge pull request #830 from david-cermak/fix/dns_http_event
...
[dns]: Fix http event handler to accept default case
2025-06-24 10:21:16 +02:00
David Cermak
4fbd86b278
fix(dns): Fix http event handler to accept default case
2025-06-24 09:52:38 +02:00
david-cermak
af8272d441
Merge pull request #825 from david-cermak/fix/modem_auto_mode
...
[modem]: Fix autodetect to support ACFC mode in PPP frames
2025-06-24 09:09:01 +02:00
David Cermak
8b328a6904
fix(modem): Fix autodetect to support ACFC mode in PPP frames
...
Closes https://github.com/espressif/esp-protocols/issues/801
2025-06-23 17:13:32 +02:00
David Cermak
5f54d9075e
fix(modem): Fix get_network_registration_state() to accept two params
...
Co-authored-by: Beernaert Robbe <robbe.beernaert@student.howest.be >
Closes https://github.com/espressif/esp-protocols/issues/826
2025-06-23 11:10:36 +02:00
david-cermak
01952f21cb
Merge pull request #824 from david-cermak/fix/mdns_host_test
...
[mdns]: Fix host tests by freezing idf-build-apps to 2.10
2025-06-17 12:43:25 +02:00
David Cermak
5dfe076c94
fix(mdns): Fix host tests by freezing idf-build-apps to 2.10
2025-06-12 17:47:24 +02:00
david-cermak
ea9f29ad14
Merge pull request #823 from david-cermak/fix/eppp_without_pppos
...
[eppp]: Fix NETIF_PPP_STATUS link issue if PPP disabled in lwip
eppp-v0.3.1
2025-06-12 14:20:05 +02:00
David Cermak
217e6d90c8
bump(eppp): 0.3.0 -> 0.3.1
...
0.3.1
Bug Fixes
- Fix NETIF_PPP_STATUS link issue if PPP disabled in lwip (077ea0bb )
2025-06-12 13:53:42 +02:00
David Cermak
077ea0bb1f
fix(eppp): Fix NETIF_PPP_STATUS link issue if PPP disabled in lwip
2025-06-12 13:53:20 +02:00
david-cermak
a74b01e7e3
Merge pull request #812 from david-cermak/feat/eppp_transports
...
feat(eppp): Add support for TUN interface
eppp-v0.3.0
2025-06-12 12:39:21 +02:00
David Cermak
c5a4a51d82
bump(eppp): 0.2.0 -> 0.3.0
...
0.3.0
Features
- Add support for TUN interface (2ff150c3 )
- Add support for transport via Ethernet link (a21ce883 )
2025-06-12 11:59:56 +02:00
David Cermak
2ff150c310
feat(eppp): Add support for TUN interface
...
* Implement factory pattern
* Make netif type configurable (PPP vs. TUN)
* Use ICMP for TUN netif connection
* Relax deps criteria (mainly for Ethernet)use the tun feature
2025-06-12 11:59:17 +02:00
robbedptechnics
6eceb28f7d
fix(modem): Consume buffer after handled URC
2025-06-11 14:50:14 +02:00
Euripedes
b8cdd373f4
Merge pull request #809 from david-cermak/fix/mqtt_cxx_clang_tidy_warns
...
fix(mqtt_cxx): Fix clang-tidy warnings with C++ exceptions
2025-05-06 14:29:57 +02:00
david-cermak
66a5ac0190
Merge pull request #808 from Lapshin/master
...
fix(mosq): include config.h before any system header (IDFGH-15223)
2025-05-02 10:26:41 +02:00
David Cermak
40cce5e926
fix(mqtt_cxx): Fix clang-tidy warnings with C++ exceptions
2025-05-02 10:18:40 +02:00
Alexey Lapshin
1b1ede435d
fix(mosq): include config.h before any system header
2025-05-01 23:58:53 +07:00
david-cermak
c6f08ee961
Merge pull request #622 from david-cermak/feat/eppp_emac2emac
...
[eppp]: Support for transport via Ethernet (phy or emac)
2025-04-30 12:32:48 +02:00
David Cermak
a21ce883ef
feat(eppp): Add support for transport via Ethernet link
2025-04-30 11:56:40 +02:00
david-cermak
79d6fa2607
Merge pull request #806 from david-cermak/fix/clang_tidy_disable_lws
...
fix(lws): Remove clang tidy checks
2025-04-29 14:30:26 +02:00
David Cermak
ad90558420
fix(lws): Remove clang tidy checks
...
Since lws hardcodes some flags in CMakeLists.txt, which causes compilation issues
with mbedtls, generated lws_config.h and -mlongcalls
2025-04-25 16:50:13 +02:00
Abhik Roy
8541753443
Merge pull request #781 from espressif-abhikroy/component/esp_dns
...
feat(common): Add ESP DNS module with support for UDP, DoT, and DoH protocols
esp_dns-v1.0.0
2025-04-18 21:37:32 +10:00
Abhik Roy
6660f71d03
bump(dns): First version [1.0.0]
...
1.0.0
Features
- Add ESP DNS module with support for UDP, TCP, DoT, and DoH protocols (57cd6080 )
2025-04-16 22:03:33 +10:00
Abhik Roy
57cd60807e
feat(dns): Add ESP DNS module with support for UDP, TCP, DoT, and DoH protocols
...
This commit introduces a custom DNS module for ESP32, enabling DNS resolution capabilities
over various protocols including UDP, TCP, DNS over TLS (DoT), and DNS over HTTPS (DoH).
The module includes initialization and cleanup functionalities, along with
protocol-specific implementations for each DNS type.
2025-04-16 21:30:06 +10:00
david-cermak
03dd8006b2
Merge pull request #798 from david-cermak/fix/lws_clang_tidy
...
[lws]: Fix many file-not-found errors on clang-tidy job
2025-04-10 17:41:32 +02:00
Guilherme Alves Ferreira
3863c26b79
Merge pull request #704 from bryghtlabs-richard/fix/websocketWriterLag
...
fix(websocket): release client-lock during WEBSOCKET_EVENT_DATA (IDFGH-14545)
2025-04-10 12:16:31 -03:00
david-cermak
1d1ff365c2
Merge pull request #797 from david-cermak/fix/asio_certs
...
[asio]: Fixed TLS server-client example failure
2025-04-10 14:50:37 +02:00
David Cermak
ef3870573c
fix(lws): Fix many file-not-found errors on clang-tidy job
2025-04-10 12:49:46 +02:00
David Cermak
ad94cc9502
feat(asio): Add mbedtls specific APIs to use TLS stack specific features
...
Use mbedtls specific API to configure hostname for verification
2025-04-08 17:08:27 +02:00
David Cermak
4885d28294
fix(asio): Fixed TLS server-client example failure per cert expiry
2025-04-07 12:01:30 +02:00
david-cermak
df00a03084
Merge pull request #685 from david-cermak/fix/modem_generate_code
...
[modem]: Use pre-generated command declarations to improve IDE navigation
2025-04-04 16:25:27 +02:00
David Cermak
e2fa11103c
fix(modem): Use generated AT command definitions for IDE navigation
...
BREAKING CHANGE: inc headers for AT command definitions are no longer used directly, but pregenerated into *.h(pp)
2025-04-04 15:39:39 +02:00
david-cermak
d2e94e5db2
Merge pull request #609 from david-cermak/fix/example_multinetif
...
[examples]: Make multi-netif example working with DNS_PER_DEFAULT_NETIF
2025-04-02 07:54:49 +02:00
David Cermak
bc8ac4c684
fix(examples): Make multi-netif example working with DNS_PER_DEFAULT_NETIF feature
2025-04-01 12:39:37 +02:00
david-cermak
b710dbd2ad
Merge pull request #793 from david-cermak/fix/modem_bump
...
[modem]: Bump 1.3.0 -> 1.4.0
modem-v1.4.0
2025-03-28 14:57:48 +01:00
David Cermak
5eeb29cb94
bump(modem): 1.3.0 -> 1.4.0
...
1.4.0
Features
- added config_edrx api function (74b7d85d )
- added sqn_gm02s connect function (b97dfc08 )
- add support for sequans GM02S modem (8560f021 )
Bug Fixes
- Fix cmux log message (6ed672da )
- fixed minor code mistakes. (317faf89 )
- handle nullptr in DTE constructors to prevent invalid access (95b56600 )
2025-03-28 13:47:52 +01:00