1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 Daniel Stenberg
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
21 #ifdef ROCKBOX_HAS_LOGF
24 #include <timefuncs.h>
33 #ifdef HAVE_LCD_BITMAP
34 bool logfdisplay(void)
42 bool lcd
= false; /* fixed atm */
45 lcd_getstringsize("A", &w
, &h
);
47 #ifdef HAVE_REMOTE_LCD
54 #ifdef HAVE_REMOTE_LCD
61 if (columns
> MAX_LOGF_ENTRY
)
62 columns
= MAX_LOGF_ENTRY
;
72 for(i
= lines
-1; i
>=0; i
--) {
73 unsigned char buffer
[columns
+ 1];
77 index
= MAX_LOGF_LINES
-1;
82 memcpy(buffer
, logfbuffer
[index
], columns
);
84 lcd_puts(0, i
, buffer
);
87 } while(!action_userabort(HZ
));
91 #else /* HAVE_LCD_BITMAP */
92 bool logfdisplay(void)
95 /* TODO: implement a browser for charcell bitmaps */
98 #endif /* HAVE_LCD_BITMAP */
100 /* Store the logf log to logf.txt in the .rockbox directory. The order of the
101 * entries will be "reversed" so that the most recently logged entry is on the
107 if(!logfindex
&& !logfwrap
)
108 /* nothing is logged just yet */
111 fd
= open("/.rockbox/logf.txt", O_CREAT
|O_WRONLY
|O_TRUNC
);
113 unsigned char buffer
[MAX_LOGF_ENTRY
+1];
114 int index
= logfindex
-1;
115 int stop
= logfindex
;
118 while(index
!= stop
) {
121 index
= MAX_LOGF_LINES
-1;
126 memcpy(buffer
, logfbuffer
[index
], MAX_LOGF_ENTRY
);
127 buffer
[MAX_LOGF_ENTRY
]=0;
128 fdprintf(fd
, "%s\n", buffer
);
136 #endif /* ROCKBOX_HAS_LOGF */