diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-13 22:12:40 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-13 22:12:40 +0000 |
| commit | fb5d2629a1842f7c201b3d62d6e5050b42de9b19 (patch) | |
| tree | 16c783f47f51444287bf2a35d587f678c95a17db | |
| parent | 3a3418dd7bc86fce06ca08f00bd9a8399fb4de97 (diff) | |
| download | rockbox-fb5d2629a1842f7c201b3d62d6e5050b42de9b19.zip rockbox-fb5d2629a1842f7c201b3d62d6e5050b42de9b19.tar.gz rockbox-fb5d2629a1842f7c201b3d62d6e5050b42de9b19.tar.bz2 rockbox-fb5d2629a1842f7c201b3d62d6e5050b42de9b19.tar.xz | |
Corrected UART register names
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7325 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/mcf5249.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/firmware/export/mcf5249.h b/firmware/export/mcf5249.h index 66e92ee..e2fa50e 100644 --- a/firmware/export/mcf5249.h +++ b/firmware/export/mcf5249.h @@ -60,8 +60,7 @@ #define TCN1 (*(volatile unsigned short *)(MBAR + 0x18c)) #define TER1 (*(volatile unsigned short *)(MBAR + 0x190)) -#define UMR10 (*(volatile unsigned char *)(MBAR + 0x1c0)) -#define UMR20 (*(volatile unsigned char *)(MBAR + 0x1c0)) +#define UMR0 (*(volatile unsigned char *)(MBAR + 0x1c0)) #define USR0 (*(volatile unsigned char *)(MBAR + 0x1c4)) #define UCSR0 (*(volatile unsigned char *)(MBAR + 0x1c4)) #define UCR0 (*(volatile unsigned char *)(MBAR + 0x1c8)) @@ -78,8 +77,7 @@ #define UOP10 (*(volatile unsigned char *)(MBAR + 0x1f8)) #define UOP00 (*(volatile unsigned char *)(MBAR + 0x1fc)) -#define UMR11 (*(volatile unsigned char *)(MBAR + 0x200)) -#define UMR21 (*(volatile unsigned char *)(MBAR + 0x200)) +#define UMR1 (*(volatile unsigned char *)(MBAR + 0x200)) #define USR1 (*(volatile unsigned char *)(MBAR + 0x204)) #define UCSR1 (*(volatile unsigned char *)(MBAR + 0x204)) #define UCR1 (*(volatile unsigned char *)(MBAR + 0x208)) |