forked from len0rd/rockbox
Added Philipp Pertermanns oscillograph demo
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2334 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2c63937371
commit
4da04f3bf3
4 changed files with 223 additions and 0 deletions
|
|
@ -35,6 +35,7 @@
|
|||
|
||||
extern Menu bounce(void);
|
||||
extern Menu snow(void);
|
||||
extern Menu oscillograph(void);
|
||||
|
||||
Menu demo_menu(void)
|
||||
{
|
||||
|
|
@ -44,6 +45,9 @@ Menu demo_menu(void)
|
|||
struct menu_items items[] = {
|
||||
{ str(LANG_BOUNCE), bounce },
|
||||
{ str(LANG_SNOW), snow },
|
||||
#ifndef SIMULATOR
|
||||
{ "Oscillograph", oscillograph },
|
||||
#endif
|
||||
};
|
||||
|
||||
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue