summaryrefslogtreecommitdiff
path: root/firmware/export/si4700.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/si4700.h')
-rw-r--r--firmware/export/si4700.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/firmware/export/si4700.h b/firmware/export/si4700.h
index bd75bf0817..033b435f2a 100644
--- a/firmware/export/si4700.h
+++ b/firmware/export/si4700.h
@@ -55,7 +55,13 @@ void si4700_rds_read_raw_async(unsigned char *buf, int count); /* implemented by
55void si4700_rds_interrupt(void); 55void si4700_rds_interrupt(void);
56#endif /* (CONFIG_RDS & RDS_CFG_ISR) */ 56#endif /* (CONFIG_RDS & RDS_CFG_ISR) */
57 57
58/* Read raw RDS info for processing */ 58/* Read raw RDS info for processing.
59 * - If RDS_CFG_ISR is set, the tuner driver will call si4700_rds_read_raw_async() which should
60 * perform an asynchronous read and call this function when the data has been read.
61 * - If RDS_CFG_POLL is set, this function will read status and RDS data and process it if a new
62 * packet is available.
63 * - Otherwise this function will read a RDS packet and process it under the assumption that it is
64 * new. */
59void si4700_rds_process(void); 65void si4700_rds_process(void);
60 66
61#endif /* HAVE_RDS_CAP */ 67#endif /* HAVE_RDS_CAP */