summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/or1k/or1ksim/include/uart.h
blob: 92ed203844af33ba54243bbd837765064c963980 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
 * @file
 *
 * @ingroup or1ksim_uart
 *
 * @brief UART support.
 */

/*
 * COPYRIGHT (c) 2014 Hesham ALMatary <heshamelmatary@gmail.com>
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE
 */

/**
 * @defgroup or1ksim_uart UART Support
 *
 * @ingroup or1k_or1ksim
 *
 * @brief Universal Asynchronous Receiver/Transmitter (UART) Support
 */

#ifndef LIBBSP_OR1K_OR1KSIM_UART_H
#define LIBBSP_OR1K_OR1KSIM_UART_H

#include <libchip/serial.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

#define OR1KSIM_UART_DEFAULT_BAUD  115200
#define OR1KSIM_BSP_UART_IRQ       13
extern const console_fns or1ksim_uart_fns;

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* LIBBSP_OR1K_OR1KSIM_UART_H */