Fix a few dead references in the manual and add an 's' where one was missing.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17972 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f626357cc3
commit
f6cde72ce9
5 changed files with 21 additions and 12 deletions
|
@ -70,12 +70,12 @@ void show_debug_screen(void)
|
|||
line = 1;
|
||||
button = button_get(false);
|
||||
|
||||
/* Power-off if POWER button has been held for a long time
|
||||
/* Power-off if POWER button has been held for a time
|
||||
This loop is currently running at about 100 iterations/second
|
||||
*/
|
||||
if (button & POWEROFF_BUTTON) {
|
||||
power_count++;
|
||||
if (power_count > 200)
|
||||
if (power_count > 100)
|
||||
do_power_off = true;
|
||||
} else {
|
||||
power_count = 0;
|
||||
|
|
|
@ -213,8 +213,6 @@ void lcd_set_flip(bool yesno)
|
|||
|
||||
/*** update functions ***/
|
||||
|
||||
/*** update functions ***/
|
||||
|
||||
void lcd_yuv_set_options(unsigned options)
|
||||
{
|
||||
lcd_yuv_options = options;
|
||||
|
|
|
@ -42,6 +42,21 @@ bool ide_powered(void)
|
|||
|
||||
void power_off(void)
|
||||
{
|
||||
|
||||
//sleep(HZ/1000); /* 10ms */
|
||||
//lcd_send_command(0x02);
|
||||
|
||||
//sleep(HZ/1000); /* 10ms */
|
||||
//lcd_send_command(0x00);
|
||||
|
||||
//sleep(HZ/1000); /* 10ms */
|
||||
sleep(HZ/1000); /* 10ms */
|
||||
|
||||
// From MAIN.c
|
||||
GPIOB &= ~(0x04);
|
||||
//GPIOD &= ~(0x80|0x40);
|
||||
|
||||
|
||||
}
|
||||
|
||||
#else /* SIMULATOR */
|
||||
|
@ -56,10 +71,6 @@ void charger_enable(bool on)
|
|||
(void)on;
|
||||
}
|
||||
|
||||
void power_off(void)
|
||||
{
|
||||
}
|
||||
|
||||
void ide_power_enable(bool on)
|
||||
{
|
||||
(void)on;
|
||||
|
|
|
@ -147,12 +147,12 @@ from where you currently are.
|
|||
|
||||
\item[Save Current Playlist:]
|
||||
Saves the current dynamic playlist, excluding queued tracks, to the
|
||||
specified file. If no path is provided then playlist is saved to current
|
||||
directory (see \reference{ref:Playlistsubmenu}).
|
||||
specified file. If no path is provided then playlist is saved to the current
|
||||
directory.
|
||||
|
||||
\item[Playlist Catalog:]
|
||||
The \setting{Playlist Catalog} provides a simple interface to maintain
|
||||
several playlist (see \reference{label:WorkingWithPlaylists}).
|
||||
several playlists (see \reference{ref:working_with_playlists}).
|
||||
\end{description}
|
||||
|
||||
\section{Plugins}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
\subsection{Sort}
|
||||
This plugin takes a file and sorts it in ascending alphabetical order. Case is
|
||||
ignored. This is useful for ordering playlists generated by the
|
||||
\setting{Create Playlist} menu option (see \reference{ref:Playlistsubmenu}).
|
||||
\setting{Create Playlist} menu option (see \reference{ref:playlistoptions}).
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue