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>
34 #ifdef HAVE_LCD_BITMAP
35 bool logfdisplay(void)
43 bool lcd
= false; /* fixed atm */
46 lcd_getstringsize("A", &w
, &h
);
48 #ifdef HAVE_REMOTE_LCD
55 #ifdef HAVE_REMOTE_LCD
62 if (columns
> MAX_LOGF_ENTRY
)
63 columns
= MAX_LOGF_ENTRY
;
73 for(i
= lines
-1; i
>=0; i
--) {
74 unsigned char buffer
[columns
+ 1];
78 index
= MAX_LOGF_LINES
-1;
83 memcpy(buffer
, logfbuffer
[index
], columns
);
85 lcd_puts(0, i
, buffer
);
88 } while(!action_userabort(HZ
));
92 #else /* HAVE_LCD_BITMAP */
93 bool logfdisplay(void)
96 /* TODO: implement a browser for charcell bitmaps */
99 #endif /* HAVE_LCD_BITMAP */
101 /* Store the logf log to logf.txt in the .rockbox directory. The order of the
102 * entries will be "reversed" so that the most recently logged entry is on the
108 if(!logfindex
&& !logfwrap
)
109 /* nothing is logged just yet */
112 fd
= open(ROCKBOX_DIR
"/logf.txt", O_CREAT
|O_WRONLY
|O_TRUNC
);
114 unsigned char buffer
[MAX_LOGF_ENTRY
+1];
115 int index
= logfindex
-1;
116 int stop
= logfindex
;
119 while(index
!= stop
) {
122 index
= MAX_LOGF_LINES
-1;
127 memcpy(buffer
, logfbuffer
[index
], MAX_LOGF_ENTRY
);
128 buffer
[MAX_LOGF_ENTRY
]=0;
129 fdprintf(fd
, "%s\n", buffer
);
137 #endif /* ROCKBOX_HAS_LOGF */