cpu/lpc1768: adapted UART driver
This commit is contained in:
parent
d31401ef1a
commit
68670f038f
@ -25,33 +25,22 @@
|
|||||||
#include "periph/uart.h"
|
#include "periph/uart.h"
|
||||||
#include "periph_conf.h"
|
#include "periph_conf.h"
|
||||||
|
|
||||||
/* guard the file in case no UART is defined */
|
|
||||||
#if (UART_0_EN || UART_1_EN)
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Struct holding the configuration data for a UART device
|
|
||||||
*/
|
|
||||||
typedef struct {
|
|
||||||
uart_rx_cb_t rx_cb; /**< receive callback */
|
|
||||||
uart_tx_cb_t tx_cb; /**< transmit callback */
|
|
||||||
void *arg; /**< callback argument */
|
|
||||||
} uart_conf_t;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief UART device configurations
|
* @brief UART device configurations
|
||||||
*/
|
*/
|
||||||
static uart_conf_t config[UART_NUMOF];
|
static uart_isr_ctx_t config[UART_NUMOF];
|
||||||
|
|
||||||
int uart_init(uart_t uart, uint32_t baudrate, uart_rx_cb_t rx_cb, uart_tx_cb_t tx_cb, void *arg)
|
static int init_base(uart_t uart, uint32_t baudrate);
|
||||||
|
|
||||||
|
int uart_init(uart_t uart, uint32_t baudrate, uart_rx_cb_t rx_cb, void *arg)
|
||||||
{
|
{
|
||||||
int res = uart_init_blocking(uart, baudrate);
|
int res = init_base(uart, baudrate);
|
||||||
if (res < 0) {
|
if (res < 0) {
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* save callbacks */
|
/* save callbacks */
|
||||||
config[uart].rx_cb = rx_cb;
|
config[uart].rx_cb = rx_cb;
|
||||||
config[uart].tx_cb = tx_cb;
|
|
||||||
config[uart].arg = arg;
|
config[uart].arg = arg;
|
||||||
|
|
||||||
switch (uart) {
|
switch (uart) {
|
||||||
@ -78,7 +67,7 @@ int uart_init(uart_t uart, uint32_t baudrate, uart_rx_cb_t rx_cb, uart_tx_cb_t t
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int uart_init_blocking(uart_t uart, uint32_t baudrate)
|
static int init_base(uart_t uart, uint32_t baudrate)
|
||||||
{
|
{
|
||||||
switch (uart) {
|
switch (uart) {
|
||||||
#if UART_0_EN
|
#if UART_0_EN
|
||||||
@ -150,90 +139,29 @@ int uart_init_blocking(uart_t uart, uint32_t baudrate)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void uart_tx_begin(uart_t uart)
|
void uart_write(uart_t uart, const uint8_t *data, size_t len)
|
||||||
{
|
{
|
||||||
switch (uart) {
|
LPC_UART_TypeDef *dev;
|
||||||
#if UART_0_EN
|
|
||||||
case UART_0:
|
|
||||||
/* enable TX interrupt */
|
|
||||||
UART_0_DEV->IER |= (1 << 1);
|
|
||||||
break;
|
|
||||||
#endif
|
|
||||||
#if UART_1_EN
|
|
||||||
case UART_1:
|
|
||||||
/* enable TX interrupt */
|
|
||||||
UART_1_DEV->IER |= (1 << 1);
|
|
||||||
break;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int uart_write(uart_t uart, char data)
|
|
||||||
{
|
|
||||||
switch (uart) {
|
switch (uart) {
|
||||||
#if UART_0_EN
|
#if UART_0_EN
|
||||||
case UART_0:
|
case UART_0:
|
||||||
UART_0_DEV->THR = (uint8_t)data;;
|
dev = (LPC_UART_TypeDef *)UART_0_DEV;
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#if UART_1_EN
|
#if UART_1_EN
|
||||||
case UART_1:
|
case UART_1:
|
||||||
UART_1_DEV->THR = (uint8_t)data;;
|
dev = (LPC_UART_TypeDef *)UART_1_DEV;
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
return -1;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
for (size_t i = 0; i < len; i++) {
|
||||||
|
while (!(dev->LSR & (1 << 5))); /* wait for THRE bit to be set */
|
||||||
|
dev->THR = data[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
int uart_read_blocking(uart_t uart, char *data)
|
|
||||||
{
|
|
||||||
switch (uart) {
|
|
||||||
#if UART_0_EN
|
|
||||||
case UART_0:
|
|
||||||
while (!(UART_0_DEV->LSR & (1 << 0))); /* wait for RDR bit to be set */
|
|
||||||
|
|
||||||
*data = (char)UART_0_DEV->RBR;
|
|
||||||
break;
|
|
||||||
#endif
|
|
||||||
#if UART_1_EN
|
|
||||||
case UART_1:
|
|
||||||
while (!(UART_1_DEV->LSR & (1 << 0))); /* wait for RDR bit to be set */
|
|
||||||
|
|
||||||
*data = (char)UART_1_DEV->RBR;
|
|
||||||
break;
|
|
||||||
#endif
|
|
||||||
default:
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int uart_write_blocking(uart_t uart, char data)
|
|
||||||
{
|
|
||||||
switch (uart) {
|
|
||||||
#if UART_0_EN
|
|
||||||
case UART_0:
|
|
||||||
while (!(UART_0_DEV->LSR & (1 << 5))); /* wait for THRE bit to be set */
|
|
||||||
|
|
||||||
UART_0_DEV->THR = (uint8_t)data;
|
|
||||||
break;
|
|
||||||
#endif
|
|
||||||
#if UART_1_EN
|
|
||||||
case UART_1:
|
|
||||||
while (!(UART_1_DEV->LSR & (1 << 5))); /* wait for THRE bit to be set */
|
|
||||||
|
|
||||||
UART_1_DEV->THR = (uint8_t)data;
|
|
||||||
break;
|
|
||||||
#endif
|
|
||||||
default:
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void uart_poweron(uart_t uart)
|
void uart_poweron(uart_t uart)
|
||||||
@ -275,16 +203,6 @@ void UART_0_ISR(void)
|
|||||||
char data = (char)UART_0_DEV->RBR;
|
char data = (char)UART_0_DEV->RBR;
|
||||||
config[UART_0].rx_cb(config[UART_0].arg, data);
|
config[UART_0].rx_cb(config[UART_0].arg, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (UART_0_DEV->LSR & (1 << 5)) { /* THRE flag set? */
|
|
||||||
if (UART_0_DEV->IER & (1 << 1)) {
|
|
||||||
if (config[UART_0].tx_cb(config[UART_0].arg) == 0) {
|
|
||||||
/* disable TX interrupt */
|
|
||||||
UART_0_DEV->IER &= ~(1 << 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sched_context_switch_request) {
|
if (sched_context_switch_request) {
|
||||||
thread_yield();
|
thread_yield();
|
||||||
}
|
}
|
||||||
@ -298,20 +216,8 @@ void UART_1_ISR(void)
|
|||||||
char data = (char)UART_1_DEV->RBR;
|
char data = (char)UART_1_DEV->RBR;
|
||||||
config[UART_1].rx_cb(config[UART_1].arg, data);
|
config[UART_1].rx_cb(config[UART_1].arg, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (UART_1_DEV->LSR & (1 << 5)) { /* THRE flag set? */
|
|
||||||
if (UART_1_DEV->IER & (1 << 1)) {
|
|
||||||
if (config[UART_1].tx_cb(config[UART_1].arg) == 0) {
|
|
||||||
/* disable TX interrupt */
|
|
||||||
UART_1_DEV->IER &= ~(1 << 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sched_context_switch_request) {
|
if (sched_context_switch_request) {
|
||||||
thread_yield();
|
thread_yield();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* (UART_0_EN || UART_1_EN) */
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user