Search found 9 matches
- Fri Nov 15, 2024 4:12 pm
- Forum: ESP-IDF
- Topic: W5500 Resets Chip without error if anything in the SPI connection is faulty.
- Replies: 2
- Views: 430
Re: W5500 Resets Chip without error if anything in the SPI connection is faulty.
Thank you for this help, lol. The reason for the error was a wrongly set Reset_pin to the W5500. The reset pin wasn't even connected in the setup. We set it to 35 which should not really have mattered (or at least prompted an error). This led to the driver install function triggering the watchdog i ...
- Fri Nov 08, 2024 11:59 am
- Forum: ESP-IDF
- Topic: Referencing of component only works with cyclic dependency CMAKE
- Replies: 2
- Views: 1398
Re: Referencing of component only works with cyclic dependency CMAKE
I just saw that i never replied.
Thank you. It worked.
Thank you. It worked.
- Fri Nov 08, 2024 11:29 am
- Forum: ESP-IDF
- Topic: W5500 Resets Chip without error if anything in the SPI connection is faulty.
- Replies: 2
- Views: 430
W5500 Resets Chip without error if anything in the SPI connection is faulty.
CHIP: ESP32S3 ESP-IDF Hi, I know this probably would have been better off in the issue page, but at this point im not aware if maybe there is a good reason for it. When initializing the W5500 it works fine, as long as the SPI communication is stable. The moment the SPI communication does not work, (...
- Thu Nov 23, 2023 10:45 am
- Forum: ESP-IDF
- Topic: ESP-IDF broken since today. Same Error on 2 different machines not connected.
- Replies: 1
- Views: 10402
ESP-IDF broken since today. Same Error on 2 different machines not connected.
Good Morning, today me and my colleague tried to use the Espressif VsCode Extension, to try and build, flash etc. our project. However, since today, not a single Button within the VsCode Extension works. We both use seperate installations of VSCode and Esp-IDF we installed it the recommended way des...
- Fri Feb 24, 2023 12:58 pm
- Forum: ESP-IDF
- Topic: Referencing of component only works with cyclic dependency CMAKE
- Replies: 2
- Views: 1398
Referencing of component only works with cyclic dependency CMAKE
Hi i have a problem, i have 2 components. "ComponentA" controls pin output. It defines functions for this. The idea is,that the other component "ComponentB" calls this function and can set the pins. ComponentB needs these functions. They call the componentA_function in its own functions. So i includ...
- Fri Oct 14, 2022 8:36 am
- Forum: ESP-IDF
- Topic: Multiple SPI Busses in parallel does not work
- Replies: 8
- Views: 3399
Re: Multiple SPI Busses in parallel does not work
thanks for that honest and comprehensive answer.
Thanks again for the help, and i hope you will have a nice rest of the week.
Thanks again for the help, and i hope you will have a nice rest of the week.
- Wed Oct 12, 2022 11:38 am
- Forum: ESP-IDF
- Topic: Multiple SPI Busses in parallel does not work
- Replies: 8
- Views: 3399
Re: Multiple SPI Busses in parallel does not work
Thank you a lot,
replacing the interrupt flag did solve the problem. Maybe a error code could be added to the IDF.
Is there a better documentation regarding the use and limits of these Interrupt flags? I could not really conclude the requirements out of the comments in the code.
replacing the interrupt flag did solve the problem. Maybe a error code could be added to the IDF.
Is there a better documentation regarding the use and limits of these Interrupt flags? I could not really conclude the requirements out of the comments in the code.
- Tue Oct 11, 2022 11:10 am
- Forum: ESP-IDF
- Topic: Multiple SPI Busses in parallel does not work
- Replies: 8
- Views: 3399
Re: Multiple SPI Busses in parallel does not work
Thanks for the timely reply. I tested the 2 SPI Devices on 2 Busses in an isolated environment and it worked just fine. I then retested it within my setup&test function and it stopped working again. I then disabled the modules one by one, observing wether the bug stops occuring if i do not initializ...
- Mon Oct 10, 2022 9:40 am
- Forum: ESP-IDF
- Topic: Multiple SPI Busses in parallel does not work
- Replies: 8
- Views: 3399
Multiple SPI Busses in parallel does not work
We are developing a System in which 5 SPI Slaves are connected to the ESP32-S3. For that we intend to use the SPI2_HOST and SPI3_HOST. SPI2 will have 2 slave devices connected and SPI3 3 slave devices. For this test only one slave is connected to each bus. Initializing the busses independently, the ...