summaryrefslogtreecommitdiff
path: root/firmware/export/config-gmini120.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config-gmini120.h')
-rw-r--r--firmware/export/config-gmini120.h86
1 files changed, 0 insertions, 86 deletions
diff --git a/firmware/export/config-gmini120.h b/firmware/export/config-gmini120.h
deleted file mode 100644
index a393b17a8a..0000000000
--- a/firmware/export/config-gmini120.h
+++ /dev/null
@@ -1,86 +0,0 @@
1/* Note: this is just a basic early version that needs attention and
2 corrections! */
3
4/* define this if you have recording possibility */
5#define HAVE_RECORDING 1
6
7/* define this if you have a bitmap LCD display */
8#define HAVE_LCD_BITMAP 1
9
10/* define this if you can invert the colours on your LCD */
11#define HAVE_LCD_INVERT
12
13/* define this if you have a real-time clock */
14#define CONFIG_RTC RTC_M41ST84W
15
16/* define this if you have RTC RAM available for settings */
17#define HAVE_RTC_RAM 1
18
19/* define this if you would like tagcache to build on this target */
20#define HAVE_TAGCACHE
21
22/* LCD dimensions */
23#define LCD_WIDTH 128
24#define LCD_HEIGHT 64
25#define LCD_DEPTH 1
26
27#define CONFIG_KEYPAD GMINI100_PAD
28
29/* Define this if you have a software controlled poweroff */
30#define HAVE_SW_POWEROFF
31
32/* The number of bytes reserved for loadable codecs. Although in this case
33 the codec won't be loadable... */
34#define CODEC_SIZE 0x40000
35
36/* The number of bytes reserved for loadable plugins */
37#define PLUGIN_BUFFER_SIZE 0x80000
38
39#define BATTERY_CAPACITY_DEFAULT 2200 /* default battery capacity */
40
41#ifndef SIMULATOR
42
43/* Define this if you have a TCC730 (CalmRISC16) */
44#define CONFIG_CPU TCC730
45
46/* Define this if you have a gmini 100 style LCD */
47#define CONFIG_LCD LCD_GMINI100
48
49#define CONFIG_I2C I2C_GMINI
50
51/* Define this if you do software codec */
52#define CONFIG_CODEC SWCODEC
53
54/* Type of mobile power, FIXME: probably different, make new type */
55#define CONFIG_BATTERY BATT_LIION2200
56#define BATTERY_CAPACITY_MIN 2200 /* min. capacity selectable */
57#define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */
58#define BATTERY_CAPACITY_INC 50 /* capacity increment */
59#define BATTERY_TYPES_COUNT 1 /* only one type */
60#define BATTERY_SCALE_FACTOR 6465
61/* chosen values at random -- jyp */
62
63/* Hardware controlled charging? FIXME */
64#define CONFIG_CHARGING CHARGING_SIMPLE
65
66#define CPU_FREQ 30000000
67/* approximate value (and false in general since freq is variable) */
68
69/* Always enable debug till we stabilize */
70#define EMULATOR
71
72#define USB_GMINISTYLE
73
74#define CONFIG_I2C I2C_GMINI
75
76#define CONFIG_BACKLIGHT BL_GMINI
77
78#define GMINI_ARCH
79
80/* Software controlled LED */
81#define CONFIG_LED LED_REAL
82
83/* Define this if you have adjustable CPU frequency */
84#define HAVE_ADJUSTABLE_CPU_FREQ
85
86#endif