1
0
Fork 0
forked from len0rd/rockbox

m:robe 100:

- adjust lcd_grey_phase_blit() parameter to recent change
- detection of external power
- compilation of plugins - need to be enabled individually in SOURCES/SUBDIRS 
(use autostart.rock as test plugin with limited interaction via BUTTON_POWER)
also 
- move autostart.rock to apps dir where it is expected
- set missing svn:keywords for various files

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16056 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Kukla 2008-01-11 21:48:01 +00:00
parent c4ebcbeaf4
commit 7d961d390a
10 changed files with 26 additions and 15 deletions

View file

@ -132,11 +132,12 @@ void lcd_blit(const unsigned char* data, int x, int by, int width,
/* Performance function that works with an external buffer
note that by and bheight are in 4-pixel units! */
void lcd_grey_phase_blit(const struct grey_data *data, int x, int by,
int width, int bheight, int stride)
void lcd_grey_phase_blit(unsigned char *values, unsigned char *phases,
int x, int by, int width, int bheight, int stride)
{
/* TODO: Implement lcd_grey_phase_blit() */
(void)data;
(void)values;
(void)phases;
(void)x;
(void)by;
(void)width;

View file

@ -37,19 +37,19 @@ void power_init(void)
bool charger_inserted(void)
{
return false;
return (GPIOB_INPUT_VAL & 0x02) ? false : true ;
}
void ide_power_enable(bool on)
{
(void)on;
/* We do nothing on the iPod */
/* We do nothing */
}
bool ide_powered(void)
{
/* pretend we are always powered - we don't turn it off on the ipod */
/* pretend we are always powered - we don't turn it off */
return true;
}