summaryrefslogtreecommitdiff
path: root/avr/mmc.c
diff options
context:
space:
mode:
authorLeo C.2024-06-30 15:18:24 +0200
committerLeo C.2024-06-30 15:18:24 +0200
commit7aaec0f97677b451e024ef5d1cd2b675a914d440 (patch)
treee4c9711b2e8522825be34af52be3b73636f37728 /avr/mmc.c
parent08749e4051ac14c6e9a2d85a37b3efdcedbb07f6 (diff)
downloadz180-stamp-7aaec0f97677b451e024ef5d1cd2b675a914d440.zip
Adaptions for fatfs R0.15
Diffstat (limited to 'avr/mmc.c')
-rw-r--r--avr/mmc.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/avr/mmc.c b/avr/mmc.c
index a40dc31..e1a51fe 100644
--- a/avr/mmc.c
+++ b/avr/mmc.c
@@ -292,7 +292,6 @@ UINT btr /* Byte count (must be multiple of 4) */
/* Send a data packet to MMC */
/*-----------------------------------------------------------------------*/
-#if _USE_WRITE
static
int xmit_datablock (
const BYTE *buff, /* 512 byte data block to be transmitted */
@@ -322,7 +321,6 @@ int xmit_datablock (
spi_wait();
return 1;
}
-#endif /* _USE_WRITE */
/*-----------------------------------------------------------------------*/
/* Send a command packet to MMC */
@@ -584,7 +582,6 @@ DRESULT disk_read (
/* Write Sector(s) */
/*-----------------------------------------------------------------------*/
-#if _USE_WRITE
DRESULT disk_write (
BYTE drv, /* Physical drive nmuber (0) */
const BYTE *buff, /* Pointer to the data to be written */
@@ -630,13 +627,11 @@ DRESULT disk_write (
return count ? RES_ERROR : RES_OK;
}
-#endif /* _USE_WRITE */
/*-----------------------------------------------------------------------*/
/* Miscellaneous Functions */
/*-----------------------------------------------------------------------*/
-#if _USE_IOCTL
DRESULT disk_ioctl (
BYTE drv, /* Physical drive nmuber (0) */
BYTE cmd, /* Control code */
@@ -748,7 +743,6 @@ DRESULT disk_ioctl (
return res;
}
-#endif /* _USE_IOCTL */
/*-----------------------------------------------------------------------*/
/* Device Timer Interrupt Procedure (Platform dependent) */