Tapton School Project to monitor and log SEN students physiological condition using GSR (conductivity) & Heart Rate and displaying output and logging the data to an SD card

Dependencies:   SMARTGPU2 mbed

Committer:
raheel123
Date:
Fri Feb 09 08:34:23 2018 +0000
Revision:
0:0e26bf847b57
Tapton school SENtinel project

Who changed what in which revision?

UserRevisionLine numberNew contents of line
raheel123 0:0e26bf847b57 1 #pragma once
raheel123 0:0e26bf847b57 2
raheel123 0:0e26bf847b57 3 #include <stdint.h>
raheel123 0:0e26bf847b57 4
raheel123 0:0e26bf847b57 5 // Return the number of seconds since boot.
raheel123 0:0e26bf847b57 6 float clock_s();
raheel123 0:0e26bf847b57 7
raheel123 0:0e26bf847b57 8 // Return the number of milliseconds since boot.
raheel123 0:0e26bf847b57 9 uint64_t clock_ms();
raheel123 0:0e26bf847b57 10
raheel123 0:0e26bf847b57 11 // Return the number of microseconds since boot.
raheel123 0:0e26bf847b57 12 uint64_t clock_us();
raheel123 0:0e26bf847b57 13