HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the source code of this file.
Macros | |
#define | MEMSPACE |
#define | WEAK_ATR __attribute__((weak)) |
#define | mmc_cli() cli() /*< interrupt disable */ |
#define | mmc_sei() sei() /*< interrupt enable */ |
Functions | |
MEMSPACE void | mmc_install_timer (void) |
Install MMC timer task: mmc_task() More... | |
void | mmc_spi_init (void) |
MMC SPI setup and chip select. More... | |
void | mmc_spi_begin (void) |
MMC SPI setup and chip select. More... | |
void | mmc_spi_end (void) |
MMC SPI end and chip deselect. More... | |
void | mmc_slow (void) |
MMC set slow SPI bus speed Only called when deselected. More... | |
void | mmc_fast (void) |
MMC fast SPI bus speed Only called when deselected. More... | |
void | mmc_spi_TX_buffer (const uint8_t *data, int count) |
SPI write buffer. More... | |
void | mmc_spi_RX_buffer (const uint8_t *data, int count) |
SPI read buffer. More... | |
uint8_t | mmc_spi_TXRX (uint8_t data) |
SPI read and write 1 byte. More... | |
MEMSPACE void | mmc_set_ms_timeout (uint16_t ms) |
Set MMC timeout timer in Milliseconds. More... | |
MEMSPACE int | mmc_test_timeout (void) |
Wait for timeout. More... | |
MEMSPACE void | mmc_ms_wait (int ms) |
Wait for time in milliseconds. More... | |
MEMSPACE int | mmc_init (int verbose) |
Initialize MMC and FatFs interface, display diagnostics. More... | |
MEMSPACE void | mmc_power_on (void) |
MMC Power ON. More... | |
MEMSPACE void | mmc_power_off (void) |
MMC Power OFF. More... | |
MEMSPACE int | mmc_ins_status (void) |
MMC Card Inserted status. More... | |
MEMSPACE int | mmc_wp_status (void) |
MMC Card Write Protect status. More... | |
void mmc_fast | ( | ) |
MEMSPACE int mmc_init | ( | int | verbose | ) |
Initialize MMC and FatFs interface, display diagnostics.
[in] | verbose | display initialisation messages |
Definition at line 219 of file mmc_hal.c.
Referenced by fatfs_tests(), main(), and open().
MEMSPACE int mmc_ins_status | ( | ) |
MMC Card Inserted status.
Definition at line 328 of file mmc_hal.c.
Referenced by gpib_error_test(), mmc_init(), and mmc_task().
MEMSPACE void mmc_install_timer | ( | void | ) |
Install MMC timer task: mmc_task()
Definition at line 82 of file mmc_hal.c.
Referenced by mmc_init().
MEMSPACE void mmc_ms_wait | ( | int | ms | ) |
MEMSPACE void mmc_power_off | ( | ) |
MEMSPACE void mmc_power_on | ( | ) |
MEMSPACE void mmc_set_ms_timeout | ( | uint16_t | ms | ) |
Set MMC timeout timer in Milliseconds.
[in] | ms | timeout in Milliseconds |
Definition at line 169 of file mmc_hal.c.
Referenced by mmc_disk_initialize(), mmc_ms_wait(), rcvr_datablock(), and wait_ready().
void mmc_slow | ( | ) |
MMC set slow SPI bus speed Only called when deselected.
Definition at line 119 of file mmc_hal.c.
Referenced by mmc_spi_init().
void mmc_spi_begin | ( | ) |
void mmc_spi_end | ( | ) |
void mmc_spi_init | ( | ) |
MMC SPI setup and chip select.
Definition at line 92 of file mmc_hal.c.
Referenced by mmc_init().
void mmc_spi_RX_buffer | ( | const uint8_t * | data, |
int | count | ||
) |
SPI read buffer.
[in] | *data | transmit buffer |
[in] | count | number of bytes to write |
Definition at line 149 of file mmc_hal.c.
Referenced by rcvr_spi_multi().
void mmc_spi_TX_buffer | ( | const uint8_t * | data, |
int | count | ||
) |
SPI write buffer.
[in] | *data | transmit buffer |
[in] | count | number of bytes to write |
Definition at line 139 of file mmc_hal.c.
Referenced by xmit_spi_multi().
uint8_t mmc_spi_TXRX | ( | uint8_t | data | ) |
SPI read and write 1 byte.
[in] | data | value to transmit |
Definition at line 158 of file mmc_hal.c.
Referenced by xchg_spi().
MEMSPACE int mmc_test_timeout | ( | ) |
Wait for timeout.
Definition at line 181 of file mmc_hal.c.
Referenced by mmc_disk_initialize(), mmc_ms_wait(), rcvr_datablock(), and wait_ready().
MEMSPACE int mmc_wp_status | ( | ) |
MMC Card Write Protect status.
Definition at line 344 of file mmc_hal.c.
Referenced by gpib_file_init(), and SS80_locate_and_write().