Basic port of the gcopeland nRF24L01 library

Dependencies:   mbed

Committer:
iforce2d
Date:
Mon Mar 25 07:35:02 2019 +0000
Revision:
2:75a5b58b2338
Basic port of gcopeland nRF24L01 library

Who changed what in which revision?

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