Slow ADC on ESP32
#10561
Replies: 3 comments 1 reply
-
With @micropython.native and this code, I get about 43 microseconds per sample read = adc.read_u16
for i in range(len(signal)):
signal[i] = read() |
Beta Was this translation helpful? Give feedback.
0 replies
-
With machine.freq(240_000_000) and @micropython.native time gets a bit lowe |
Beta Was this translation helpful? Give feedback.
0 replies
-
On stm32 we have |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Why does simple ADC.read() take ~300uS? It seems very slow if we are speaking about 200kSps ADC. Is there any hack to make it faster?
Beta Was this translation helpful? Give feedback.
All reactions