8000 Nano 33 BLE: micros() function does not work · Issue #60 · arduino/ArduinoCore-zephyr · GitHub
[go: up one dir, main page]

Skip to content
Nano 33 BLE: micros() function does not work #60
Closed
@mjs513

Description

@mjs513

While playing with sdfat library found sketch was hanging on test for micro(). Running the following simple test sketch shows micros() always returns 0:

unsigned long time; 

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

void loop() { 
   Serial.print("Time:");
   time = micros(); //prints time since program started
   Serial.println(time); // wait a second so as not to send massive amounts of data
   delay(1000); 
}

RETURNS:
Time:0
Time:0
Time:0
Time:0
Time:0
Time:0

will look more later but off to do other things. Think @facchinm did a pr on the giga for time functions.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0