Search found 4 matches

by atlex92
Thu Feb 15, 2024 7:50 am
Forum: ESP-IDF
Topic: ESP32-S3 disabling JTAG
Replies: 5
Views: 860

Re: ESP32-S3 disabling JTAG

ESP_Sprite wrote:
Wed Feb 14, 2024 2:03 am
How did you configure them? You may need to do an gpio_reset_pin() on the GPIO to get them out of JTAG mode.
It was just with gpio_set_direction.

But gpio_reset_pin solved everything. Thanks a lot!
by atlex92
Tue Feb 13, 2024 10:04 am
Forum: ESP-IDF
Topic: ESP32-S3 disabling JTAG
Replies: 5
Views: 860

Re: ESP32-S3 disabling JTAG

According to documentation, GPIO_39, GPIO_40, GPIO_41, GPIO_42 are occupied for JTAG and can't be used as GPIOs (e.g. in OUTPUT mode for push/pull operations). You are correct in that these are the JTAG pin, but mistaken in that they are occupied like this by default (by default, the USB32-S3 uses ...
by atlex92
Mon Feb 12, 2024 8:24 am
Forum: ESP-IDF
Topic: ESP32-S3 disabling JTAG
Replies: 5
Views: 860

ESP32-S3 disabling JTAG

Hi. I'm working with esp32-s3 devkit N32R8V version: https://docs.espressif.com/projects/esp-idf/en/stable/esp32s3/hw-reference/esp32s3/user-guide-devkitc-1.html According to documentation, GPIO_39, GPIO_40, GPIO_41, GPIO_42 are occupied for JTAG and can't be used as GPIOs (e.g. in OUTPUT mode for p...
by atlex92
Fri Feb 14, 2020 2:14 pm
Forum: ESP-IDF
Topic: HTTP client response data corrupted
Replies: 7
Views: 11325

Re: HTTP client response data corrupted

Hi, i had a same problem as described above, so i've managed with it by setting buffer size of client large enough, By default it will be just 512 bytes esp_http_client_config_t config = {}; config.url = reqInfo.url.c_str(); config.is_async = false; config.timeout_ms = reqInfo.timeoutMs; config.buff...