mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Reference code fixed.
Merges https://github.com/espressif/esp-idf/pull/10469
This commit is contained in:
parent
0025915dc4
commit
ed1b2ba60e
@ -22,7 +22,7 @@ HTTP Server 组件提供了在 ESP32 上运行轻量级 Web 服务器的功能
|
||||
esp_err_t get_handler(httpd_req_t *req)
|
||||
{
|
||||
/* 发送回简单的响应数据包 */
|
||||
const char[] resp = "URI GET Response";
|
||||
const char resp[] = "URI GET Response";
|
||||
httpd_resp_send(req, resp, HTTPD_RESP_USE_STRLEN);
|
||||
return ESP_OK;
|
||||
}
|
||||
@ -55,7 +55,7 @@ HTTP Server 组件提供了在 ESP32 上运行轻量级 Web 服务器的功能
|
||||
}
|
||||
|
||||
/* 发送简单的响应数据包 */
|
||||
const char[] resp = "URI POST Response";
|
||||
const char resp[] = "URI POST Response";
|
||||
httpd_resp_send(req, resp, HTTPD_RESP_USE_STRLEN);
|
||||
return ESP_OK;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user