summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-06-07 10:29:14 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-06-07 10:29:14 +0000
commit7a9f95d8dbb18f5e7c952657fae919f18a1f4c40 (patch)
tree5ba1f253e232d179491b1108178e5aa22e176c74
parent8b1168bc94e2f4276bed68d6af1ab58b54aae815 (diff)
downloadrockbox-7a9f95d8dbb18f5e7c952657fae919f18a1f4c40.tar.gz
rockbox-7a9f95d8dbb18f5e7c952657fae919f18a1f4c40.zip
Changed frequency for Recorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@903 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/system.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/firmware/system.h b/firmware/system.h
index b65358d415..28c33d6c19 100644
--- a/firmware/system.h
+++ b/firmware/system.h
@@ -21,8 +21,13 @@
21#define __SYSTEM_H__ 21#define __SYSTEM_H__
22 22
23#include "sh7034.h" 23#include "sh7034.h"
24#include "config.h"
24 25
25#define FREQ 12000000 /* cycle time ~83.3ns */ 26#ifdef ARCHOS_RECORDER
27# define FREQ 11059200
28#else
29# define FREQ 12000000 /* cycle time ~83.3ns */
30#endif
26#define BAUDRATE 9600 31#define BAUDRATE 9600
27 32
28#ifndef NULL 33#ifndef NULL