HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
60 rate = ((uint32_t) F_CPU + (speed/2)) / speed;
61 printf(
"spi rate: %ld\n", (
unsigned long) rate);
171 printf(
"SPI0_Mode: Invalid mode(%d)\n",mode);
195 volatile uint8_t D __attribute__((unused));
198 printf(
"SPI0_Init speed:%ld\n",speed);
203 printf(
"Port B DDR: 0x%02x\n", (
int) GPIO_PORT_DDR_RD(
GPIO_B));
204 printf(
"Port B LATCH: 0x%02x\n", (
int) GPIO_PORT_LATCH_RD(
GPIO_B));
205 printf(
"Port B PINS: 0x%02x\n", (
int) GPIO_PORT_LATCH_RD(
GPIO_B));
212 GPIO_PIN_FLOAT(MISO);
MEMSPACE int printf(const char *format,...)
static int SPI0_Init_state
SPI0 initialization flag.
static int SPI0_Mode_value
Saved SPI Mode.
static uint32_t SPI0_Speed_value
Saved SPI bus speed.
void SPI0_Init(uint32_t speed)
Initialize SPI0 device. See Atmel App Note AVR151 Set default speed, IO pins and mode.
uint8_t SPI0_TXRX_Byte(uint8_t Data)
SPI read/Write byte.
#define BIT_SET(x, y)
Note: IF x and y are constants the compiler will fully reduce the expression.
Master Include for FatFs, RTC, Timers AVR8 - Part of HP85 disk emulator.
void SPI0_RX(uint8_t *data, int count)
HSPI read using FIFO.
void SPI0_TX(uint8_t *data, int count)
SPI buffered write functions.
void SPI0_Mode(int mode)
Set SPI clock mode.
uint32_t SPI0_Get_Speed(void)
Return previously saved SPI BUS rate in HZ.
int SPI0_Get_Mode(void)
Return saved SPI mode as set by SPI0_Mode().
void SPI0_Speed(uint32_t speed)
Set AVR SPI bus rate in HZ.
void SPI0_TXRX(uint8_t *data, int count)
HSPI write and read using FIFO.