summaryrefslogtreecommitdiff
path: root/firmware/hwcompat.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-10-15 12:25:57 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-10-15 12:25:57 +0000
commit0a4b247080dd132e847071adbc006ad9de2ca608 (patch)
tree5eb04ea6eefba517233d9c649ce5f6c56e6d16be /firmware/hwcompat.h
parent6e0a75c596a6c4ec5ec2820e1873c8527aec5007 (diff)
downloadrockbox-0a4b247080dd132e847071adbc006ad9de2ca608.tar.gz
rockbox-0a4b247080dd132e847071adbc006ad9de2ca608.zip
The player firmware now autodetects the LCD type. No need for two player versions anymore
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2658 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/hwcompat.h')
-rw-r--r--firmware/hwcompat.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/hwcompat.h b/firmware/hwcompat.h
index d508218ac5..3a142fb713 100644
--- a/firmware/hwcompat.h
+++ b/firmware/hwcompat.h
@@ -19,6 +19,8 @@
19#ifndef HWCOMPAT_H 19#ifndef HWCOMPAT_H
20#define HWCOMPAT_H 20#define HWCOMPAT_H
21 21
22#include <stdbool.h>
23
22/* Bit mask values for HW compatibility */ 24/* Bit mask values for HW compatibility */
23#define ATA_ADDRESS_300 0x0100 25#define ATA_ADDRESS_300 0x0100
24#define USB_ACTIVE_HIGH 0x0100 26#define USB_ACTIVE_HIGH 0x0100
@@ -27,4 +29,8 @@
27int read_rom_version(void); 29int read_rom_version(void);
28int read_hw_mask(void); 30int read_hw_mask(void);
29 31
32#ifdef ARCHOS_PLAYER
33bool has_new_lcd(void);
34#endif
35
30#endif 36#endif