Alex Perez преди 2 години
родител
ревизия
09be48aa82
променени са 2 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 1 1
      lib/ZuluSCSI_platform_BS2/scsiPhy.cpp
  2. 2 2
      lib/ZuluSCSI_platform_BS2/sd_card_sdio.cpp

+ 1 - 1
lib/ZuluSCSI_platform_BS2/scsiPhy.cpp

@@ -342,7 +342,7 @@ static inline uint8_t scsiReadOneByte(int* parityError)
 
     if (parityError && r != (g_scsi_parity_lookup[r & 0xFF] ^ SCSI_IO_DATA_MASK))
     {
-        log("Parity error in scsiReadOneByte(): ", (uint32_t)r);
+        logmsg("Parity error in scsiReadOneByte(): ", (uint32_t)r);
         *parityError = 1;
     }
 

+ 2 - 2
lib/ZuluSCSI_platform_BS2/sd_card_sdio.cpp

@@ -198,13 +198,13 @@ bool SdioCard::readOCR(uint32_t* ocr)
 
 bool SdioCard::readData(uint8_t* dst)
 {
-    log("SdioCard::readData() called but not implemented!");
+    logmsg("SdioCard::readData() called but not implemented!");
     return false;
 }
 
 bool SdioCard::readStart(uint32_t sector)
 {
-    log("SdioCard::readStart() called but not implemented!");
+    logmsg("SdioCard::readStart() called but not implemented!");
     return false;
 }