281fc2e708
Initial button maps for still unsuported targets (Sansa Fuze, Sansa Clip, Sansa m200, Creative ZV(M) and the Phillips HDD1630). Low targets like archos are still short in memory to be suported. Update the manual for the Sansa players. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19988 a1c6a512-1295-4272-9138-f99709370657
55 lines
1 KiB
Text
55 lines
1 KiB
Text
#if !defined(IRIVER_IFP7XX_SERIES)
|
|
|
|
/* For all targets */
|
|
shortcuts
|
|
|
|
/* For various targets... */
|
|
|
|
#if CONFIG_RTC
|
|
clock
|
|
#endif
|
|
|
|
#if (CONFIG_KEYPAD == RECORDER_PAD) || defined(HAVE_LCD_COLOR) \
|
|
|| defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5)
|
|
rockboy
|
|
#endif
|
|
|
|
/* For all targets with a bitmap display */
|
|
#ifdef HAVE_LCD_BITMAP
|
|
chessbox
|
|
jpeg
|
|
sudoku
|
|
reversi
|
|
/* Plugin is about 40k, rounding up to 65k to be safe. */
|
|
#if (defined(PLUGIN_BUFFER_SIZE) && PLUGIN_BUFFER_SIZE >= 0x10000)
|
|
goban
|
|
#endif
|
|
#ifndef OLYMPUS_MROBE_500
|
|
zxbox
|
|
#endif
|
|
#endif
|
|
|
|
/* For all big enough colour screens, iriver H1x0 and iAudio M5 */
|
|
#if defined(HAVE_LCD_COLOR) && LCD_HEIGHT > 80\
|
|
|| defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5)
|
|
pacbox
|
|
#endif
|
|
|
|
/* For all the color targets */
|
|
#if defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \
|
|
(LCD_DEPTH == 2) && !defined(ARCHOS_AV300)
|
|
#ifndef RB_PROFILE
|
|
doom
|
|
#endif
|
|
#endif
|
|
|
|
/* For all the swcodec targets */
|
|
#if CONFIG_CODEC == SWCODEC
|
|
midi
|
|
/* beatbox */
|
|
#ifndef RB_PROFILE
|
|
mpegplayer
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* IRIVER_IFP7XX_SERIES */
|