HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
23 #include "user_config.h"
39 #define CS_LOW() mmc_spi_begin()
40 #define CS_HIGH() mmc_spi_end()
42 #define MMC_CD mmc_ins_status()
43 #define MMC_WP mmc_wp_status()
44 #define FCLK_SLOW() mmc_slow()
45 #define FCLK_FAST() mmc_fast()
56 #define ACMD41 (0x80+41)
61 #define ACMD13 (0x80+13)
66 #define ACMD23 (0x80+23)
178 return (d == 0xFF) ? 1 : 0;
207 printf(
"select failed!\n");
233 if (
token != 0xFE)
return 0;
268 if ((resp & 0x1F) != 0x05)
274 #endif // ifdef _USE_WRITE
294 if (res > 1)
return res;
301 if (!
select())
return 0xFF;
311 if (cmd ==
CMD0) n = 0x95;
312 if (cmd ==
CMD8) n = 0x87;
323 while ((res & 0x80) && --n);
336 BYTE n, cmd, ty, ocr[4];
346 for (n = 10; n; n--)
xchg_spi(0xFF);
354 for (n = 0; n < 4; n++)
356 if (ocr[2] == 0x01 && ocr[3] == 0xAA)
364 for (n = 0; n < 4; n++) ocr[n] =
xchg_spi(0xFF);
519 && xmit_datablock(buff, 0xFE))
529 if (!xmit_datablock(buff, 0xFC))
break;
532 if (!xmit_datablock(0, 0xFD))
555 BYTE n, csd[16], *ptr = buff;
587 if ((csd[0] >> 6) == 1)
589 csize = csd[9] + ((
WORD)csd[8] << 8) + ((
DWORD)(csd[7] & 63) << 16) + 1;
590 *(
DWORD*)buff = csize << 10;
594 n = (csd[5] & 15) + ((csd[10] & 128) >> 7) + ((csd[9] & 3) << 1) + 2;
595 csize = (csd[8] >> 6) + ((
WORD)csd[7] << 2) + ((
WORD)(csd[6] & 3) << 10) + 1;
596 *(
DWORD*)buff = csize << (n - 9);
612 for (n = 64 - 16; n; n--)
xchg_spi(0xFF);
613 *(
DWORD*)buff = 16UL << (csd[10] >> 4);
625 *(
DWORD*)buff = (((csd[10] & 63) << 1) + ((
WORD)(csd[11] & 128) >> 7) + 1) << ((csd[13] >> 6) - 1);
629 *(
DWORD*)buff = ((
WORD)((csd[10] & 124) >> 2) + 1) * (((csd[11] & 3) << 3) + ((csd[11] & 224) >> 5) + 1);
643 if (!(csd[0] >> 6) && !(csd[10] & 0x40))
break;
645 range = buff; st = (
DWORD)range[0]; ed = (
DWORD)range[1];
648 st *= 512; ed *= 512;
685 for (n = 4; n; n--) *ptr++ =
xchg_spi(0xFF);
741 for (dc = 513; dc; dc--)
xchg_spi(0xFF);
static volatile BYTE Timer1
static MEMSPACE void power_on(void)
MEMSPACE int printf(const char *format,...)
static MEMSPACE void deselect(void)
Deselect the card and release SPI bus.
MEMSPACE DSTATUS mmc_disk_initialize(void)
Public Functions.
MEMSPACE DRESULT mmc_disk_read(BYTE *buff, DWORD sector, UINT count)
Read Sector(s)
MEMSPACE DRESULT mmc_disk_write(const BYTE *buff, DWORD sector, UINT count)
static volatile BYTE Timer2
static void xmit_spi_multi(const BYTE *p, UINT cnt)
Send a data block fast.
void mmc_disk_timerproc(void)
Write Sector(s)
static void rcvr_spi_multi(BYTE *p, UINT cnt)
Receive a data block fast.
MEMSPACE DSTATUS mmc_disk_status(void)
Get Disk Status.
static MEMSPACE BYTE send_cmd(BYTE cmd, DWORD arg)
Send a data packet to MMC.
MEMSPACE void mmc_power_on()
MMC Power ON.
static MEMSPACE int select(void)
Select the card and wait for ready.
void mmc_spi_TX_buffer(const uint8_t *data, int count)
SPI write buffer.
void set_error(uint8_t error)
Set error condition.
void delayms(uint32_t ms)
Delay miliseconds using AVR acr-libc _delay_us() function.
static MEMSPACE int rcvr_datablock(BYTE *buff, UINT btr)
Receive a data packet from MMC.
MEMSPACE DRESULT mmc_disk_ioctl(BYTE cmd, void *buff)
MEMSPACE void mmc_power_off()
MMC Power OFF.
static MEMSPACE void power_off(void)
power off
MEMSPACE int wait_ready(UINT wt)
wait for card ready
MEMSPACE int token(char *str, char *pat)
Search for token in a string matching user pattern.
void mmc_spi_RX_buffer(const uint8_t *data, int count)
SPI read buffer.
uint8_t mmc_spi_TXRX(uint8_t data)
SPI read and write 1 byte.
Math IO functions, and verious conversion code with floating point support.
MEMSPACE int mmc_test_timeout()
Wait for timeout.
MEMSPACE void mmc_set_ms_timeout(uint16_t ms)
Set MMC timeout timer in Milliseconds.
static BYTE xchg_spi(BYTE dat)
send/receive a SPI byte