mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-11-02 13:00:13 +08:00
feat(examples): Add cmake compiler script for examples
This commit is contained in:
@ -22,7 +22,7 @@ struct async_resp_arg {
|
||||
esp_err_t hello_get_handler(httpd_req_t *req)
|
||||
{
|
||||
#define STR "Hello World!"
|
||||
ESP_LOGI(TAG, "Free Stack for server task: '%d'", uxTaskGetStackHighWaterMark(NULL));
|
||||
ESP_LOGI(TAG, "Free Stack for server task: '%ld'", uxTaskGetStackHighWaterMark(NULL));
|
||||
httpd_resp_send(req, STR, strlen(STR));
|
||||
return ESP_OK;
|
||||
#undef STR
|
||||
|
||||
Reference in New Issue
Block a user