summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-01-05 07:26:59 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-01-05 07:26:59 +0000
commit974c2f0d43c1ebc786854f48f15ccaea7803d8f0 (patch)
tree618498adcf30b7ead31d6c9425cc42050ef8ae8d /apps/plugins
parent2fa3ea313dd6b7c04702f9756329a15ce169a731 (diff)
downloadrockbox-974c2f0d43c1ebc786854f48f15ccaea7803d8f0.tar.gz
rockbox-974c2f0d43c1ebc786854f48f15ccaea7803d8f0.zip
tolerate firmware v1.32 for a V2 Recorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4191 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/firmware_flash.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/firmware_flash.c b/apps/plugins/firmware_flash.c
index 4abd8dd1bd..c609f5ddad 100644
--- a/apps/plugins/firmware_flash.c
+++ b/apps/plugins/firmware_flash.c
@@ -283,6 +283,10 @@ bool CheckPlatform(int platform_id, UINT16 version)
283 { /* it can be a FM or V2 recorder */ 283 { /* it can be a FM or V2 recorder */
284 return (platform_id == ID_FM || platform_id == ID_REC_V2); 284 return (platform_id == ID_FM || platform_id == ID_REC_V2);
285 } 285 }
286 else if (version == 132)
287 { /* seen on a V2 recorder */
288 return (platform_id == ID_REC_V2);
289 }
286 else if (version >= 115 && version <= 129) 290 else if (version >= 115 && version <= 129)
287 { /* the range of Recorders seen so far */ 291 { /* the range of Recorders seen so far */
288 return (platform_id == ID_RECORDER); 292 return (platform_id == ID_RECORDER);