Raspberry Pi Pico ADC changes the sampling rate in Free-running Sampling mode
Closed this issue · 5 comments
leezisheng commented
leezisheng commented
leezisheng commented
Solved, The right hand expression div_value | (int_part << 8) | frac_part seems wrong.
lurch commented
This is probably something that you should ask about at https://github.com/orgs/micropython/discussions rather than in this repo.
leezisheng commented
done,expressiondiv_value | (int_part << 8) | frac_part
change to (int_part << 8) | frac_part
.
lurch commented
For anybody else finding this issue in future: please see https://github.com/orgs/micropython/discussions/15816