Tuan
332fadfea6
esp_websocket_client: Add websocket client component
...
Closes https://github.com/espressif/esp-idf/issues/2829
2022-12-16 08:38:48 +01:00
David Cermak
3a2e82ec0f
mqtt: added support for esp event loop, updating examples to register and use event loop handler
2022-12-16 08:38:48 +01:00
David Cermak
7f77ad063d
mqtt_tests: add weekend test for sending and receiving empty payload messages, update config options per new naming convetions
2022-12-16 08:38:48 +01:00
David Cermak
6809fcb2df
tcp_transport: modified ws_read to read payload directly to the read buffer and separately from header bytes
...
Previous version read all data to the buffer including header which reduced maximum payload read. This version uses a local array to receive header and reads payload bytes to the buffer
2022-12-16 08:38:48 +01:00
David Cermak
6b70e14236
mqtt tests: adding weekend test for mqtt library to exercise publishing/receiving different data and references esp-mqtt commits to pass these tests
...
testing conditions:
transports (tcp, ssl, ws..)
qos (0, 1, 2)
short repeated messages (packed packets)
oversized messages (fragmented packets)
publish from a different thread
Closes https://github.com/espressif/esp-idf/issues/2870 by means of including commit 815623dfe5 from esp-mqtt
Closes https://github.com/espressif/esp-idf/issues/2975 by means of including commit 752953dc3b from esp-mqtt
Closes https://github.com/espressif/esp-idf/issues/2850 by means of including commits df455d2a5f 17fd713bce from esp-mqtt
2022-12-16 08:38:48 +01:00
morris
e19b9aa2df
separate rom from esp32 component to esp_rom
...
1. separate rom include files and linkscript to esp_rom
2. modefiy "include rom/xxx.h" to "include esp32/rom/xxx.h"
3. Forward compatible
4. update mqtt
2022-12-16 08:38:48 +01:00
Roland Dobai
9726859fa3
Correct Kconfigs according to the coding style
2022-12-16 08:38:48 +01:00
David Cermak
7437dce403
mqtt: support for BEFORE_CONNECT event in idf
...
Updated examples to use new event id, idf to use mqtt with fixed retained, oversized messages
2022-12-16 08:38:48 +01:00
David Cermak
60e39865e6
mqtt: ssl mutual authentication example added per PR from github, corrected cmake build, updated per idf style
...
Merges https://github.com/espressif/esp-idf/pull/2490
2022-12-16 08:38:48 +01:00
Anton Maklakov
14e9df14ff
tcp_transport: Remove the ignore warning because we had idf/esp-idf!3359
2022-12-16 08:38:48 +01:00
David Cermak
a31ede754f
tcp_transport: transport set handle refactoring, web socket client name updated
2022-12-16 08:38:48 +01:00
David Cermak
229167f48a
tcp_transport: renamed possibly generic function names to be esp_ prefixed and not to colide with user namespace
2022-12-16 08:38:48 +01:00
David Cermak
71d6861d6a
tcp_transport: renamed transport related header files to esp_ prefixed to avoid collisions
...
tcp_transport component used public header files such as 'transport.h', etc. which are too generic and might collide with user or user libraries headers
This change closes #2417
2022-12-16 08:38:48 +01:00
Angus Gratton
78233fe7de
doc: Re-add summaries of what children each menu item has
...
Slightly different to the original version of this, but same goal.
2022-12-16 08:38:48 +01:00
Anton Maklakov
1d49ac3249
mqtt: silence a format warning
2022-12-16 08:38:48 +01:00
Renz Bagaporo
20dda12b88
mqtt: list files manually in component cmake file
2022-12-16 08:38:48 +01:00
David Cermak
24b656ca4b
MQTT: Moved Kconfig from esp-mqtt submodule to esp-idf to support docs genration in RTD
2022-12-16 08:38:48 +01:00
David Cermak
c5069977a4
MQTT: Integrate esp-mqtt library into idf
...
added docs and tests for mqtt library, small fixes (removed warnings, option for custom outbox, websocket bug fixed for longer transports). refactored to use common tcp_transport component, support for CMake build system.
Closes #2108
2022-12-16 08:38:48 +01:00