Search found 2 matches
- Mon Jan 07, 2019 3:53 am
- Forum: General Discussion
- Topic: Changing console UART from menuconfig/Component Config/ESP32-specific not working
- Replies: 2
- Views: 5097
Changing console UART from menuconfig/Component Config/ESP32-specific not working
Hi. I'm trying to select a custom console configuration using menuconfig settings. From Component Config->ESP32-Specific I am setting UART Console Output to Custom, UART Peripheral to use to UART0, TX GPIO pin to 15, and RX GPIO pin to 14. When I do this I get no console output on GPIO 15. I get no ...
- Fri Dec 07, 2018 8:18 pm
- Forum: ESP-IDF
- Topic: esp_http_client chunked REQUEST
- Replies: 1
- Views: 3190
esp_http_client chunked REQUEST
Is it possible to send a chunked request with the esp_http_client API? I'd like to send the request (POST) and headers (including Transfer-Encoding: chunked) and then be able to send the data in chunks, such as: send_chunk(ptr1, len1); send_chunk(ptr1, len2); ... send_chunk(ptrN, lenN); send_chunk(N...