HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
73 uint16_t
uart_ubr(uint32_t baud,
int *u2x, uint32_t *actual)
89 ubr_regi = round( ((
double)F_CPU/(div*(
double)baud)) - 1.0 );
98 ubr_regi = round( ((
double)F_CPU/(div*(
double)baud)) - 1.0 );
104 *actual = ((double)F_CPU/(div*((
double)(ubr_regi+1))));
119 uint16_t ubr_register;
126 ubr_register =
uart_ubr(baud,(
int*)&u2x,(uint32_t *)&actual);
134 GPIO_PIN_LATCH_HI(RX0);
135 GPIO_PIN_LATCH_HI(TX0);
136 GPIO_PIN_DIR_IN(RX0);
137 GPIO_PIN_DIR_OUT(TX0);
139 UCSR0B = (1<<RXCIE0)|(1<<RXEN0)|(1<<TXEN0);
144 UBRR0H = (uint8_t) 0xff & (ubr_register >> 8);
145 UBRR0L = (uint8_t) 0xff & (ubr_register);
159 GPIO_PIN_LATCH_HI(RX1);
160 GPIO_PIN_LATCH_HI(TX1);
161 GPIO_PIN_DIR_IN(RX1);
162 GPIO_PIN_DIR_OUT(TX1);
164 UCSR1B = (1<<RXCIE1)|(1<<RXEN1)|(1<<TXEN1);
169 UBRR1H = (uint8_t) 0xff & (ubr_register >> 8);
170 UBRR1L = (uint8_t) 0xff & (ubr_register);
175 fdevopen((
void *)uart1_putchar, (
void *)uart1_getchar);
351 while (!
BIT_TST(UCSR0A, UDRE0))
359 while (!
BIT_TST(UCSR1A, UDRE1))
431 if (c ==
'\n' || c ==
'\r')
int uart_keyhit(uint8_t uart)
Do we have receive characters waiting ?.
uint32_t uart_init(uint8_t uart, uint32_t baud)
UART initialization function that works with avr-libc functions.
int uart_put(int c)
Transmit a character on UART 0.
int uart_get(void)
Receive a character from UART 0.
int uart_tx_byte(int c, uint8_t uart)
Transmit 1 byte on uart.
int uart_putchar(int c, int uart)
Transmit 1 byte on uart.
int uart0_putchar(int c, void *f __attribute__((unused)))
UART transmit character function using avr-libc.
void uart_rx_flush(uint8_t uart)
Flush receive ring buffer for specified uart.
int uart_getchar(uint8_t uart)
Receive character from uart with option CR/LF conversion.
uint8_t rx_buf[RX_BUF_SIZE+1]
ISR(USART0_RX_vect)
UART 0 Receive Interrupt runction.
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.
int uart_rx_byte(uint8_t uart)
Recive character character from uart.
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
int uart_get_tail(uint8_t uart)
Return next character from ring buffer.
Master Include for FatFs, RTC, Timers AVR8 - Part of HP85 disk emulator.
struct _uart uarts[UARTS]
Uart ring buffers.
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.
MEMSPACE FILE * fdevopen(int(*put)(char, FILE *), int(*get)(FILE *))
Device open functions.
int get_line(char *buff, int len)
Get a line from UART 0 up to a maximum of len bytes.
int uart0_getchar(void *f __attribute__((unused)))
UART receive character function using avr-libc.
int uart_rx_count(uint8_t uart)
return count of character count waiting in UART ring buffer.