diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-02 21:40:12 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-02 21:40:12 +0000 |
| commit | 6d2e492bd4bf2c5d20bf5e34335eeaab44de2bc4 (patch) | |
| tree | e72833f08ed4425e219998382382ed39ab2ab8ac /apps | |
| parent | 6479627413823741fcdde7fa4aea6bb2b10a1b62 (diff) | |
| download | rockbox-6d2e492bd4bf2c5d20bf5e34335eeaab44de2bc4.zip rockbox-6d2e492bd4bf2c5d20bf5e34335eeaab44de2bc4.tar.gz rockbox-6d2e492bd4bf2c5d20bf5e34335eeaab44de2bc4.tar.bz2 rockbox-6d2e492bd4bf2c5d20bf5e34335eeaab44de2bc4.tar.xz | |
Added i2c_init()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1313 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c index 0978a74..816df5c 100644 --- a/apps/main.c +++ b/apps/main.c @@ -31,6 +31,7 @@ #include "system.h" #include "usb.h" #include "adc.h" +#include "i2c.h" #ifndef SIMULATOR #include "dmalloc.h" #include "bmalloc.h" @@ -93,6 +94,8 @@ void init(void) #endif set_irq_level(0); + i2c_init(); + adc_init(); usb_init(); |