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

millis() delivers strange result on CC1352 #18

Open
rei-vilo opened this issue Apr 20, 2020 · 2 comments
Open

millis() delivers strange result on CC1352 #18

rei-vilo opened this issue Apr 20, 2020 · 2 comments

Comments

@rei-vilo
Copy link
Member

The very basic program displays millis() every 3 seconds.

void setup() {
  Serial.begin(115000);
}

void loop() {
  Serial.println(millis());
  delay(3000);
}

Strange result on CC1352

Capture 2020-04-20 à 21 01 45

Expected result on CC1350

Capture 2020-04-20 à 21 00 04

@lyusupov
Copy link

lyusupov commented May 6, 2020

Known 'quick and dirty' workaround is to copy millis() implementation from cc13xx-core .

@rei-vilo
Copy link
Member Author

rei-vilo commented May 6, 2020

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants