Whitespace: Automated whitespace fixes (large commit)

Apply the pre-commit hook whitespace fixes to all files in the repo.

(Line endings, blank lines at end of file, trailing whitespace)


* Original commit: espressif/esp-idf@66fb5a29bb
This commit is contained in:
Angus Gratton
2020-11-10 18:40:01 +11:00
committed by gabsuren
parent e90272c812
commit d376480766
3 changed files with 4 additions and 6 deletions

View File

@ -133,7 +133,7 @@ esp_err_t esp_websocket_client_start(esp_websocket_client_handle_t client);
* using esp_websocket_client_close(). * using esp_websocket_client_close().
* *
* Notes: * Notes:
* - Cannot be called from the websocket event handler * - Cannot be called from the websocket event handler
* *
* @param[in] client The client * @param[in] client The client
* *
@ -149,7 +149,7 @@ esp_err_t esp_websocket_client_stop(esp_websocket_client_handle_t client);
* *
* Notes: * Notes:
* - Cannot be called from the websocket event handler * - Cannot be called from the websocket event handler
* *
* @param[in] client The client * @param[in] client The client
* *
* @return esp_err_t * @return esp_err_t
@ -208,7 +208,7 @@ int esp_websocket_client_send_text(esp_websocket_client_handle_t client, const c
* * Client is stopped the same way as by the `esp_websocket_client_stop()` * * Client is stopped the same way as by the `esp_websocket_client_stop()`
* *
* Notes: * Notes:
* - Cannot be called from the websocket event handler * - Cannot be called from the websocket event handler
* *
* @param[in] client The client * @param[in] client The client
* @param[in] timeout Timeout in RTOS ticks for waiting * @param[in] timeout Timeout in RTOS ticks for waiting
@ -222,7 +222,7 @@ esp_err_t esp_websocket_client_close(esp_websocket_client_handle_t client, TickT
* Closing sequence is the same as for esp_websocket_client_close() * Closing sequence is the same as for esp_websocket_client_close()
* *
* Notes: * Notes:
* - Cannot be called from the websocket event handler * - Cannot be called from the websocket event handler
* *
* @param[in] client The client * @param[in] client The client
* @param[in] code Close status code as defined in RFC6455 section-7.4 * @param[in] code Close status code as defined in RFC6455 section-7.4

View File

@ -7,4 +7,3 @@ PROJECT_NAME := websocket-example
EXTRA_COMPONENT_DIRS = $(IDF_PATH)/examples/common_components/protocol_examples_common EXTRA_COMPONENT_DIRS = $(IDF_PATH)/examples/common_components/protocol_examples_common
include $(IDF_PATH)/make/project.mk include $(IDF_PATH)/make/project.mk

View File

@ -1,3 +1,2 @@
CONFIG_WEBSOCKET_URI_FROM_STDIN=y CONFIG_WEBSOCKET_URI_FROM_STDIN=y
CONFIG_WEBSOCKET_URI_FROM_STRING=n CONFIG_WEBSOCKET_URI_FROM_STRING=n