HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
18 #define RX_BUF_SIZE 80
19 #define RX_FLOW_WINDOW 20
24 #define XOFF_CHAR 0x13
45 #define kbhit( uart) uart_rx_count( uart )
47 #define uart_putc(a,c) uart0_putchar(c,NULL)
53 uint16_t
uart_ubr ( uint32_t baud ,
int *u2x , uint32_t *actual );
54 uint32_t
uart_init ( uint8_t uart , uint32_t baud );
66 int get_line (
char *buff ,
int len );
void uart_rx_interrupt(uint8_t uart, uint8_t data)
UART Receive Interrupt task.
int uart_peek_tail(uint8_t uart)
Return character waiting in ring buffer without removing it.
uint8_t rx_buf[RX_BUF_SIZE+1]
int uart_rx_count(uint8_t uart)
return count of character count waiting in UART ring buffer.
int uart_keyhit(uint8_t uart)
Do we have receive characters waiting ?.
int uart_put(int c)
Transmit a character on UART 0.
int uart_putchar(int c, int uart)
Transmit 1 byte on uart.
Master Include for FatFs, RTC, Timers AVR8 - Part of HP85 disk emulator.
int uart_getchar(uint8_t uart)
Receive character from uart with option CR/LF conversion.
int get_line(char *buff, int len)
Get a line from UART 0 up to a maximum of len bytes.
uint32_t uart_init(uint8_t uart, uint32_t baud)
UART initialization function that works with avr-libc functions.
int uart_tx_byte(int c, uint8_t uart)
Transmit 1 byte on uart.
int uart_get_tail(uint8_t uart)
Return next character from ring buffer.
void uart_rx_flush(uint8_t uart)
Flush receive ring buffer for specified uart.
int uart0_putchar(int c, void *f)
int uart_rx_byte(uint8_t uart)
Recive character character from uart.
int uart_get(void)
Receive a character from UART 0.
uint16_t uart_ubr(uint32_t baud, int *u2x, uint32_t *actual)
UART baud rate caluculation We compute the best values of baud rate register and prescale.
int uart0_getchar(void *f)