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:
Marc Guay 2008-07-06 21:32:59 +00:00
parent f626357cc3
commit f6cde72ce9
5 changed files with 21 additions and 12 deletions

View file

@ -70,12 +70,12 @@ void show_debug_screen(void)
line = 1; line = 1;
button = button_get(false); 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 This loop is currently running at about 100 iterations/second
*/ */
if (button & POWEROFF_BUTTON) { if (button & POWEROFF_BUTTON) {
power_count++; power_count++;
if (power_count > 200) if (power_count > 100)
do_power_off = true; do_power_off = true;
} else { } else {
power_count = 0; power_count = 0;

View file

@ -213,8 +213,6 @@ void lcd_set_flip(bool yesno)
/*** update functions ***/ /*** update functions ***/
/*** update functions ***/
void lcd_yuv_set_options(unsigned options) void lcd_yuv_set_options(unsigned options)
{ {
lcd_yuv_options = options; lcd_yuv_options = options;

View file

@ -42,6 +42,21 @@ bool ide_powered(void)
void power_off(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 */ #else /* SIMULATOR */
@ -56,10 +71,6 @@ void charger_enable(bool on)
(void)on; (void)on;
} }
void power_off(void)
{
}
void ide_power_enable(bool on) void ide_power_enable(bool on)
{ {
(void)on; (void)on;

View file

@ -147,12 +147,12 @@ from where you currently are.
\item[Save Current Playlist:] \item[Save Current Playlist:]
Saves the current dynamic playlist, excluding queued tracks, to the Saves the current dynamic playlist, excluding queued tracks, to the
specified file. If no path is provided then playlist is saved to current specified file. If no path is provided then playlist is saved to the current
directory (see \reference{ref:Playlistsubmenu}). directory.
\item[Playlist Catalog:] \item[Playlist Catalog:]
The \setting{Playlist Catalog} provides a simple interface to maintain 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} \end{description}
\section{Plugins} \section{Plugins}

View file

@ -1,6 +1,6 @@
\subsection{Sort} \subsection{Sort}
This plugin takes a file and sorts it in ascending alphabetical order. Case is This plugin takes a file and sorts it in ascending alphabetical order. Case is
ignored. This is useful for ordering playlists generated by the 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}).