If it is a correct hex format, write_flash will work using:
esptool.py --port /dev/ttyUSB1 write_flash --flash_mode dio --flash_size 4MB 0x0 ${CMAKE_BINARY_DIR}/22143V${CI_BUILD_TAG}R${CI_COMMIT_SHORT_SHA}.${FORMAT}
Search found 10 matches
- Wed Jul 17, 2024 8:32 pm
- Forum: ESP-IDF
- Topic: esptool.py and using hex format files
- Replies: 1
- Views: 856
- Wed Jul 17, 2024 8:10 pm
- Forum: ESP-IDF
- Topic: esptool.py and using hex format files
- Replies: 1
- Views: 856
esptool.py and using hex format files
I have created a hex file using esptool.py using the following command: esptool.py --chip ESP32 merge_bin --format hex -o ${CMAKE_BINARY_DIR}/22143V${CI_BUILD_TAG}R${CI_COMMIT_SHORT_SHA}.hex --flash_mode dio --flash_size 4MB 0x1000 ${CMAKE_BINARY_DIR}/bootloader/bootloader.bin 0x9000 ${CMAKE_BINARY_...
- Tue Jan 30, 2024 6:13 pm
- Forum: ESP-IDF
- Topic: Issues with ESP-IDF v5.2 using async handlers
- Replies: 1
- Views: 1044
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...
- Tue Nov 21, 2023 4:01 am
- Forum: Hardware
- Topic: ESP32 SPI Chip Select Not working.
- Replies: 0
- Views: 3443
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...
- 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: 1676
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 ...
- 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: 1676
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 = {...
- 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: 1676
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
Thank you in advance
- Fri Jan 20, 2023 5:14 am
- Forum: General Discussion
- Topic: ESP-Hosted Project building and help using with otherlinux processors
- Replies: 1
- Views: 1100
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...
- Fri May 22, 2020 9:21 pm
- Forum: General Discussion
- Topic: Sending large data over MQTT
- Replies: 3
- Views: 8317
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...
- Wed Apr 29, 2020 8:43 pm
- Forum: ESP-IDF
- Topic: Esp32 fat filesystem questions
- Replies: 1
- Views: 3468
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...