Sebastien Luzy / Mbed OS Code_capteur-APDS9960_ecran-STM32F746G-DISCO

Dependencies:   TS_DISCO_F746NG LCD_DISCO_F746NG BSP_DISCO_F746NG BUTTON_GROUP

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Clock.h Source File

Clock.h

00001 #pragma once
00002  
00003 #include <stdint.h>
00004  
00005 // Return the number of seconds since boot.
00006 float clock_s();
00007  
00008 // Return the number of milliseconds since boot.
00009 uint64_t clock_ms();
00010  
00011 // Return the number of microseconds since boot.
00012 uint64_t clock_us();