Search found 8 matches

by agatrost1620
Tue Jan 30, 2024 6:13 pm
Forum: ESP-IDF
Topic: Issues with ESP-IDF v5.2 using async handlers
Replies: 0
Views: 427

Issues with ESP-IDF v5.2 using async handlers

I am trying to set up the webserver to be able to receive a file from the web page and then be able to query the progress from the web page to the webserver. Before I was using the async feature addition in 5.2 I had been able to upload the file from v 5.0. I had been reading that I had to upgrade t...
by agatrost1620
Tue Nov 21, 2023 4:01 am
Forum: Hardware
Topic: ESP32 SPI Chip Select Not working.
Replies: 0
Views: 1070

ESP32 SPI Chip Select Not working.

I am trying to use the spi, and the chip select is not being held low while transmission in progress. It is bouncining, and not very predictable on how many times or when. Is there a way to drive the cs low, send and receive all the data and then drive the cs high? I have tried many different code s...
by agatrost1620
Wed Sep 27, 2023 2:55 pm
Forum: Hardware
Topic: Using GPIO 2 and GPIO 25 not being able to be controlled.
Replies: 4
Views: 1246

Re: Using GPIO 2 and GPIO 25 not being able to be controlled.

Thank you, The issue has been resolved. I was working with the esp32 WROOM single antennae on a proprietary board, and went to a esp32 WROOM dual antennae eval board to test the signals. Upon further investigation this is expected operation of the 2 boards. On the single antennae board, the gpio do ...
by agatrost1620
Tue Sep 26, 2023 12:32 pm
Forum: Hardware
Topic: Using GPIO 2 and GPIO 25 not being able to be controlled.
Replies: 4
Views: 1246

Re: Using GPIO 2 and GPIO 25 not being able to be controlled.

I can post snippets of the code: //The #defines are actually set up into typedefs to control other GPIOs, that are working, 2, and 25 are 2 that I found are not controlled through this code. #define GPIO GPIO_NUM_2 // or whatever gpio to test #define GPIO_MASK (1ULL << GPIO) gpio_config_t config = {...
by agatrost1620
Tue Sep 26, 2023 4:51 am
Forum: Hardware
Topic: Using GPIO 2 and GPIO 25 not being able to be controlled.
Replies: 4
Views: 1246

Using GPIO 2 and GPIO 25 not being able to be controlled.

I have tested several different gpios with my code and able to drive them high or low. But when I set up GPIO 2 and GPIO 25 to test for driving, they remain low. Any help to get these 2 pins to work would be appreciated.

Thank you in advance
by agatrost1620
Fri Jan 20, 2023 5:14 am
Forum: General Discussion
Topic: ESP-Hosted Project building and help using with otherlinux processors
Replies: 1
Views: 715

ESP-Hosted Project building and help using with otherlinux processors

I have researched looking for documentation on how to build the project locally. But I have not been able to find anything on how this is accomplished. I have worked with the ESP-IDF in the past, and also used esp-at that I was able to use and build locally. Basically I am needing to be able to conf...
by agatrost1620
Fri May 22, 2020 9:21 pm
Forum: General Discussion
Topic: Sending large data over MQTT
Replies: 3
Views: 7323

Re: Sending large data over MQTT

@davdav were you able to figure out a solution? I am trying to send 1 file that is in the flash using mqtt. I do not have enough memory to allocate for the size of the file, nor can a create an array large enough either. the file at this time is 48kB, and I would like to be able to not worry about t...
by agatrost1620
Wed Apr 29, 2020 8:43 pm
Forum: ESP-IDF
Topic: Esp32 fat filesystem questions
Replies: 1
Views: 3054

Esp32 fat filesystem questions

I am trying to use the fat file system with wear leveling and posix file access. Very little documentation on the api's other than what I have found in the idf examples to use. Also I am looking for instructions on creating my own fatfs for my project. These are the function calls in this order that...