Displays distance to start location on OLED screen.

Dependencies:   mbed

Clock.h

Committer:
iforce2d
Date:
2018-03-07
Revision:
0:972874f31c98

File content as of revision 0:972874f31c98:

#pragma once
 
#include <stdint.h>
 
// Return the number of seconds since boot.
float clock_s();
 
// Return the number of milliseconds since boot.
uint64_t clock_ms();
 
// Return the number of microseconds since boot.
uint64_t clock_us();