summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export')
-rwxr-xr-xfirmware/export/config-hdd1630.h6
-rw-r--r--firmware/export/i2c-pp.h1
2 files changed, 4 insertions, 3 deletions
diff --git a/firmware/export/config-hdd1630.h b/firmware/export/config-hdd1630.h
index 6aed356e11..605a0453ed 100755
--- a/firmware/export/config-hdd1630.h
+++ b/firmware/export/config-hdd1630.h
@@ -12,7 +12,7 @@
12#define CONFIG_STORAGE STORAGE_ATA 12#define CONFIG_STORAGE STORAGE_ATA
13 13
14/* define this if you have recording possibility */ 14/* define this if you have recording possibility */
15/* #define HAVE_RECORDING */ 15#define HAVE_RECORDING
16 16
17/* Define bitmask of input sources - recordable bitmask can be defined 17/* Define bitmask of input sources - recordable bitmask can be defined
18 explicitly if different */ 18 explicitly if different */
@@ -99,8 +99,8 @@
99/* TODO: #define AB_REPEAT_ENABLE 1 */ 99/* TODO: #define AB_REPEAT_ENABLE 1 */
100 100
101/* FM Tuner */ 101/* FM Tuner */
102/* #define CONFIG_TUNER TEA5767 */ 102#define CONFIG_TUNER TEA5767
103/* #define CONFIG_TUNER_XTAL 32768 */ 103#define CONFIG_TUNER_XTAL 32768
104 104
105/* define this if you have a disk storage, i.e. something 105/* define this if you have a disk storage, i.e. something
106 that needs spinups and can cause skips when shaked */ 106 that needs spinups and can cause skips when shaked */
diff --git a/firmware/export/i2c-pp.h b/firmware/export/i2c-pp.h
index d5eff90c43..230b6bbdc9 100644
--- a/firmware/export/i2c-pp.h
+++ b/firmware/export/i2c-pp.h
@@ -56,5 +56,6 @@ void i2c_init(void);
56int i2c_readbyte(unsigned int dev_addr, int addr); 56int i2c_readbyte(unsigned int dev_addr, int addr);
57int pp_i2c_send(unsigned int addr, int data0, int data1); 57int pp_i2c_send(unsigned int addr, int data0, int data1);
58int i2c_readbytes(unsigned int dev_addr, int addr, int len, unsigned char *data); 58int i2c_readbytes(unsigned int dev_addr, int addr, int len, unsigned char *data);
59int i2c_sendbytes(unsigned int dev_addr, int len, const unsigned char *data);
59 60
60#endif 61#endif