forked from len0rd/rockbox
Plugin rework 2: (most) Compile-time keyboard configuration, for Ondio adaption. (all) Now using the default event handler, standard placement is now in switch() default case. (calendar, chip8) Fixed usb handling.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5295 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7c2496d35a
commit
79afbafa66
7 changed files with 235 additions and 91 deletions
|
@ -1,4 +1,4 @@
|
|||
/* plugins common to both Player+Recorder model */
|
||||
/* plugins common to all models */
|
||||
battery_test.c
|
||||
favorites.c
|
||||
firmware_flash.c
|
||||
|
@ -11,20 +11,24 @@ stopwatch.c
|
|||
vbrfix.c
|
||||
viewer.c
|
||||
|
||||
#ifdef HAVE_LCD_BITMAP /* recorder model only */
|
||||
#ifdef HAVE_LCD_BITMAP /* Recorder/Ondio models only */
|
||||
bounce.c
|
||||
calculator.c
|
||||
chip8.c
|
||||
cube.c
|
||||
grayscale.c
|
||||
jpeg.c
|
||||
rockblox.c
|
||||
snow.c
|
||||
video.c
|
||||
video.c
|
||||
|
||||
#ifdef HAVE_RTC /* Recorder models only */
|
||||
calendar.c
|
||||
clock.c
|
||||
#endif
|
||||
|
||||
#if CONFIG_KEYPAD != ONDIO_PAD
|
||||
/* gradually bring in the ones not working yet */
|
||||
bounce.c
|
||||
calculator.c
|
||||
calendar.c
|
||||
chip8.c
|
||||
clock.c
|
||||
cube.c
|
||||
flipit.c
|
||||
mandelbrot.c
|
||||
minesweeper.c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue