1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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 int last_tick
= *rb
->current_tick
;
36 rb
->lcd_setfont(FONT_SYSFIXED
);
41 for (j
=1; j
<100000; j
++)
43 rb
->screens
[0]->clear_display();
44 rb
->screens
[0]->putsf(0, 0, "%s: %d",boost
?"boost":"normal",count
);
45 if (TIME_AFTER(*rb
->current_tick
, last_tick
+HZ
))
47 last_tick
= *rb
->current_tick
;
48 per_sec
= count
-last_count
;
51 rb
->screens
[0]->putsf(0, 1, "loops/s: %d", per_sec
);
52 rb
->screens
[0]->update();
55 switch (rb
->get_action(CONTEXT_STD
, TIMEOUT_NOBLOCK
))
57 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
74 case ACTION_STD_CANCEL
: