Search found 3 matches
- Fri Jun 08, 2018 1:05 pm
- Forum: ESP32 Arduino
- Topic: ESP32 DAC1 and DAC2 not synchronous on Arduino IDE
- Replies: 5
- Views: 9454
Re: ESP32 DAC1 and DAC2 not synchronous on Arduino IDE
How about dual core?? The sampling and hold circuit will work for sure but it require external hardware and keeping the external circuit simple it will slow down the performance. I've already purchase a MCP4802 that should do the trick for my test jig, but I was really hoping to find a software/regi...
- Tue Jun 05, 2018 1:02 pm
- Forum: ESP32 Arduino
- Topic: ESP32 DAC1 and DAC2 not synchronous on Arduino IDE
- Replies: 5
- Views: 9454
Re: ESP32 DAC1 and DAC2 not synchronous on Arduino IDE
Hi, thank you for your suggestion... I was reading all the documentation regarding ledc.h but if I got it correctly I think I'll have the same issue, because all the ledc channels are separated and I'll have to call 2 separate ledc_set_duty and ledc_update_duty for each channel. This will end up aga...
- Sun Jun 03, 2018 4:27 pm
- Forum: ESP32 Arduino
- Topic: ESP32 DAC1 and DAC2 not synchronous on Arduino IDE
- Replies: 5
- Views: 9454
ESP32 DAC1 and DAC2 not synchronous on Arduino IDE
Hi, I'm playing with DACs and using dac_output_voltage(DAC_CHANNEL_1, a); dac_output_voltage(DAC_CHANNEL_2, b); i'm able to write 2 separate values on the ADCs. The issue is that using this 2 separate instructions, the 2 outputs are not updated simultaneously. Is it possible accessing directly the D...