summaryrefslogtreecommitdiff
path: root/firmware/export/config-gminisp.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-11-10 20:26:01 +0000
committerJens Arnold <amiconn@rockbox.org>2006-11-10 20:26:01 +0000
commit780f79e7a4028a57e4bf591539a540dbfae2496d (patch)
tree48ddec4b94e11ebc545070b2af6f52144661bf3c /firmware/export/config-gminisp.h
parent270cb0b68172c740820f772563e66a79308e641e (diff)
downloadrockbox-780f79e7a4028a57e4bf591539a540dbfae2496d.tar.gz
rockbox-780f79e7a4028a57e4bf591539a540dbfae2496d.zip
Removed the Gmini 120 and Gmini SP code. These ports are dead, unfortunately.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11504 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config-gminisp.h')
-rw-r--r--firmware/export/config-gminisp.h77
1 files changed, 0 insertions, 77 deletions
diff --git a/firmware/export/config-gminisp.h b/firmware/export/config-gminisp.h
deleted file mode 100644
index 1c1f299afa..0000000000
--- a/firmware/export/config-gminisp.h
+++ /dev/null
@@ -1,77 +0,0 @@
1/* Note: this is just a basic early version that needs attention and
2 corrections! */
3
4/* define this if you have a bitmap LCD display */
5#define HAVE_LCD_BITMAP 1
6
7/* define this if you can invert the colours on your LCD */
8#define HAVE_LCD_INVERT
9
10/* define this if you would like tagcache to build on this target */
11#define HAVE_TAGCACHE
12
13/* LCD dimensions */
14#define LCD_WIDTH 128
15#define LCD_HEIGHT 64
16#define LCD_DEPTH 1
17
18#define CONFIG_KEYPAD GMINI100_PAD
19
20/* Define this if you have a software controlled poweroff */
21#define HAVE_SW_POWEROFF
22
23/* The number of bytes reserved for loadable codecs. Although in this case
24 the codec won't be loadable... */
25#define CODEC_SIZE 0x40000
26
27/* The number of bytes reserved for loadable plugins */
28#define PLUGIN_BUFFER_SIZE 0x80000
29
30#define BATTERY_CAPACITY_DEFAULT 2200 /* default battery capacity */
31
32#ifndef SIMULATOR
33
34/* Define this if you have a TCC730 (CalmRISC16) */
35#define CONFIG_CPU TCC730
36
37/* Define this if you have a gmini 100 style LCD */
38#define CONFIG_LCD LCD_GMINI100
39
40#define CONFIG_I2C I2C_GMINI
41
42/* Define this if you do software codec */
43#define CONFIG_CODEC SWCODEC
44
45/* Type of mobile power, FIXME: probably different, make new type */
46#define CONFIG_BATTERY BATT_LIION2200
47#define BATTERY_CAPACITY_MIN 2200 /* min. capacity selectable */
48#define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */
49#define BATTERY_CAPACITY_INC 50 /* capacity increment */
50#define BATTERY_TYPES_COUNT 1 /* only one type */
51#define BATTERY_SCALE_FACTOR 6465
52/* chosen values at random -- jyp */
53
54/* Hardware controlled charging? FIXME */
55#define CONFIG_CHARGING CHARGING_SIMPLE
56
57#define CPU_FREQ 30000000
58/* approximate value (and false in general since freq is variable) */
59
60/* Always enable debug till we stabilize */
61#define EMULATOR
62
63#define USB_GMINISTYLE
64
65#define CONFIG_I2C I2C_GMINI
66
67#define CONFIG_BACKLIGHT BL_GMINI
68
69#define GMINI_ARCH
70
71/* Software controlled LED */
72#define CONFIG_LED LED_REAL
73
74/* Define this if you have adjustable CPU frequency */
75#define HAVE_ADJUSTABLE_CPU_FREQ
76
77#endif