Merge branch 'main' into troy/icd

This commit is contained in:
Eric Helgeson 2022-07-16 15:01:35 -05:00 committed by GitHub
commit 53ad02384d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@ default_envs = STM32F1
[env]
framework = arduino
lib_deps =
greiman/SdFat @ ^2.0.6
greiman/SdFat @ 2.0.6
upload_protocol = stlink
; Different gcc versions produce much different binaries in terms of speed.
platform_packages = platformio/toolchain-gccarmnoneeabi@1.90301.200702
@ -67,7 +67,7 @@ board_build.mcu = stm32f103c8t6
board_build.core = maple
framework = arduino
lib_deps =
greiman/SdFat @ ^2.0.6
greiman/SdFat @ 2.0.6
upload_protocol = dfu
; Different gcc versions produce much different binaries in terms of speed.
platform_packages = platformio/toolchain-gccarmnoneeabi@1.90301.200702

View File

@ -44,7 +44,7 @@
// 2: Debug information output to LOG.txt (slow)
// Log File
#define VERSION "1.1-SNAPSHOT-20220622"
#define VERSION "1.1-SNAPSHOT-20220627"
#define LOG_FILENAME "LOG.txt"
#include "BlueSCSI.h"
@ -525,8 +525,8 @@ void findDriveImages(FsFile root) {
dev->inquiry_block.response_format = 1;
dev->inquiry_block.additional_length = 31;
memcpy(dev->inquiry_block.vendor, "QUANTUM", 7);
memcpy(dev->inquiry_block.product, "FIREBALL1", 9);
memcpy(dev->inquiry_block.revision, "1.0", 3);
memcpy(dev->inquiry_block.product, "BLUESCSI F1", 11);
memcpy(dev->inquiry_block.revision, "1.1", 3);
break;
case SCSI_DEVICE_OPTICAL: