diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2012-02-07 19:50:33 +0100 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2012-02-18 11:02:13 +0100 |
| commit | 43a940c8cb7201c8e925ac4ef28aff86cb02f42f (patch) | |
| tree | 5564010c87507b1bfff8c0ce563cf9fe3bae21e2 /firmware/export | |
| parent | 9a32a7b40442e54ee6d8e2403e0f9a154dc4c77f (diff) | |
| download | rockbox-43a940c8cb7201c8e925ac4ef28aff86cb02f42f.zip rockbox-43a940c8cb7201c8e925ac4ef28aff86cb02f42f.tar.gz rockbox-43a940c8cb7201c8e925ac4ef28aff86cb02f42f.tar.bz2 rockbox-43a940c8cb7201c8e925ac4ef28aff86cb02f42f.tar.xz | |
rds: add basic RDS clock-time support
Change-Id: I931182ccd20cf8899f3ce9b6b8d7c7c5f4ea006f
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/rds.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/rds.h b/firmware/export/rds.h index 990f9b4..ff1608f 100644 --- a/firmware/export/rds.h +++ b/firmware/export/rds.h @@ -20,6 +20,7 @@ ****************************************************************************/ #include <stdint.h> #include <stdbool.h> +#include "time.h" void rds_init(void); @@ -29,5 +30,6 @@ bool rds_process(uint16_t data[4]); uint16_t rds_get_pi(void); char* rds_get_ps(void); char* rds_get_rt(void); +time_t rds_get_ct(void); |