2005-01-04 15:00:55 +00:00
|
|
|
/* Note: this is just a basic early version that needs attention and
|
|
|
|
corrections! */
|
|
|
|
|
|
|
|
/* define this if you have recording possibility */
|
|
|
|
#define HAVE_RECORDING 1
|
|
|
|
|
|
|
|
/* define this if you have a bitmap LCD display */
|
|
|
|
#define HAVE_LCD_BITMAP 1
|
|
|
|
|
|
|
|
/* LCD dimensions */
|
|
|
|
#define LCD_WIDTH 128
|
|
|
|
#define LCD_HEIGHT 64
|
|
|
|
|
|
|
|
/* When button.h is updated with gmini details, then fix this: */
|
2005-01-10 21:54:28 +00:00
|
|
|
#define CONFIG_KEYPAD GMINI100_PAD
|
|
|
|
|
2005-01-04 15:00:55 +00:00
|
|
|
#ifndef SIMULATOR
|
|
|
|
|
2005-01-10 21:54:28 +00:00
|
|
|
/* Define this if you have a TCC730 (CalmRISC16) */
|
|
|
|
#define CONFIG_CPU TCC730
|
|
|
|
|
|
|
|
/* Define this if you have a gmini 100 style LCD */
|
|
|
|
#define CONFIG_LCD LCD_GMINI100
|
2005-01-04 15:00:55 +00:00
|
|
|
|
2005-01-27 12:16:45 +00:00
|
|
|
#define CONFIG_I2C I2C_GMINI
|
|
|
|
|
2005-01-04 15:00:55 +00:00
|
|
|
/* Type of mobile power, FIXME: probably different, make new type */
|
2005-01-10 21:54:28 +00:00
|
|
|
#define CONFIG_BATTERY BATT_LIION2200
|
|
|
|
#define BATTERY_SCALE_FACTOR 6465
|
|
|
|
/* chosen values at random -- jyp */
|
2005-01-04 15:00:55 +00:00
|
|
|
|
|
|
|
/* Define this if the platform can charge batteries */
|
|
|
|
#define HAVE_CHARGING 1
|
|
|
|
|
2005-01-10 21:54:28 +00:00
|
|
|
#define CPU_FREQ 30000000
|
|
|
|
/* approximate value (and false in general since freq is variable) */
|
|
|
|
|
2005-01-23 00:28:12 +00:00
|
|
|
/* Define this if you have a software controlled poweroff */
|
|
|
|
#define HAVE_SW_POWEROFF
|
|
|
|
|
2005-01-10 21:54:28 +00:00
|
|
|
/* Always enable debug till we stabilize */
|
|
|
|
#define EMULATOR
|
|
|
|
#define DEBUG
|
|
|
|
|
2005-01-04 15:00:55 +00:00
|
|
|
#endif
|