-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #550 from gabsuren/fix_websokcet_params
fix(websocket): Fix locking issues of `esp_websocket_client_send_with_exact_opcode` IDF-9380
- Loading branch information
Showing
5 changed files
with
142 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
components/esp_websocket_client/examples/target/sdkconfig.ci.dynamic_buffer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
CONFIG_IDF_TARGET="esp32" | ||
CONFIG_IDF_TARGET_LINUX=n | ||
CONFIG_WEBSOCKET_URI_FROM_STDIN=n | ||
CONFIG_WEBSOCKET_URI_FROM_STRING=y | ||
CONFIG_EXAMPLE_CONNECT_ETHERNET=y | ||
CONFIG_EXAMPLE_CONNECT_WIFI=n | ||
CONFIG_EXAMPLE_USE_INTERNAL_ETHERNET=y | ||
CONFIG_EXAMPLE_ETH_PHY_IP101=y | ||
CONFIG_EXAMPLE_ETH_MDC_GPIO=23 | ||
CONFIG_EXAMPLE_ETH_MDIO_GPIO=18 | ||
CONFIG_EXAMPLE_ETH_PHY_RST_GPIO=5 | ||
CONFIG_EXAMPLE_ETH_PHY_ADDR=1 | ||
CONFIG_EXAMPLE_CONNECT_IPV6=y | ||
CONFIG_ESP_WS_CLIENT_ENABLE_DYNAMIC_BUFFER=y |