Search found 65 matches
- Wed Oct 27, 2021 2:13 am
- Forum: ESP-IDF 中文讨论版
- Topic: http client 中 cookie 问题
- Replies: 1
- Views: 3105
http client 中 cookie 问题
http client 的 esp_http_client_config_t 中没有定义COOKIE 的位置? 我该如何带cookie信息
- Mon Sep 27, 2021 8:21 am
- Forum: ESP-IDF 中文讨论版
- Topic: launch.json 设置问题
- Replies: 0
- Views: 2461
launch.json 设置问题
按照官方设置的
{
"version": "0.2.0",
"configurations": [
{
"type": "espidf",
"name": "Launch",
"request": "launch",
"debugPort": 9998,
"logLevel": 2,
"mode": "manual",
"skipVerifyAppBinBeforeDebug": false,
"initGdbCommands": [
"target remote :3333",
"symbol-file /path/to/program.elf",
"mon ...
{
"version": "0.2.0",
"configurations": [
{
"type": "espidf",
"name": "Launch",
"request": "launch",
"debugPort": 9998,
"logLevel": 2,
"mode": "manual",
"skipVerifyAppBinBeforeDebug": false,
"initGdbCommands": [
"target remote :3333",
"symbol-file /path/to/program.elf",
"mon ...
Re: 有关中断源表问题?
有人回答么
- Wed Sep 15, 2021 3:39 am
- Forum: ESP-IDF 中文讨论版
- Topic: HTTP 问题
- Replies: 4
- Views: 6372
Re: HTTP 问题
自己顶吧
- Wed Sep 15, 2021 3:38 am
- Forum: ESP-IDF 中文讨论版
- Topic: 使能 外部 PSRAM ,HTTP出错
- Replies: 1
- Views: 3083
Re: 使能 外部 PSRAM ,HTTP出错
几天了,自己顶一下
- Mon Sep 13, 2021 3:27 am
- Forum: ESP-IDF 中文讨论版
- Topic: 使能 外部 PSRAM ,HTTP出错
- Replies: 1
- Views: 3083
使能 外部 PSRAM ,HTTP出错
使能PSRAM ,默认选项 MALLOC, 发现 HTTP出现如下错误
E (36786) esp-tls-mbedtls: mbedtls_ssl_setup returned -0x7f00
E (36786) esp-tls: create_ssl_handle failed
E (36786) esp-tls: Failed to open new connection
E (36796) TRANS_SSL: Failed to open a new connection
而这个情况似乎是URL 过长时候才出现的, 哪里可以做调整?
E (36786) esp-tls-mbedtls: mbedtls_ssl_setup returned -0x7f00
E (36786) esp-tls: create_ssl_handle failed
E (36786) esp-tls: Failed to open new connection
E (36796) TRANS_SSL: Failed to open a new connection
而这个情况似乎是URL 过长时候才出现的, 哪里可以做调整?
- Mon Sep 13, 2021 2:18 am
- Forum: ESP-IDF 中文讨论版
- Topic: xTaskCreate 引用问题
- Replies: 2
- Views: 3643
Re: xTaskCreate 引用问题
用的是VSCODE ,
- Fri Sep 10, 2021 3:58 am
- Forum: ESP-IDF 中文讨论版
- Topic: xTaskCreate 引用问题
- Replies: 2
- Views: 3643
xTaskCreate 引用问题
有的例程里 xTaskCreate 引用的是
/esp-idf/components/freertos/include/freertos/task.h
有的引用的是
/home/ying/esp/esp-idf/components/tinyusb/tinyusb/lib/FreeRTOS/Source/task.c
中的 ,
是哪个设置影响的???
/esp-idf/components/freertos/include/freertos/task.h
有的引用的是
/home/ying/esp/esp-idf/components/tinyusb/tinyusb/lib/FreeRTOS/Source/task.c
中的 ,
是哪个设置影响的???
- Thu Sep 09, 2021 3:02 pm
- Forum: ESP-IDF 中文讨论版
- Topic: 关于14KB DAM问题
- Replies: 0
- Views: 2351
关于14KB DAM问题
如下:
eap_init: At 3FFFC000 len 00003A10 (14 KiB): DRAM
单独显示这剩余的动态内存,有什么不同?
使用xPortGetFreeHeapSize() 测试,这块内存似乎也没有计算在内?
eap_init: At 3FFFC000 len 00003A10 (14 KiB): DRAM
单独显示这剩余的动态内存,有什么不同?
使用xPortGetFreeHeapSize() 测试,这块内存似乎也没有计算在内?
- Tue Sep 07, 2021 1:21 pm
- Forum: ESP-IDF 中文讨论版
- Topic: HTTP 问题
- Replies: 4
- Views: 6372
Re: HTTP 问题
只用 esp_http_client案例中 http_native_request ,将GET 部分 隐去,将esp_http_client_fetch_headers(client)
加到POST 进程中,执行出现"HTTP client fetch headers failed"
static void http_native_request(void)
{
char output_buffer[MAX_HTTP_OUTPUT_BUFFER] = {0}; // Buffer to store response of http request
int content ...
加到POST 进程中,执行出现"HTTP client fetch headers failed"
static void http_native_request(void)
{
char output_buffer[MAX_HTTP_OUTPUT_BUFFER] = {0}; // Buffer to store response of http request
int content ...