diff options
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/CATEGORIES | 1 | ||||
-rw-r--r-- | apps/plugins/SOURCES | 1 | ||||
-rw-r--r-- | apps/plugins/SOURCES.app_build | 1 | ||||
-rw-r--r-- | apps/plugins/test_kbd.c | 46 |
4 files changed, 49 insertions, 0 deletions
diff --git a/apps/plugins/CATEGORIES b/apps/plugins/CATEGORIES index 0ef3fe81a4..3444dde9fa 100644 --- a/apps/plugins/CATEGORIES +++ b/apps/plugins/CATEGORIES | |||
@@ -172,6 +172,7 @@ test_disk,apps | |||
172 | test_fps,apps | 172 | test_fps,apps |
173 | test_grey,apps | 173 | test_grey,apps |
174 | test_gfx,apps | 174 | test_gfx,apps |
175 | test_kbd,apps | ||
175 | test_resize,apps | 176 | test_resize,apps |
176 | test_sampr,apps | 177 | test_sampr,apps |
177 | test_scanrate,apps | 178 | test_scanrate,apps |
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES index e3a10c9d15..3e0a65da57 100644 --- a/apps/plugins/SOURCES +++ b/apps/plugins/SOURCES | |||
@@ -204,6 +204,7 @@ test_core_jpeg.c | |||
204 | test_disk.c | 204 | test_disk.c |
205 | test_fps.c | 205 | test_fps.c |
206 | test_gfx.c | 206 | test_gfx.c |
207 | test_kbd.c | ||
207 | #if LCD_DEPTH < 4 && !defined(SIMULATOR) | 208 | #if LCD_DEPTH < 4 && !defined(SIMULATOR) |
208 | test_scanrate.c | 209 | test_scanrate.c |
209 | #endif | 210 | #endif |
diff --git a/apps/plugins/SOURCES.app_build b/apps/plugins/SOURCES.app_build index ac9f01a896..50c79ec016 100644 --- a/apps/plugins/SOURCES.app_build +++ b/apps/plugins/SOURCES.app_build | |||
@@ -19,6 +19,7 @@ stopwatch.lua | |||
19 | 19 | ||
20 | 20 | ||
21 | #ifdef HAVE_TEST_PLUGINS /* enable in advanced build options */ | 21 | #ifdef HAVE_TEST_PLUGINS /* enable in advanced build options */ |
22 | test_kbd.c | ||
22 | test_fps.c | 23 | test_fps.c |
23 | #ifdef HAVE_ADJUSTABLE_CPU_FREQ | 24 | #ifdef HAVE_ADJUSTABLE_CPU_FREQ |
24 | test_boost.c | 25 | test_boost.c |
diff --git a/apps/plugins/test_kbd.c b/apps/plugins/test_kbd.c new file mode 100644 index 0000000000..a40aa4c76a --- /dev/null +++ b/apps/plugins/test_kbd.c | |||
@@ -0,0 +1,46 @@ | |||
1 | /*************************************************************************** | ||
2 | * __________ __ ___. | ||
3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ | ||
4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / | ||
5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < | ||
6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ | ||
7 | * \/ \/ \/ \/ \/ | ||
8 | * $Id$ | ||
9 | * | ||
10 | * Copyright (C) 2002 Björn Stenberg | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or | ||
13 | * modify it under the terms of the GNU General Public License | ||
14 | * as published by the Free Software Foundation; either version 2 | ||
15 | * of the License, or (at your option) any later version. | ||
16 | * | ||
17 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY | ||
18 | * KIND, either express or implied. | ||
19 | * | ||
20 | ****************************************************************************/ | ||
21 | |||
22 | /* welcome to the example rockbox plugin */ | ||
23 | |||
24 | /* mandatory include for all plugins */ | ||
25 | #include "plugin.h" | ||
26 | |||
27 | /* this is the plugin entry point */ | ||
28 | enum plugin_status plugin_start(const void* parameter) | ||
29 | { | ||
30 | /* if you don't use the parameter, you can do like | ||
31 | this to avoid the compiler warning about it */ | ||
32 | (void)parameter; | ||
33 | |||
34 | /* "rb->" marks a plugin api call. Rockbox offers many of its built-in | ||
35 | * functions to plugins */ | ||
36 | /* now go ahead and have fun! */ | ||
37 | char buffer[MAX_PATH]; | ||
38 | rb->snprintf(buffer, sizeof(buffer), "Keyboard test; Current plugin filename: '%s'", | ||
39 | rb->plugin_get_current_filename()); | ||
40 | |||
41 | if (rb->kbd_input(buffer, sizeof(buffer), NULL) == 0) | ||
42 | rb->splash(HZ*2, buffer); | ||
43 | |||
44 | /* tell Rockbox that we have completed successfully */ | ||
45 | return PLUGIN_OK; | ||
46 | } | ||