We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This sketch will crash after several minutes running on Arduino Zero. Serial output stops, and the frequency on pin 5 becomes approx 258 kHz.
void setup() { Serial.begin(115200); while (!Serial && millis() < 1500) ; delay(10); Serial.println("Tone Issue Test"); delay(20); } void loop() { int frequency = 1500 + random(800); tone(5, frequency); Serial.println(frequency); delayMicroseconds(random(10000)); }
The text was updated successfully, but these errors were encountered:
@aethaniel Any ideas?
Sorry, something went wrong.
Hi @PaulStoffregen, not yet as I didn't implement this API. I will check the code with @agdl but not before next Wednesday, unfortunately.
I'm in no hurry. Just wanted to make sure you knew about the crashing.
@PaulStoffregen try this please #55
Your sketch has been running for 1 hour
agdl
No branches or pull requests
This sketch will crash after several minutes running on Arduino Zero. Serial output stops, and the frequency on pin 5 becomes approx 258 kHz.
The text was updated successfully, but these errors were encountered: