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
The very basic program displays millis() every 3 seconds.
millis()
void setup() { Serial.begin(115000); } void loop() { Serial.println(millis()); delay(3000); }
Strange result on CC1352
Expected result on CC1350
The text was updated successfully, but these errors were encountered:
Known 'quick and dirty' workaround is to copy millis() implementation from cc13xx-core .
Sorry, something went wrong.
Thanks!
No branches or pull requests
The very basic program displays
millis()
every 3 seconds.Strange result on CC1352
Expected result on CC1350
The text was updated successfully, but these errors were encountered: