Skip to content

Commit

Permalink
Merge pull request #481 (Fix ZuluSCSI v1.1+ regression)
Browse files Browse the repository at this point in the history
Fix regression in V1.1+ (GD32F205-based) firmware
  • Loading branch information
aperezbios authored Dec 10, 2024
2 parents b6c83d8 + 1ac2673 commit 19d01e7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/ZuluSCSI_platform_GD32F205/scsi_accel_sync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ void scsi_accel_sync_send(const uint8_t* data, uint32_t count, volatile int *res
}
else
{
dbgmsg("No optimized routine for syncOffset=", syncOffset, " syndPeriod=", syncPeriod, ", using fallback");
dbgmsg("No optimized routine for syncOffset=", syncOffset, " syncPeriod=", syncPeriod, ", using fallback");
while (count-- > 0)
{
while (TIMER_CNT(SCSI_SYNC_TIMER) > count + syncOffset && !*resetFlag);
Expand Down
11 changes: 9 additions & 2 deletions lib/ZuluSCSI_platform_GD32F205/sd_card_sdio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,17 @@ bool SdioCard::begin(SdioConfig sdioConfig)
nvic_irq_enable(SDIO_IRQn, 0, 0);

g_sdio_error = sd_init();
static sd_error_enum last_error = SD_OK;
if (g_sdio_error != SD_OK)
{
// Don't spam the log when main program polls for card insertion.
dbgmsg("sd_init() failed: ", (int)g_sdio_error);
static uint32_t redisplay_error_start = millis();
// Don't spam the log when main program polls for card insertion, redisplay retry every 5 seconds.
if (last_error != g_sdio_error || (uint32_t)(millis() - redisplay_error_start) > 5000)
{
dbgmsg("sd_init() failed: ", (int)g_sdio_error);
last_error = g_sdio_error;
redisplay_error_start = millis();
}
return false;
}

Expand Down
1 change: 1 addition & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ build_flags =
-DPLATFORM_MASS_STORAGE
-DSDFAT_NOARDUINO
-DFILE_COPY_CONSTRUCTOR_SELECT=FILE_COPY_CONSTRUCTOR_PUBLIC
-DLOGBUFSIZE=8192

; ZuluSCSI settings shared among Raspberry Pi microcontroller like the RP2040 and RP2350
[env:ZuluSCSI_RP2MCU]
Expand Down
4 changes: 2 additions & 2 deletions src/ZuluSCSI_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
#include <ZuluSCSI_platform_config.h>

// Use variables for version number
#define FW_VER_NUM "24.12.03"
#define FW_VER_SUFFIX "release"
#define FW_VER_NUM "24.12.09"
#define FW_VER_SUFFIX "dev"

#define DEF_STRINGFY(DEF) STRINGFY(DEF)
#define STRINGFY(STR) #STR
Expand Down

0 comments on commit 19d01e7

Please sign in to comment.