OpenCores
URL https://opencores.org/ocsvn/neorv32/neorv32/trunk

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [sw/] [lib/] [include/] [neorv32_uart.h] - Diff between revs 48 and 50

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 48 Rev 50
Line 34... Line 34...
 
 
 
 
/**********************************************************************//**
/**********************************************************************//**
 * @file neorv32_uart.h
 * @file neorv32_uart.h
 * @author Stephan Nolting
 * @author Stephan Nolting
 * @brief Universal asynchronous receiver/transmitter (UART) HW driver header file
 * @brief Universal asynchronous receiver/transmitter (UART0/UART1) HW driver header file
 *
 *
 * @note These functions should only be used if the UART unit was synthesized (IO_UART_EN = true).
 * @warning UART0 (primary UART) is used as default user console interface for all NEORV32 software framework/library functions.
 
 *
 
 * @note These functions should only be used if the UART0/UART1 unit was synthesized (IO_UART0_EN = true / IO_UART1_EN = true).
 **************************************************************************/
 **************************************************************************/
 
 
#ifndef neorv32_uart_h
#ifndef neorv32_uart_h
#define neorv32_uart_h
#define neorv32_uart_h
 
 
// Libs required by functions
// Libs required by functions
#include <stdarg.h>
#include <stdarg.h>
 
 
// prototypes
// compatibility wrappers (mapping to primary UART -> UART0)
int neorv32_uart_available(void);
int neorv32_uart_available(void);
void neorv32_uart_setup(uint32_t baudrate, uint8_t parity);
void neorv32_uart_setup(uint32_t baudrate, uint8_t parity);
void neorv32_uart_disable(void);
void neorv32_uart_disable(void);
void neorv32_uart_putc(char c);
void neorv32_uart_putc(char c);
int neorv32_uart_tx_busy(void);
int neorv32_uart_tx_busy(void);
Line 59... Line 61...
char neorv32_uart_char_received_get(void);
char neorv32_uart_char_received_get(void);
void neorv32_uart_print(const char *s);
void neorv32_uart_print(const char *s);
void neorv32_uart_printf(const char *format, ...);
void neorv32_uart_printf(const char *format, ...);
int neorv32_uart_scan(char *buffer, int max_size, int echo);
int neorv32_uart_scan(char *buffer, int max_size, int echo);
 
 
 
// prototypes for UART0 (primary UART)
 
int  neorv32_uart0_available(void);
 
void neorv32_uart0_setup(uint32_t baudrate, uint8_t parity);
 
void neorv32_uart0_disable(void);
 
void neorv32_uart0_putc(char c);
 
int  neorv32_uart0_tx_busy(void);
 
char neorv32_uart0_getc(void);
 
int  neorv32_uart0_char_received(void);
 
int  neorv32_uart0_getc_secure(char *data);
 
char neorv32_uart0_char_received_get(void);
 
void neorv32_uart0_print(const char *s);
 
void neorv32_uart0_printf(const char *format, ...);
 
int  neorv32_uart0_scan(char *buffer, int max_size, int echo);
 
 
 
// prototypes for UART1 (secondary UART)
 
int  neorv32_uart1_available(void);
 
void neorv32_uart1_setup(uint32_t baudrate, uint8_t parity);
 
void neorv32_uart1_disable(void);
 
void neorv32_uart1_putc(char c);
 
int  neorv32_uart1_tx_busy(void);
 
char neorv32_uart1_getc(void);
 
int  neorv32_uart1_char_received(void);
 
int  neorv32_uart1_getc_secure(char *data);
 
char neorv32_uart1_char_received_get(void);
 
void neorv32_uart1_print(const char *s);
 
void neorv32_uart1_printf(const char *format, ...);
 
int  neorv32_uart1_scan(char *buffer, int max_size, int echo);
 
 
#endif // neorv32_uart_h
#endif // neorv32_uart_h
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.