summaryrefslogtreecommitdiff
path: root/firmware/target/arm/olympus/mrobe-100
diff options
context:
space:
mode:
authorRobert Kukla <roolku@rockbox.org>2008-01-11 21:48:01 +0000
committerRobert Kukla <roolku@rockbox.org>2008-01-11 21:48:01 +0000
commit7d961d390a39669cd9e00a0a221edbc94808cdb5 (patch)
tree810b38658db39de4eae9e0e6421206b17660ae5f /firmware/target/arm/olympus/mrobe-100
parentc4ebcbeaf496c3b50be01da9a2a9ce6eefef9c2c (diff)
downloadrockbox-7d961d390a39669cd9e00a0a221edbc94808cdb5.tar.gz
rockbox-7d961d390a39669cd9e00a0a221edbc94808cdb5.zip
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
Diffstat (limited to 'firmware/target/arm/olympus/mrobe-100')
-rw-r--r--firmware/target/arm/olympus/mrobe-100/lcd-mr100.c7
-rw-r--r--firmware/target/arm/olympus/mrobe-100/power-mr100.c6
2 files changed, 7 insertions, 6 deletions
diff --git a/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c b/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c
index bf751f47a9..c7977e63fc 100644
--- a/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c
+++ b/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c
@@ -132,11 +132,12 @@ void lcd_blit(const unsigned char* data, int x, int by, int width,
132 132
133/* Performance function that works with an external buffer 133/* Performance function that works with an external buffer
134 note that by and bheight are in 4-pixel units! */ 134 note that by and bheight are in 4-pixel units! */
135void lcd_grey_phase_blit(const struct grey_data *data, int x, int by, 135void lcd_grey_phase_blit(unsigned char *values, unsigned char *phases,
136 int width, int bheight, int stride) 136 int x, int by, int width, int bheight, int stride)
137{ 137{
138 /* TODO: Implement lcd_grey_phase_blit() */ 138 /* TODO: Implement lcd_grey_phase_blit() */
139 (void)data; 139 (void)values;
140 (void)phases;
140 (void)x; 141 (void)x;
141 (void)by; 142 (void)by;
142 (void)width; 143 (void)width;
diff --git a/firmware/target/arm/olympus/mrobe-100/power-mr100.c b/firmware/target/arm/olympus/mrobe-100/power-mr100.c
index 1fb2ecb958..54b7030646 100644
--- a/firmware/target/arm/olympus/mrobe-100/power-mr100.c
+++ b/firmware/target/arm/olympus/mrobe-100/power-mr100.c
@@ -37,19 +37,19 @@ void power_init(void)
37 37
38bool charger_inserted(void) 38bool charger_inserted(void)
39{ 39{
40 return false; 40 return (GPIOB_INPUT_VAL & 0x02) ? false : true ;
41} 41}
42 42
43void ide_power_enable(bool on) 43void ide_power_enable(bool on)
44{ 44{
45 (void)on; 45 (void)on;
46 /* We do nothing on the iPod */ 46 /* We do nothing */
47} 47}
48 48
49 49
50bool ide_powered(void) 50bool ide_powered(void)
51{ 51{
52 /* pretend we are always powered - we don't turn it off on the ipod */ 52 /* pretend we are always powered - we don't turn it off */
53 return true; 53 return true;
54} 54}
55 55