Quellcode durchsuchen

fix log->logmsg

Alex Perez vor 2 Jahren
Ursprung
Commit
09be48aa82

+ 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;
 }