Code_capteur-APDS9960_ecran-STM32F746G-DISCO

Dependencies:   TS_DISCO_F746NG LCD_DISCO_F746NG BSP_DISCO_F746NG BUTTON_GROUP

Clock.h

Committer:
darkseb
Date:
2020-06-22
Revision:
0:5d88688340fc

File content as of revision 0:5d88688340fc:

#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();