diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-19 15:37:26 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-19 15:37:26 +0000 |
commit | 581267b0db81c28f9f28c648549458a1d6b312fb (patch) | |
tree | fcbb6e0e1eee8ff4bfa6ddf1c44e144dd298df3b | |
parent | d2a9b5bfd856db84b2284e236021d01e4ff3b0a6 (diff) | |
download | ChibiOS-581267b0db81c28f9f28c648549458a1d6b312fb.tar.gz ChibiOS-581267b0db81c28f9f28c648549458a1d6b312fb.tar.bz2 ChibiOS-581267b0db81c28f9f28c648549458a1d6b312fb.zip |
chrtclib. Added forgotten prototype.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4216 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/various/chrtclib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/various/chrtclib.h b/os/various/chrtclib.h index 7831be83d..7b3493636 100644 --- a/os/various/chrtclib.h +++ b/os/various/chrtclib.h @@ -46,6 +46,7 @@ extern "C" { void rtcGetTimeTm(RTCDriver *rtcp, struct tm *timp);
void rtcSetTimeTm(RTCDriver *rtcp, struct tm *timp);
time_t rtcGetTimeUnixSec(RTCDriver *rtcp);
+ uint64_t rtcGetTimeUnixUsec(RTCDriver *rtcp);
void rtcSetTimeUnixSec(RTCDriver *rtcp, time_t tv_sec);
#ifdef __cplusplus
}
|