1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
8 * $Id: test_scanrate.c 19673 2009-01-04 23:33:15Z saratoga $
10 * Copyright (C) 2009 Björn Stenberg
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.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
26 enum plugin_status
plugin_start(const void* parameter
)
33 rb
->lcd_setfont(FONT_SYSFIXED
);
39 for (j
=1; j
<100000; j
++)
41 rb
->lcd_clear_display();
42 rb
->snprintf(buf
,sizeof buf
, "%s %d",boost
?"boost":"normal",count
);
43 rb
->lcd_putsxy(0, 0, buf
);
47 int button
= rb
->button_get(false);