2005-05-23 22:47:42 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Daniel Stenberg
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2005-06-01 13:21:20 +00:00
|
|
|
* logf() logs MAX_LOGF_ENTRY (21) bytes per entry in a circular buffer. Each
|
|
|
|
* logged string is space- padded for easier and faster output on screen. Just
|
|
|
|
* output MAX_LOGF_ENTRY characters on each line. MAX_LOGF_ENTRY bytes fit
|
|
|
|
* nicely on the iRiver remote LCD (128 pixels with an 8x6 pixels font).
|
2005-05-23 22:47:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "config.h"
|
2005-05-24 14:28:48 +00:00
|
|
|
#include "lcd-remote.h"
|
2005-05-24 14:26:54 +00:00
|
|
|
#include "logf.h"
|
2006-10-12 20:22:16 +00:00
|
|
|
#include "serial.h"
|
2005-05-23 22:47:42 +00:00
|
|
|
|
2008-03-02 20:45:33 +00:00
|
|
|
#ifdef HAVE_USBSTACK
|
|
|
|
#include "usb_core.h"
|
|
|
|
#include "usbstack/usb_serial.h"
|
|
|
|
#endif
|
|
|
|
|
2005-05-30 13:00:43 +00:00
|
|
|
/* Only provide all this if asked to */
|
|
|
|
#ifdef ROCKBOX_HAS_LOGF
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifndef __PCTOOL__
|
2005-06-01 13:21:20 +00:00
|
|
|
unsigned char logfbuffer[MAX_LOGF_LINES][MAX_LOGF_ENTRY];
|
2005-05-24 14:01:16 +00:00
|
|
|
int logfindex;
|
2005-05-23 22:47:42 +00:00
|
|
|
bool logfwrap;
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2005-05-23 22:47:42 +00:00
|
|
|
|
2005-05-24 14:26:54 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
static void displayremote(void)
|
|
|
|
{
|
|
|
|
/* TODO: we should have a debug option that enables/disables this! */
|
|
|
|
int w, h;
|
|
|
|
int lines;
|
2005-06-30 15:14:33 +00:00
|
|
|
int columns;
|
2005-05-24 14:26:54 +00:00
|
|
|
int i;
|
|
|
|
int index;
|
|
|
|
|
2005-05-24 14:28:48 +00:00
|
|
|
lcd_remote_getstringsize("A", &w, &h);
|
2005-05-24 14:26:54 +00:00
|
|
|
lines = LCD_REMOTE_HEIGHT/h;
|
2005-06-30 15:14:33 +00:00
|
|
|
columns = LCD_REMOTE_WIDTH/w;
|
2005-05-24 14:26:54 +00:00
|
|
|
lcd_remote_setmargins(0, 0);
|
|
|
|
lcd_remote_clear_display();
|
|
|
|
|
|
|
|
index = logfindex;
|
|
|
|
for(i = lines-1; i>=0; i--) {
|
2005-06-30 15:14:33 +00:00
|
|
|
unsigned char buffer[columns+1];
|
2005-05-24 14:26:54 +00:00
|
|
|
|
|
|
|
if(--index < 0) {
|
|
|
|
if(logfwrap)
|
|
|
|
index = MAX_LOGF_LINES-1;
|
|
|
|
else
|
|
|
|
break; /* done */
|
|
|
|
}
|
|
|
|
|
2005-06-30 15:14:33 +00:00
|
|
|
memcpy(buffer, logfbuffer[index], columns);
|
|
|
|
buffer[columns]=0;
|
2005-05-24 14:26:54 +00:00
|
|
|
lcd_remote_puts(0, i, buffer);
|
|
|
|
}
|
|
|
|
lcd_remote_update();
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define displayremote()
|
|
|
|
#endif
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
void _logf(const char *format, ...)
|
|
|
|
{
|
|
|
|
char buf[1024];
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
|
|
|
|
vsnprintf(buf, sizeof buf, format, ap);
|
|
|
|
printf("DEBUG: %s\n", buf);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
void _logf(const char *format, ...)
|
2005-05-23 22:47:42 +00:00
|
|
|
{
|
|
|
|
int len;
|
2005-05-24 14:01:16 +00:00
|
|
|
unsigned char *ptr;
|
2005-05-23 22:47:42 +00:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
|
2005-05-24 14:01:16 +00:00
|
|
|
if(logfindex >= MAX_LOGF_LINES) {
|
2005-05-23 22:47:42 +00:00
|
|
|
/* wrap */
|
|
|
|
logfwrap = true;
|
2005-05-24 14:01:16 +00:00
|
|
|
logfindex = 0;
|
2005-05-23 22:47:42 +00:00
|
|
|
}
|
2005-05-24 14:01:16 +00:00
|
|
|
ptr = logfbuffer[logfindex];
|
2005-06-01 13:21:20 +00:00
|
|
|
len = vsnprintf(ptr, MAX_LOGF_ENTRY, format, ap);
|
2006-10-12 20:22:16 +00:00
|
|
|
#ifdef HAVE_SERIAL
|
|
|
|
serial_tx(ptr);
|
|
|
|
serial_tx("\r\n");
|
|
|
|
#endif
|
2008-03-02 20:45:33 +00:00
|
|
|
#ifdef USB_SERIAL
|
|
|
|
usb_serial_send(ptr,len);
|
|
|
|
usb_serial_send("\r\n",2);
|
|
|
|
#endif
|
|
|
|
|
2005-05-23 22:47:42 +00:00
|
|
|
va_end(ap);
|
2005-06-01 13:21:20 +00:00
|
|
|
if(len < MAX_LOGF_ENTRY)
|
|
|
|
/* pad with spaces up to the MAX_LOGF_ENTRY byte border */
|
|
|
|
memset(ptr+len, ' ', MAX_LOGF_ENTRY-len);
|
2005-05-23 22:47:42 +00:00
|
|
|
|
2005-05-24 14:01:16 +00:00
|
|
|
logfindex++; /* leave it where we write the next time */
|
2005-05-24 14:26:54 +00:00
|
|
|
|
|
|
|
displayremote();
|
2005-05-23 22:47:42 +00:00
|
|
|
}
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2005-05-30 13:00:43 +00:00
|
|
|
|
|
|
|
#endif
|