Browse Source

Use serial macro in sd_mmc_spi_mem.cpp for Due

pull/1/head
Scott Lahteine 7 years ago
parent
commit
1bf2b1e475
  1. 4
      Marlin/src/HAL/HAL_DUE/usb/sd_mmc_spi_mem.cpp

4
Marlin/src/HAL/HAL_DUE/usb/sd_mmc_spi_mem.cpp

@ -65,7 +65,7 @@ Ctrl_status sd_mmc_spi_usb_read_10(uint32_t addr, uint16_t nb_sector) {
#ifdef DEBUG_MMC #ifdef DEBUG_MMC
char buffer[80]; char buffer[80];
sprintf(buffer, "SDRD: %d @ 0x%08x\n", nb_sector, addr); sprintf(buffer, "SDRD: %d @ 0x%08x\n", nb_sector, addr);
MYSERIAL0.print(buffer); SERIAL_PROTOCOL_P(0, buffer);
#endif #endif
// Start reading // Start reading
@ -99,7 +99,7 @@ Ctrl_status sd_mmc_spi_usb_write_10(uint32_t addr, uint16_t nb_sector) {
#ifdef DEBUG_MMC #ifdef DEBUG_MMC
char buffer[80]; char buffer[80];
sprintf(buffer, "SDWR: %d @ 0x%08x\n", nb_sector, addr); sprintf(buffer, "SDWR: %d @ 0x%08x\n", nb_sector, addr);
MYSERIAL0.print(buffer); SERIAL_PROTOCOL_P(0, buffer);
#endif #endif
if (!card.getSd2Card().writeStart(addr, nb_sector)) if (!card.getSd2Card().writeStart(addr, nb_sector))

Loading…
Cancel
Save