Search found 2306 matches

by chegewara
Thu Sep 12, 2024 10:47 am
Forum: General Discussion
Topic: eps32 p4 key management unit
Replies: 3
Views: 593

Re: eps32 p4 key management unit

It is espressif internal issues tracking number, just like on github they have IDFGH-xxx.

Strange is that espressif claim this feature support already has been added in February comment
https://github.com/espressif/esp-idf/is ... 1923195626
by chegewara
Thu Sep 12, 2024 10:44 am
Forum: General Discussion
Topic: is it possible to configure an input port? A parallel input on 8 pins that loads a register?
Replies: 4
Views: 595

Re: is it possible to configure an input port? A parallel input on 8 pins that loads a register?

Thank you. I've seen the P4 version but there is no documentation available on the Espressif site AFAIK, and I don't even know if it is produced at the moment. With 55 GPIO it could be a real monster but I've to develop my project in months, not years, in order to show a prototype ASAP to the publi...
by chegewara
Thu Sep 12, 2024 2:34 am
Forum: ESP-IDF
Topic: Flashing new Code to an ESP32s3 While it is Acting as a MSC
Replies: 4
Views: 573

Re: Flashing new Code to an ESP32s3 While it is Acting as a MSC

Yes, it should be possible with composite USB device, and without hardware DTR/RTS. As far as i remember espressif arduino team implemented this some time ago. Espressif is using "special pattern" to switch esp32 into download mode. Its some mix of software DTR/RTS and uart speed set to 1200bps. Whe...
by chegewara
Wed Sep 11, 2024 11:21 pm
Forum: General Discussion
Topic: is it possible to configure an input port? A parallel input on 8 pins that loads a register?
Replies: 4
Views: 595

Re: is it possible to configure an input port? A parallel input on 8 pins that loads a register?

If i understand correctly you may make us of parallel IO on H2, C5, C6 or P4
https://docs.espressif.com/projects/esp ... arlio.html

P4 is most powerful and can handle up to 16+2 lines.
by chegewara
Wed Sep 11, 2024 11:08 pm
Forum: ESP32 Arduino
Topic: Question about ESP32_C3 Speed
Replies: 4
Views: 580

Re: Question about ESP32_C3 Speed

I know this does not answer your question, but i hope this may help you a bit. You asked about C3 chip, but new chips H2, C5 and C6 have new peripheral, which is parallel IO. https://docs.espressif.com/projects/esp-idf/en/stable/esp32c6/api-reference/peripherals/parlio.html https://github.com/espres...
by chegewara
Wed Sep 11, 2024 11:02 pm
Forum: ESP-IDF
Topic: USB speed test
Replies: 5
Views: 744

Re: USB speed test

https://developerhelp.microchip.com/xwiki/bin/view/applications/usb/speeds-specs/full-speed/ In theory CDC ACM should reach transfer around 1MB/s, not sure if esp32 can reach such transfer speed, but it only theory. To get highest throughput you have to make sure that: - esp32 is sending data in tig...
by chegewara
Tue Sep 10, 2024 8:10 pm
Forum: ESP-IDF
Topic: USB speed test
Replies: 5
Views: 744

Re: USB speed test

https://community.st.com/t5/mems-sensors/inprove-the-speed-of-the-mass-storage-as-u-disk/td-p/523996 Now you have to add flash read/write operations time, which is another overhead. Couple years ago I performed USB MSC tests on S3, you can find results somewhere on the forum. As far as I remember th...
by chegewara
Sat Sep 07, 2024 1:45 pm
Forum: ESP-IDF
Topic: Problem adding a component
Replies: 7
Views: 772

Re: Problem adding a component

This is only is confirming what i said. There is a bug in extension. When you do fullclean then managed components will be removed and you will end up with code which has includes and cmake complaining about it, which is wrong. Also you may have and in many cases you will have Kconfig file to config...
by chegewara
Fri Sep 06, 2024 5:01 pm
Forum: ESP-IDF
Topic: Problem adding a component
Replies: 7
Views: 772

Re: Problem adding a component

It suppose to works with buttons from extension. I personally prefer to use CLI instead of extension. Extension is another layer of software, which has a bugs (there is no software w/o bugs), so it may cause more problems one way or another. I am just saying that you have to start build, from cli or...