Rename printf to prevent naming conflict. Also change comment to conform with Rockbox...
[kugel-rb.git] / firmware / export / rda5802.h
blobe61ecb40aebf35e860ee94e418f3b1f6d8c01e7c
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * $Id$
11 * Tuner header for the RDA Microelectronics RDA5802 FM tuner chip
13 * Copyright (C) 2010 Bertrik Sikken
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
23 ****************************************************************************/
25 #ifndef _RDA5802_H_
26 #define _RDA5802_H_
28 #define HAVE_RADIO_REGION
30 struct rda5802_region_data
32 unsigned char deemphasis; /* 0: 75us, 1: 50us */
33 unsigned char band; /* 0: us/europe, 1: japan */
34 } __attribute__((packed));
36 extern const struct rda5802_region_data rda5802_region_data[TUNER_NUM_REGIONS];
38 struct rda5802_dbg_info
40 uint16_t regs[16]; /* Read registers */
43 bool rda5802_detect(void);
44 void rda5802_init(void);
45 int rda5802_set(int setting, int value);
46 int rda5802_get(int setting);
47 void rda5802_dbg_info(struct rda5802_dbg_info *nfo);
49 #ifndef CONFIG_TUNER_MULTI
50 #define tuner_set rda5802_set
51 #define tuner_get rda5802_get
52 #endif
54 #endif /* _RDA5802_H_ */