Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configured processing interval in "ADC_Dual_Mode " example is not realistic #87

Open
StefanL38 opened this issue Jan 12, 2025 · 2 comments
Labels
topic: documentation Related to documentation for the project type: imperfection Perceived defect in any part of project

Comments

@StefanL38
Copy link

StefanL38 commented Jan 12, 2025

The "ADC_Dual_Mode" example is configured to process the buffer every millisecond:

This interval is nonsense because the example must acquire new values and print a significant number of characters in that time:

Serial.println(buf1.timestamp()); // Print buffer timestamp
Serial.println(buf1[0]); // Print sample from first channel
Serial.println(buf1[1]); // Print sample from second channel
Serial.println(buf2.timestamp()); // Print buffer timestamp
Serial.println(buf2[0]); // Print sample from first channel
Serial.println(buf2[1]); // Print sample from second channel

This will take longer than a millisecond. And so the effective update rate will be slower than implied by the code.

@per1234 per1234 changed the title nonsense values in example Arduino_AdvancedAnalog/examples/Advanced/ADC_Dual_Mode /ADC_Dual_Mode.ino Configured processing interval in "ADC_Dual_Mode " example is not realistic Jan 13, 2025
@per1234 per1234 added type: imperfection Perceived defect in any part of project topic: documentation Related to documentation for the project labels Jan 13, 2025
@leonardocavagnis
Copy link
Contributor

Hey! Thanks for reporting!
Please, open a PR proposing a suitable delay time
Thanks

@iabdalkader
Copy link
Collaborator

iabdalkader commented Jan 13, 2025

configured to process the buffer every millisecond:

No, it's not. It prints the values if at least 1 millisecond has passed since the last print, to throttle the output. This example is just meant to demonstrate how to configure dual ADCs, you should not be printing ADC values anyway. That said, please feel free to improve the example if you like.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: documentation Related to documentation for the project type: imperfection Perceived defect in any part of project
Projects
None yet
Development

No branches or pull requests

4 participants