Skip to content
Snippets Groups Projects
Select Git revision
  • 82cec962eda2cf24c47de87a2e56708b42d063d7
  • master default protected
2 results

time.hpp

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 */