2002-04-30 19:23:44 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by wavey@wavey.org
|
2002-08-11 09:17:47 +00:00
|
|
|
*nn
|
2002-04-30 19:23:44 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "panic.h"
|
2002-05-02 14:05:51 +00:00
|
|
|
#include "lcd.h"
|
2002-09-12 13:33:59 +00:00
|
|
|
#include "font.h"
|
2002-04-30 19:23:44 +00:00
|
|
|
#include "debug.h"
|
|
|
|
|
2002-07-15 11:02:12 +00:00
|
|
|
static char panic_buf[128];
|
2002-04-30 19:23:44 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* "Dude. This is pretty fucked-up, right here."
|
|
|
|
*/
|
|
|
|
void panicf( char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
2002-05-05 17:51:23 +00:00
|
|
|
|
2002-05-05 17:52:59 +00:00
|
|
|
#ifndef SIMULATOR
|
2002-05-05 17:51:23 +00:00
|
|
|
/* Disable interrupts */
|
|
|
|
asm volatile ("ldc\t%0,sr" : : "r"(15<<4));
|
2002-05-05 17:52:59 +00:00
|
|
|
#endif
|
|
|
|
|
2002-04-30 19:23:44 +00:00
|
|
|
va_start( ap, fmt );
|
2002-05-02 11:44:15 +00:00
|
|
|
vsnprintf( panic_buf, sizeof(panic_buf), fmt, ap );
|
2002-04-30 19:23:44 +00:00
|
|
|
va_end( ap );
|
|
|
|
|
2002-05-05 11:17:10 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2002-08-08 15:32:15 +00:00
|
|
|
#ifdef HAVE_NEW_CHARCELL_LCD
|
|
|
|
lcd_double_height(false);
|
|
|
|
#endif
|
2002-05-02 14:05:51 +00:00
|
|
|
lcd_puts(0,0,panic_buf);
|
2002-05-05 11:17:10 +00:00
|
|
|
#elif defined(HAVE_LCD_BITMAP)
|
|
|
|
lcd_clear_display();
|
2002-09-12 13:33:59 +00:00
|
|
|
|
|
|
|
//FIXME putsxy may call panic...
|
|
|
|
lcd_putsxy(0,0,panic_buf,FONT_SYSFIXED);
|
2002-05-05 11:17:10 +00:00
|
|
|
lcd_update();
|
2002-08-11 09:17:47 +00:00
|
|
|
|
2002-05-05 11:17:10 +00:00
|
|
|
#else
|
|
|
|
/* no LCD */
|
|
|
|
#endif
|
2002-05-02 14:05:51 +00:00
|
|
|
DEBUGF(panic_buf);
|
|
|
|
while(1);
|
2002-04-30 19:23:44 +00:00
|
|
|
}
|