HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
#include "gpio-1284p.h"
Go to the source code of this file.
Functions | |
void | gpio_pin_out (uint8_t pin, uint8_t val) |
AVR GPIO MACROs. More... | |
uint8_t | gpio_pin_rd (uint8_t pin) |
read GPIO pin More... | |
void | chip_select_init (uint8_t pin) |
CHIP select HAL. More... | |
void | chip_select (uint8_t pin) |
set GPIO to select - LOW More... | |
void | chip_deselect (uint8_t pin) |
set GPIO to deselect - HI More... | |
void | chip_addr_init (void) |
ADDRESS select HAL. More... | |
void | chip_addr (int addr __attribute__((unused))) |
set address on GPIO lines More... | |
void | spi_waitReady (void) |
SPI bus wrapper functions for multiple device support. More... | |
void | spi_init (uint32_t clock, int pin) |
void | spi_begin (uint32_t clock, int pin) |
SPI chip enable function Function waits for current tranaction to finish before proceeding. More... | |
void | spi_end (uint8_t pin) |
SPI chip disable function wait for current tranaction to finish! More... | |
uint8_t | spi_chip_select_status (void) |
SPI CS pin status return CS GPIO pin number or 0xff. More... | |
void | spi_TX_buffer (const uint8_t *data, int count) |
SPI write buffer. More... | |
void | spi_RX_buffer (const uint8_t *data, int count) |
SPI read buffer. More... | |
void | spi_TXRX_buffer (const uint8_t *data, int count) |
SPI write/read buffer. More... | |
uint8_t | spi_RX (void) |
SPI read 1 byte. More... | |
void | spi_TX (uint8_t data) |
SPI write 1 byte. More... | |
uint8_t | spi_TXRX (uint8_t data) |
SPI read and write 1 byte. More... | |
void | set_error (uint8_t error) |
Set error condition. More... | |
void | clear_error (void) |
Set error condition. More... | |
uint8_t | is_error (void) |
is error - test More... | |
void chip_addr | ( | int addr | __attribute__(unused) | ) |
void chip_addr_init | ( | ) |
void chip_deselect | ( | uint8_t | pin | ) |
set GPIO to deselect - HI
[in] | pin | GPIO pin number |
Definition at line 225 of file hal.c.
Referenced by spi_end(), and spi_init().
void chip_select | ( | uint8_t | pin | ) |
set GPIO to select - LOW
[in] | pin | GPIO pin number |
Definition at line 210 of file hal.c.
Referenced by spi_begin().
void chip_select_init | ( | uint8_t | pin | ) |
CHIP select HAL.
initilize GPIO as an active HI chip select
[in] | pin | GPIO pin number |
Definition at line 194 of file hal.c.
Referenced by mmc_spi_init().
void clear_error | ( | ) |
Set error condition.
Definition at line 513 of file hal.c.
Referenced by main(), and mmc_init().
void gpio_pin_out | ( | uint8_t | pin, |
uint8_t | val | ||
) |
uint8_t gpio_pin_rd | ( | uint8_t | pin | ) |
uint8_t is_error | ( | ) |
void set_error | ( | uint8_t | error | ) |
Set error condition.
Definition at line 505 of file hal.c.
Referenced by mmc_disk_read(), mmc_disk_timerproc(), mmc_init(), and mmc_task().
void spi_begin | ( | uint32_t | clock, |
int | pin | ||
) |
SPI chip enable function Function waits for current tranaction to finish before proceeding.
[in] | clock | SPI clock rate |
[in] | pin | GPIO CS pin |
initialize pin in case it has not been done yet @ we cache the clock frequency seeting for multiple device support
Definition at line 357 of file hal.c.
Referenced by mmc_spi_begin().
uint8_t spi_chip_select_status | ( | void | ) |
void spi_end | ( | uint8_t | pin | ) |
SPI chip disable function wait for current tranaction to finish!
[in] | pin | GPIO CS pin |
Definition at line 391 of file hal.c.
Referenced by mmc_spi_end().
void spi_init | ( | uint32_t | clock, |
int | pin | ||
) |
Definition at line 328 of file hal.c.
Referenced by main(), and spi_begin().
void 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 433 of file hal.c.
Referenced by mmc_spi_RX_buffer().
void spi_TX | ( | uint8_t | data | ) |
SPI write 1 byte.
[in] | data | value to transmit |
Definition at line 477 of file hal.c.
Referenced by spi_init().
void 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 418 of file hal.c.
Referenced by mmc_spi_TX_buffer().
uint8_t spi_TXRX | ( | uint8_t | data | ) |
SPI read and write 1 byte.
[in] | data | value to transmit |
Definition at line 491 of file hal.c.
Referenced by mmc_spi_TXRX().
void spi_TXRX_buffer | ( | const uint8_t * | data, |
int | count | ||
) |
void spi_waitReady | ( | ) |
SPI bus wrapper functions for multiple device support.
Function waits for current SPI tranaction to finish before proceeding
Definition at line 307 of file hal.c.
Referenced by spi_begin(), spi_end(), and spi_init().