Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

pico_sdk_import.cmake

Blame
  • time.hpp 213 B
    #ifndef TIME_H
    #define TIME_H
    
    #include <stdint.h>
    
    /**
     * Initialises time.
     */
    void initTime();
    
    /**
     * Gets the number of milliseconds since program start.
     */
    uint32_t getCurrentMillis();
    
    #endif /* TIME_H */