From ab646260a00d2256ed2b319e9d63ec3d2ec04d27 Mon Sep 17 00:00:00 2001 From: Eric Helgeson Date: Wed, 15 Dec 2021 10:59:58 -0600 Subject: [PATCH] Dont consider LUN in filename as it wont work, just force to 0 --- src/BlueSCSI.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/BlueSCSI.cpp b/src/BlueSCSI.cpp index 3b7c5d1..3c0d385 100644 --- a/src/BlueSCSI.cpp +++ b/src/BlueSCSI.cpp @@ -488,14 +488,7 @@ void setup() usedDefaultId++; } } - if(file_name_length > 3) { // HD0[N] - int tmp_lun = name[HDIMG_LUN_POS] - '0'; - if(tmp_lun != 0) { - LOG_FILE.println("!! Only 0 is supported for LUN, forcing to 0 !!"); - LOG_FILE.sync(); - } - } int blk1, blk2, blk3, blk4 = 0; if(file_name_length > 8) { // HD00_[111] blk1 = name[HDIMG_BLK_POS] - '0';