diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-06-07 10:29:14 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-06-07 10:29:14 +0000 |
| commit | 7a9f95d8dbb18f5e7c952657fae919f18a1f4c40 (patch) | |
| tree | 5ba1f253e232d179491b1108178e5aa22e176c74 | |
| parent | 8b1168bc94e2f4276bed68d6af1ab58b54aae815 (diff) | |
| download | rockbox-7a9f95d8dbb18f5e7c952657fae919f18a1f4c40.zip rockbox-7a9f95d8dbb18f5e7c952657fae919f18a1f4c40.tar.gz rockbox-7a9f95d8dbb18f5e7c952657fae919f18a1f4c40.tar.bz2 rockbox-7a9f95d8dbb18f5e7c952657fae919f18a1f4c40.tar.xz | |
Changed frequency for Recorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@903 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/system.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/firmware/system.h b/firmware/system.h index b65358d..28c33d6 100644 --- a/firmware/system.h +++ b/firmware/system.h @@ -21,8 +21,13 @@ #define __SYSTEM_H__ #include "sh7034.h" +#include "config.h" -#define FREQ 12000000 /* cycle time ~83.3ns */ +#ifdef ARCHOS_RECORDER +# define FREQ 11059200 +#else +# define FREQ 12000000 /* cycle time ~83.3ns */ +#endif #define BAUDRATE 9600 #ifndef NULL |