Search found 113 matches

by djixon
Sat Aug 17, 2024 8:51 am
Forum: ESP-IDF
Topic: using RMT (led_strip) causes failing JTAG USB-Debugging
Replies: 1
Views: 623

Re: using RMT (led_strip) causes failing JTAG USB-Debugging

why 0 in resolution frequency?
by djixon
Sat Aug 17, 2024 8:47 am
Forum: ESP-IDF
Topic: ESP32S3 ADC sampling using DMA
Replies: 1
Views: 616

Re: ESP32S3 ADC sampling using DMA

You can use ULP co-processor integrated into S3 to do that for you with 0% utilization of both LX7 cores. It also can work in deep sleep mode where both LX7 cores are shut down. There are examples within IDF how to do that. Basically, the only you need is a few bytes in fast ram to store measured va...
by djixon
Sat Aug 17, 2024 8:13 am
Forum: Hardware
Topic: ESP32-P4 this is insane
Replies: 7
Views: 1903

Re: ESP32-P4 this is insane

Off course, I didn't want to compare hardware cappabilities because those two dev board are from two completelly different categories. My intention was focused on prices just to point out that price of 222 Euros is way tooopp high because for half of that price you can buy 10 times (or more) stronge...
by djixon
Fri Aug 16, 2024 3:07 pm
Forum: Hardware
Topic: Closing of Olimpic games ceremony LED lights in crowd
Replies: 2
Views: 871

Re: Closing of Olimpic games ceremony LED lights in crowd

https://youtu.be/jcB7QA5N7CE?feature=shared try this one.... it is at 8 minutes and 10 seconds
by djixon
Fri Aug 16, 2024 2:53 pm
Forum: Hardware
Topic: ESP32-P4 this is insane
Replies: 7
Views: 1903

Re: ESP32-P4 this is insane

P4 is supposed to be high performance (400 Mhz) highly integrated soc with AI implemented instructions, h264 hardware codec and a lot of other interesting things packed into hardware. It doesnt have wifi or bt, (if that is required then some of esp32 chips from C or S families can be added like on t...
by djixon
Fri Aug 16, 2024 12:28 pm
Forum: Hardware
Topic: Closing of Olimpic games ceremony LED lights in crowd
Replies: 2
Views: 871

Closing of Olimpic games ceremony LED lights in crowd

I am wandering is that achieved with ESP32 controllers? Each visitor of closing ceremony got a LED light bracelet and all of them were in sync allowing formation of "audience BIG LED PANEL" Here is official video of ceremony ..... interesting part starts at 1h and 25 minutes. https://www.youtube.com...
by djixon
Fri Aug 16, 2024 11:31 am
Forum: Hardware
Topic: Can ESP32 translate incoming midi notes (usb) to data output? (LED on/off & brightness)
Replies: 1
Views: 839

Re: Can ESP32 translate incoming midi notes (usb) to data output? (LED on/off & brightness)

Well, there are potentialy 2 issues with that. 1. USB output from your drum module can (or can not) be fully MIDI compatibile. If it requires any kind of drivers for example on windows PC to allow PC receives midi events (note ON/OFF, velocities events etc) then similar kind of driver code would be ...
by djixon
Fri Aug 16, 2024 10:25 am
Forum: Hardware
Topic: ESP32-P4 this is insane
Replies: 7
Views: 1903

ESP32-P4 this is insane

With 222 Euros price for P4 dev board https://de.aliexpress.com/w/wholesale-esp32--p4.html?spm=a2g0o.productlist.search.0 , that product is not going to survive ...... A chance for P4 to take a place and replace the current products of similar capabilities exists only with the price under 15 Bucks o...
by djixon
Sun Jun 02, 2024 12:38 pm
Forum: ESP-IDF
Topic: (edited) How to force compiler of C code with 64bit arithmetics to generate routines with non-divergent execution path?
Replies: 5
Views: 1157

Re: (edited) How to force compiler of C code with 64bit arithmetics to generate routines with non-divergent execution pa

In the case of "u64 - u64" there's probably no "fast" way to use the conditional move instructions because they only compare against 0. Well, in the case of 64 bit addition/subtraction operations, the value of the carry/borrow bit can be only 0 or 1 (depends only on lower 32 bits of both operands),...
by djixon
Mon May 27, 2024 12:33 pm
Forum: ESP-IDF
Topic: Setting the WIFI in NaN mode for data monitoring
Replies: 1
Views: 589

Setting the WIFI in NaN mode for data monitoring

Is there any working API (or it has to be written from the scratch) which allows this for WPA2 security level? For example you have two of ESP32 devices (one as AP and second as STA) properly configured and connected over wifi lets call them PEERs. So, both MAC addresses are known, wifi channel is a...