summaryrefslogtreecommitdiff
path: root/apps/plugins/firmware_flash.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/firmware_flash.c')
-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);