Search found 6 matches

by dawime
Tue Jun 06, 2023 2:50 am
Forum: General Discussion
Topic: HTTP Client uploading file via POST
Replies: 4
Views: 4843

Re: HTTP Client uploading file via POST

Tried some new things, but still no success... I attempted to change the headers as described for upload: snprintf(contentDispositionHeader, sizeof(contentDispositionHeader), "attachment; filename=\"%s\"", header_fname); ESP_LOGI(TAG,"%s",contentDispositionHeader); esp_http_client_set_header(client,...
by dawime
Sun Jun 04, 2023 10:11 pm
Forum: General Discussion
Topic: HTTP Client uploading file via POST
Replies: 4
Views: 4843

HTTP Client uploading file via POST

I am trying to use the ESP32S3 to read a file from the SD card, and send it to a remote webserver via HTTP POST. It does not have to be POST, but seemed like the easiest thing to do. I tested the PHP script by uploading a file via a html form, and it seems to work ok. Here is the PHP script: <?php i...
by dawime
Mon Mar 20, 2023 2:36 pm
Forum: General Discussion
Topic: I2S Input DMA setup
Replies: 2
Views: 1187

Re: I2S Input DMA setup

Thank you - I couldn't locate any documentation on it, but it makes sense. If the read will be blocking already, then I can forgo my interrupt and just running it on my thread directly.
by dawime
Sun Mar 19, 2023 10:41 pm
Forum: General Discussion
Topic: I2S Input DMA setup
Replies: 2
Views: 1187

I2S Input DMA setup

Hello - I am trying to interface a mems I2C microphone to I2S0 - I have verified that the device is clocking and outputing data - The idea is to setup DMA buffers, to trigger an interrupt when DMA is complete, from the DMA ISR signal a task that will read out the last buffer, process it and notify o...
by dawime
Mon Nov 14, 2022 2:45 pm
Forum: Report Bugs
Topic: OpenOCD issues with Visual Studio
Replies: 1
Views: 3007

OpenOCD issues with Visual Studio

Hello - I successfully installed the ESP-IDF plugin, and I am able to load example programs, and program them through the UART port. I am using the ESP32-S3-DEVKITC-1 development board. When trying to debug via JTAG using the USB port, I get several different errors when trying to start OpenOCD The ...
by dawime
Sat Aug 13, 2022 7:40 pm
Forum: ESP-IDF
Topic: Eclipse installation under linux not working
Replies: 0
Views: 891

Eclipse installation under linux not working

Following the plugin installation instructions under: https://github.com/espressif/idf-eclipse-plugin/blob/master/README.md I get to creating a project using the template (hello_world), but the project won't build due to unresolved symbols related to the esp chip: esp_chip_info_t chip_info; for exam...