1d121e8c08
SUPPORTED SERIES: - NWZ-E450 - NWZ-E460 - NWZ-E470 - NWZ-E580 - NWZ-A10 NOTES: - bootloader makefile convert an extra font to be installed alongside the bootloader since sysfont is way too small - the toolsicon bitmap comes from the Oxygen iconset - touchscreen driver is untested TODO: - implement audio routing driver (pcm is handled by pcm-alsa) - fix playback: it crashes on illegal instruction in DEBUG builds - find out why the browser starts at / instead of /contents - implement radio support - implement return to OF for usb handling - calibrate battery curve (NB: of can report a battery level on a 0-5 scale but probabl don't want to use that ?) - implement simulator build (we need a nice image of the player) - figure out if we can detect jack removal POTENTIAL TODOS: - try to build a usb serial gadget and gdbserver Change-Id: Ic77d71e0651355d47cc4e423a40fb64a60c69a80
57 lines
1.8 KiB
C
57 lines
1.8 KiB
C
/***************************************************************************
|
|
* ARM Stack Unwinder, Michael.McTernan.2001@cs.bris.ac.uk
|
|
*
|
|
* This program is PUBLIC DOMAIN.
|
|
* This means that there is no copyright and anyone is able to take a copy
|
|
* for free and use it as they wish, with or without modifications, and in
|
|
* any context, commercially or otherwise. The only limitation is that I
|
|
* don't guarantee that the software is fit for any purpose or accept any
|
|
* liability for it's use or misuse - this software is without warranty.
|
|
***************************************************************************
|
|
* File Description: Unwinder client that reads local memory.
|
|
**************************************************************************/
|
|
|
|
#ifndef CLIENT_H
|
|
#define CLIENT_H
|
|
|
|
/***************************************************************************
|
|
* Nested Includes
|
|
***************************************************************************/
|
|
#include "config.h"
|
|
#include "system.h"
|
|
#include "lcd.h"
|
|
|
|
#include <stdio.h>
|
|
#include "unwarminder.h"
|
|
#include "get_sp.h"
|
|
#include "gcc_extensions.h"
|
|
|
|
#if defined(SIM_CLIENT)
|
|
#error This file is not for the simulated unwinder client
|
|
#endif
|
|
|
|
/***************************************************************************
|
|
* Typedefs
|
|
***************************************************************************/
|
|
|
|
/** Example structure for holding unwind results.
|
|
*/
|
|
typedef struct
|
|
{
|
|
Int16 frameCount;
|
|
Int32 address[32];
|
|
}
|
|
CliStack;
|
|
|
|
/***************************************************************************
|
|
* Variables
|
|
***************************************************************************/
|
|
|
|
extern const UnwindCallbacks cliCallbacks;
|
|
|
|
void rb_backtrace(int pcAddr, int spAddr, unsigned *line);
|
|
|
|
#endif
|
|
|
|
|
|
/* END OF FILE */
|