diff options
Diffstat (limited to 'firmware/target/coldfire')
-rw-r--r-- | firmware/target/coldfire/iaudio/m3/button-m3.c | 4 | ||||
-rw-r--r-- | firmware/target/coldfire/iriver/h100/button-h100.c | 11 | ||||
-rw-r--r-- | firmware/target/coldfire/iriver/h300/button-h300.c | 9 | ||||
-rw-r--r-- | firmware/target/coldfire/mpio/ata-mpio.c | 4 | ||||
-rw-r--r-- | firmware/target/coldfire/mpio/hd200/button-hd200.c | 6 |
5 files changed, 23 insertions, 11 deletions
diff --git a/firmware/target/coldfire/iaudio/m3/button-m3.c b/firmware/target/coldfire/iaudio/m3/button-m3.c index 53d02ec449..1c7f4a15de 100644 --- a/firmware/target/coldfire/iaudio/m3/button-m3.c +++ b/firmware/target/coldfire/iaudio/m3/button-m3.c @@ -50,15 +50,11 @@ int button_read_device(void) { int btn = BUTTON_NONE; #ifndef BOOTLOADER - bool hold_button_old; bool remote_hold_button_old; #endif int data; /* normal buttons */ -#ifndef BOOTLOADER - hold_button_old = hold_button; -#endif hold_button = button_hold(); if (!hold_button) diff --git a/firmware/target/coldfire/iriver/h100/button-h100.c b/firmware/target/coldfire/iriver/h100/button-h100.c index dbaefdcf2a..63f772b65e 100644 --- a/firmware/target/coldfire/iriver/h100/button-h100.c +++ b/firmware/target/coldfire/iriver/h100/button-h100.c @@ -40,7 +40,7 @@ bool button_hold(void) } static bool remote_button_hold_only(void) -{ +{ if(remote_type() == REMOTETYPE_H300_NONLCD) return adc_scan(ADC_REMOTE)<0x0d; /* hold should be 0x00 */ else @@ -68,14 +68,17 @@ int button_read_device(void) static bool remote_hold_button = false; static int prev_data = 0xff; static int last_valid = 0xff; +#ifndef BOOTLOADER bool hold_button_old; bool remote_hold_button_old; +#endif /* normal buttons */ +#ifndef BOOTLOADER hold_button_old = hold_button; +#endif hold_button = button_hold(); - - + #ifndef BOOTLOADER if (hold_button != hold_button_old) backlight_hold_changed(hold_button); @@ -120,7 +123,9 @@ int button_read_device(void) } /* remote buttons */ +#ifndef BOOTLOADER remote_hold_button_old = remote_hold_button; +#endif remote_hold_button = remote_button_hold_only(); #ifndef BOOTLOADER diff --git a/firmware/target/coldfire/iriver/h300/button-h300.c b/firmware/target/coldfire/iriver/h300/button-h300.c index 74c14fb144..437c9fd2d3 100644 --- a/firmware/target/coldfire/iriver/h300/button-h300.c +++ b/firmware/target/coldfire/iriver/h300/button-h300.c @@ -84,14 +84,17 @@ int button_read_device(void) static bool remote_hold_button = false; static int prev_data = 0xff; static int last_valid = 0xff; +#ifndef BOOTLOADER bool hold_button_old; bool remote_hold_button_old; +#endif /* normal buttons */ +#ifndef BOOTLOADER hold_button_old = hold_button; +#endif hold_button = button_hold(); - - + #ifndef BOOTLOADER if (hold_button != hold_button_old) backlight_hold_changed(hold_button); @@ -130,7 +133,9 @@ int button_read_device(void) } /* remote buttons */ +#ifndef BOOTLOADER remote_hold_button_old = remote_hold_button; +#endif remote_hold_button = remote_button_hold_only(); #ifndef BOOTLOADER diff --git a/firmware/target/coldfire/mpio/ata-mpio.c b/firmware/target/coldfire/mpio/ata-mpio.c index af082640bf..94a572a0e8 100644 --- a/firmware/target/coldfire/mpio/ata-mpio.c +++ b/firmware/target/coldfire/mpio/ata-mpio.c @@ -39,7 +39,9 @@ void ata_reset(void) void ata_enable(bool on) { +#ifndef BOOTLOADER static bool init = true; +#endif /* Ide power toggling is a nasty hack to allow USB bridge operation * in rockbox. For some reason GL811E bridge doesn't like the state @@ -59,8 +61,8 @@ void ata_enable(bool on) sleep(1); ide_power_enable(true); } -#endif init = false; +#endif } else { diff --git a/firmware/target/coldfire/mpio/hd200/button-hd200.c b/firmware/target/coldfire/mpio/hd200/button-hd200.c index 27b0d50fb5..5ff70783cd 100644 --- a/firmware/target/coldfire/mpio/hd200/button-hd200.c +++ b/firmware/target/coldfire/mpio/hd200/button-hd200.c @@ -69,17 +69,21 @@ int button_read_device(void) static bool hold_button = false; bool remote_hold_button = false; +#ifndef BOOTLOADER bool hold_button_old; +#endif bool remote_present; /* check if we have remote connected */ remote_present = remote_detect(); /* read hold buttons status */ +#ifndef BOOTLOADER hold_button_old = hold_button; +#endif hold_button = button_hold(); remote_hold_button = remote_button_hold(); - + #ifndef BOOTLOADER /* Only main hold affects backlight */ if (hold_button != hold_button_old) |