mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
1289 lines
35 KiB
C
1289 lines
35 KiB
C
/*
|
|
* Copyright (c) 2022, Artinchip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <rtconfig.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
|
|
#include <aic_core.h>
|
|
#include <aic_hal.h>
|
|
#include "aic_hal_uart.h"
|
|
|
|
#define BAUDRATE_DEFAULT 115200
|
|
#define UART_BUSY_TIMEOUT 1000000
|
|
#define UART_RECEIVE_TIMEOUT 1000
|
|
#define UART_TRANSMIT_TIMEOUT 1000
|
|
#define UART_MAX_FIFO 0x10
|
|
|
|
#define ERR_USART(errno) (AIC_DRV_ERRNO_USART_BASE | errno)
|
|
|
|
/*
|
|
* setting config may be accessed when the USART is not
|
|
* busy(USR[0]=0) and the DLAB bit(LCR[7]) is set.
|
|
*/
|
|
|
|
#define WAIT_USART_IDLE(addr)\
|
|
do { \
|
|
int32_t timecount = 0; \
|
|
while ((addr->USR & USR_UART_BUSY) && (timecount < UART_BUSY_TIMEOUT)) {\
|
|
timecount++;\
|
|
}\
|
|
if (timecount >= UART_BUSY_TIMEOUT) {\
|
|
return ERR_USART(DRV_ERROR_TIMEOUT);\
|
|
} \
|
|
} while(0)
|
|
|
|
#ifndef CONFIG_PARAM_NOT_CHECK
|
|
#define HANDLE_PARAM_CHK(para, err) \
|
|
do { \
|
|
if (para == NULL) { \
|
|
return (err); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define HANDLE_PARAM_CHK_NORETVAL(para, err) \
|
|
do { \
|
|
if (para == NULL) { \
|
|
return; \
|
|
} \
|
|
} while (0)
|
|
#else
|
|
#define HANDLE_PARAM_CHK(para, err)
|
|
#define HANDLE_PARAM_CHK_NORETVAL(para, err)
|
|
#endif
|
|
|
|
#define USART_NULL_PARAM_CHK(para) HANDLE_PARAM_CHK(para, ERR_USART(DRV_ERROR_PARAMETER))
|
|
|
|
/* UART register bit definitions */
|
|
|
|
#define USR_UART_BUSY 0x01
|
|
#define USR_UART_TFE 0x04
|
|
#define USR_UART_RFNE 0x08
|
|
#define LSR_DATA_READY 0x01
|
|
#define LSR_THR_EMPTY 0x20
|
|
#define IER_RDA_INT_ENABLE 0x01
|
|
#define IER_THRE_INT_ENABLE 0x02
|
|
#define IIR_RECV_LINE_ENABLE 0x04
|
|
#define IIR_NO_ISQ_PEND 0x01
|
|
|
|
#define FCR_FIFO_EN 0x01
|
|
#define FCR_RX_FIFO_RST 0x02
|
|
#define FCR_TX_FIFO_RST 0x04
|
|
#define FCR_DMA_MODE 0x08
|
|
|
|
#define LCR_SET_DLAB 0x80 /* enable r/w DLR to set the baud rate */
|
|
#define LCR_PARITY_ENABLE 0x08 /* parity enabled */
|
|
#define LCR_PARITY_EVEN 0x10 /* Even parity enabled */
|
|
#define LCR_PARITY_ODD 0xef /* Odd parity enabled */
|
|
#define LCR_WORD_SIZE_5 0xfc /* the data length is 5 bits */
|
|
#define LCR_WORD_SIZE_6 0x01 /* the data length is 6 bits */
|
|
#define LCR_WORD_SIZE_7 0x02 /* the data length is 7 bits */
|
|
#define LCR_WORD_SIZE_8 0x03 /* the data length is 8 bits */
|
|
#define LCR_STOP_BIT1 0xfb /* 1 stop bit */
|
|
#define LCR_STOP_BIT2 0x04 /* 1.5 stop bit */
|
|
|
|
#define AIC_LSR_PFE 0x80
|
|
#define AIC_LSR_TEMT 0x40
|
|
#define AIC_LSR_THRE 0x40
|
|
#define AIC_LSR_BI 0x10
|
|
#define AIC_LSR_FE 0x08
|
|
#define AIC_LSR_PE 0x04
|
|
#define AIC_LSR_OE 0x02
|
|
#define AIC_LSR_DR 0x01
|
|
#define AIC_LSR_TRANS_EMPTY 0x20
|
|
|
|
#define AIC_IIR_THR_EMPTY 0x02 /* threshold empty */
|
|
#define AIC_IIR_RECV_DATA 0x04 /* received data available */
|
|
#define AIC_IIR_RECV_LINE 0x06 /* receiver line status */
|
|
#define AIC_IIR_CHAR_TIMEOUT 0x0c /* character timeout */
|
|
|
|
/* ArtInChip specific register fields */
|
|
#define AIC_UART_MCR_SIRE 0x40
|
|
#define AIC_UART_MCR_RS485 0x80
|
|
#define AIC_UART_MCR_RS485S 0xC0
|
|
#define AIC_UART_MCR_UART 0x00
|
|
#define AIC_UART_MCR_FUNC_MASK 0x3F
|
|
|
|
#define AIC_UART_EXREG 0xB8 /* RS485 DE Time */
|
|
#define AIC_UART_RS485_CTL_MODE 0x80;
|
|
#define AIC_UART_RS485_RXBFA 0x08;
|
|
#define AIC_UART_RS485_RXAFA 0x04;
|
|
|
|
typedef struct
|
|
{
|
|
union
|
|
{
|
|
__IM uint32_t RBR; /* Offset: 0x000 (R/ ) Receive buffer register */
|
|
__OM uint32_t THR; /* Offset: 0x000 ( /W) Transmission hold register */
|
|
__IOM uint32_t DLL; /* Offset: 0x000 (R/W) Clock frequency division low section register */
|
|
};
|
|
union
|
|
{
|
|
__IOM uint32_t DLH; /* Offset: 0x004 (R/W) Clock frequency division high section register */
|
|
__IOM uint32_t IER; /* Offset: 0x004 (R/W) Interrupt enable register */
|
|
};
|
|
union
|
|
{
|
|
__IM uint32_t IIR; /* Offset: 0x008 (R/ ) Interrupt indicia register */
|
|
__IOM uint32_t FCR; /* Offset: 0x008 (W) FIFO control register */
|
|
};
|
|
__IOM uint32_t LCR; /* Offset: 0x00C (R/W) Transmission control register */
|
|
__IOM uint32_t MCR; /* Offset: 0x010 (R/W) Modem Control register */
|
|
__IM uint32_t LSR; /* Offset: 0x014 (R/ ) Transmission state register */
|
|
__IM uint32_t MSR; /* Offset: 0x018 (R/ ) Modem state register */
|
|
uint32_t RESERVED1[24];
|
|
__IM uint32_t USR; /* Offset: 0x07c (R/ ) UART state register */
|
|
} aic_usart_reg_t;
|
|
|
|
typedef struct
|
|
{
|
|
__IOM uint32_t RS485DE; /* Offset: 0x0B8 (R/W ) RS485 DE Time register*/
|
|
uint32_t RESERVED0;
|
|
__IOM uint32_t RS485CTL; /* Offset: 0x0C0 (R/W ) RS485 Control and Status register*/
|
|
__IOM uint32_t RS485AM; /* Offset: 0x0C4 (R/W ) RS485 Address Match register*/
|
|
__IOM uint32_t RS485BIC; /* Offset: 0x0C8 (R/W ) RS485 Bus Idle Check register*/
|
|
} aic_usart_exreg_t;
|
|
|
|
typedef struct
|
|
{
|
|
size_t base;
|
|
uint32_t irq;
|
|
usart_event_cb_t cb_event; ///< Event callback
|
|
uint32_t rx_total_num;
|
|
uint32_t tx_total_num;
|
|
uint8_t *rx_buf;
|
|
uint8_t *tx_buf;
|
|
volatile uint32_t rx_cnt;
|
|
volatile uint32_t tx_cnt;
|
|
volatile uint32_t tx_busy;
|
|
volatile uint32_t rx_busy;
|
|
uint32_t last_tx_num;
|
|
uint32_t last_rx_num;
|
|
int32_t idx;
|
|
} aic_usart_priv_t;
|
|
|
|
static aic_usart_priv_t usart_instance[AIC_UART_DEV_NUM];
|
|
|
|
static const usart_capabilities_t usart_capabilities =
|
|
{
|
|
.asynchronous = 1, /* supports USART (Asynchronous) mode */
|
|
.synchronous_master = 0, /* supports Synchronous Master mode */
|
|
.synchronous_slave = 0, /* supports Synchronous Slave mode */
|
|
.single_wire = 0, /* supports USART Single-wire mode */
|
|
.event_tx_complete = 1, /* Transmit completed event */
|
|
.event_rx_timeout = 0, /* Signal receive character timeout event */
|
|
};
|
|
|
|
extern int32_t drv_usart_target_init(int32_t idx, uint32_t *base, uint32_t *irq, void **handler);
|
|
|
|
/**
|
|
\brief set the bautrate of usart.
|
|
\param[in] addr usart base to operate.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_config_baudrate(usart_handle_t handle, uint32_t baud)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
/* baudrate=(seriak clock freq)/(16*divisor); algorithm :rounding*/
|
|
uint32_t divisor = ((hal_clk_get_freq(CLK_UART0 + usart_priv->idx) * 10) / baud) >> 4;
|
|
|
|
if ((divisor % 10) >= 5)
|
|
{
|
|
divisor = (divisor / 10) + 1;
|
|
} else
|
|
{
|
|
divisor = divisor / 10;
|
|
}
|
|
|
|
addr->LCR |= LCR_SET_DLAB;
|
|
/* DLL and DLH is lower 8-bits and higher 8-bits of divisor.*/
|
|
addr->DLL = divisor & 0xff;
|
|
addr->DLH = (divisor >> 8) & 0xff;
|
|
/*
|
|
* The DLAB must be cleared after the baudrate is setted
|
|
* to access other registers.
|
|
*/
|
|
addr->LCR &= (~LCR_SET_DLAB);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief config usart mode.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] mode \ref usart_mode_e
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_config_mode(usart_handle_t handle, usart_mode_e mode)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
|
|
if (mode == USART_MODE_ASYNCHRONOUS)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
return ERR_USART(USART_ERROR_MODE);
|
|
}
|
|
|
|
/**
|
|
\brief config usart parity.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] parity \ref usart_parity_e
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_config_parity(usart_handle_t handle, usart_parity_e parity)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
switch (parity)
|
|
{
|
|
case USART_PARITY_NONE:
|
|
/*CLear the PEN bit(LCR[3]) to disable parity.*/
|
|
addr->LCR &= (~LCR_PARITY_ENABLE);
|
|
break;
|
|
|
|
case USART_PARITY_ODD:
|
|
/* Set PEN and clear EPS(LCR[4]) to set the ODD parity. */
|
|
addr->LCR |= LCR_PARITY_ENABLE;
|
|
addr->LCR &= LCR_PARITY_ODD;
|
|
break;
|
|
|
|
case USART_PARITY_EVEN:
|
|
/* Set PEN and EPS(LCR[4]) to set the EVEN parity.*/
|
|
addr->LCR |= LCR_PARITY_ENABLE;
|
|
addr->LCR |= LCR_PARITY_EVEN;
|
|
break;
|
|
|
|
default:
|
|
return ERR_USART(USART_ERROR_PARITY);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief config usart stop bit number.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] stopbits \ref usart_stop_bits_e
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_config_stopbits(usart_handle_t handle, usart_stop_bits_e stopbit)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
switch (stopbit)
|
|
{
|
|
case USART_STOP_BITS_1:
|
|
/* Clear the STOP bit to set 1 stop bit*/
|
|
addr->LCR &= LCR_STOP_BIT1;
|
|
break;
|
|
|
|
case USART_STOP_BITS_2:
|
|
/*
|
|
* If the STOP bit is set "1",we'd gotten 1.5 stop
|
|
* bits when DLS(LCR[1:0]) is zero, else 2 stop bits.
|
|
*/
|
|
addr->LCR |= LCR_STOP_BIT2;
|
|
break;
|
|
|
|
default:
|
|
return ERR_USART(USART_ERROR_STOP_BITS);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief config usart data length.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] databits \ref usart_data_bits_e
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_config_databits(usart_handle_t handle, usart_data_bits_e databits)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
/* The word size decides by the DLS bits(LCR[1:0]), and the
|
|
* corresponding relationship between them is:
|
|
* DLS word size
|
|
* 00 -- 5 bits
|
|
* 01 -- 6 bits
|
|
* 10 -- 7 bits
|
|
* 11 -- 8 bits
|
|
*/
|
|
|
|
switch (databits)
|
|
{
|
|
case USART_DATA_BITS_5:
|
|
addr->LCR &= LCR_WORD_SIZE_5;
|
|
break;
|
|
|
|
case USART_DATA_BITS_6:
|
|
addr->LCR &= 0xfd;
|
|
addr->LCR |= LCR_WORD_SIZE_6;
|
|
break;
|
|
|
|
case USART_DATA_BITS_7:
|
|
addr->LCR &= 0xfe;
|
|
addr->LCR |= LCR_WORD_SIZE_7;
|
|
break;
|
|
|
|
case USART_DATA_BITS_8:
|
|
addr->LCR |= LCR_WORD_SIZE_8;
|
|
break;
|
|
|
|
default:
|
|
return ERR_USART(USART_ERROR_DATA_BITS);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int32_t hal_usart_config_fifo(usart_handle_t handle)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
addr->FCR = (FCR_FIFO_EN | FCR_RX_FIFO_RST | FCR_TX_FIFO_RST);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int32_t hal_usart_config_func(usart_handle_t handle, usart_func_e func)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
aic_usart_exreg_t *exaddr = (aic_usart_exreg_t *)(usart_priv->base + AIC_UART_EXREG);
|
|
|
|
if (func == USART_FUNC_RS485 || func == USART_FUNC_RS485_COMACT_IO)
|
|
{
|
|
addr->MCR &= AIC_UART_MCR_FUNC_MASK;
|
|
if(func == USART_FUNC_RS485_COMACT_IO)
|
|
addr->MCR |= AIC_UART_MCR_RS485S;
|
|
else
|
|
addr->MCR |= AIC_UART_MCR_RS485;
|
|
exaddr->RS485CTL |= AIC_UART_RS485_RXBFA;
|
|
exaddr->RS485CTL |= AIC_UART_RS485_RXAFA;
|
|
exaddr->RS485CTL &= ~AIC_UART_RS485_CTL_MODE;
|
|
}
|
|
else
|
|
{
|
|
addr->MCR &= AIC_UART_MCR_FUNC_MASK;
|
|
exaddr->RS485CTL &= ~AIC_UART_RS485_RXBFA;
|
|
exaddr->RS485CTL &= ~AIC_UART_RS485_RXAFA;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int32_t hal_usart_set_int_flag(usart_handle_t handle,uint32_t flag)
|
|
{
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
addr->IER |= flag;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int32_t hal_usart_clr_int_flag(usart_handle_t handle,uint32_t flag)
|
|
{
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
addr->IER &= ~flag;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
/**
|
|
\brief get character in query mode.
|
|
\param[in] instance usart instance to operate.
|
|
\param[in] the pointer to the recieve charater.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_getchar(usart_handle_t handle, uint8_t *ch)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
USART_NULL_PARAM_CHK(ch);
|
|
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
while (!(addr->LSR & LSR_DATA_READY));
|
|
|
|
*ch = addr->RBR;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
/**
|
|
\brief get character in query mode.
|
|
\param[in] instance usart instance to operate.
|
|
\param[in] the pointer to the recieve charater.
|
|
\return error code
|
|
*/
|
|
int hal_uart_getchar(usart_handle_t handle)
|
|
{
|
|
volatile int ch;
|
|
USART_NULL_PARAM_CHK(handle);
|
|
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
ch = -1;
|
|
|
|
if (addr->LSR & LSR_DATA_READY)
|
|
{
|
|
ch = addr->RBR & 0xff;
|
|
}
|
|
|
|
return ch;
|
|
}
|
|
|
|
|
|
/**
|
|
\brief transmit character in query mode.
|
|
\param[in] instance usart instance to operate.
|
|
\param[in] ch the input charater
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_putchar(usart_handle_t handle, uint8_t ch)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
uint32_t timecount = 0;
|
|
|
|
while ((!(addr->LSR & AIC_LSR_TRANS_EMPTY)))
|
|
{
|
|
timecount++;
|
|
|
|
if (timecount >= UART_BUSY_TIMEOUT)
|
|
{
|
|
return ERR_USART(DRV_ERROR_TIMEOUT);
|
|
}
|
|
}
|
|
|
|
addr->THR = ch;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/**
|
|
\brief interrupt service function for transmitter holding register empty.
|
|
\param[in] usart_priv usart private to operate.
|
|
*/
|
|
void hal_usart_intr_threshold_empty(int32_t idx, aic_usart_priv_t *usart_priv)
|
|
{
|
|
if (usart_priv->tx_total_num == 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
volatile int i = 500;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
if (usart_priv->tx_cnt >= usart_priv->tx_total_num)
|
|
{
|
|
addr->IER &= (~IER_THRE_INT_ENABLE);
|
|
usart_priv->last_tx_num = usart_priv->tx_total_num;
|
|
|
|
/* fix hardware bug */
|
|
while (addr->USR & USR_UART_BUSY);
|
|
|
|
i = 500;
|
|
|
|
while (i--);
|
|
|
|
usart_priv->tx_cnt = 0;
|
|
usart_priv->tx_busy = 0;
|
|
usart_priv->tx_buf = NULL;
|
|
usart_priv->tx_total_num = 0;
|
|
|
|
if (usart_priv->cb_event)
|
|
{
|
|
usart_priv->cb_event(idx, USART_EVENT_SEND_COMPLETE);
|
|
}
|
|
} else
|
|
{
|
|
/* fix hardware bug */
|
|
while (addr->USR & USR_UART_BUSY);
|
|
|
|
i = 500;
|
|
|
|
while (i--);
|
|
|
|
addr->THR = *((uint8_t *)usart_priv->tx_buf);
|
|
usart_priv->tx_cnt++;
|
|
usart_priv->tx_buf++;
|
|
}
|
|
}
|
|
|
|
/**
|
|
\brief interrupt service function for receiver data available.
|
|
\param[in] usart_priv usart private to operate.
|
|
*/
|
|
static void hal_usart_intr_recv_data(int32_t idx, aic_usart_priv_t *usart_priv)
|
|
{
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
uint8_t data = addr->RBR;
|
|
|
|
*((uint8_t *)usart_priv->rx_buf) = data;
|
|
usart_priv->rx_cnt++;
|
|
usart_priv->rx_buf++;
|
|
|
|
if (usart_priv->rx_cnt >= usart_priv->rx_total_num)
|
|
{
|
|
usart_priv->last_rx_num = usart_priv->rx_total_num;
|
|
usart_priv->rx_cnt = 0;
|
|
usart_priv->rx_buf = NULL;
|
|
usart_priv->rx_busy = 0;
|
|
usart_priv->rx_total_num = 0;
|
|
|
|
if (usart_priv->cb_event)
|
|
{
|
|
usart_priv->cb_event(idx, USART_EVENT_RECEIVE_COMPLETE);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
\brief interrupt service function for receiver line.
|
|
\param[in] usart_priv usart private to operate.
|
|
*/
|
|
static void hal_usart_intr_recv_line(int32_t idx, aic_usart_priv_t *usart_priv)
|
|
{
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
uint32_t lsr_stat = addr->LSR;
|
|
|
|
addr->IER &= (~IER_THRE_INT_ENABLE);
|
|
|
|
uint32_t timecount = 0;
|
|
|
|
while (addr->LSR & 0x1)
|
|
{
|
|
//addr->RBR;
|
|
timecount++;
|
|
|
|
if (timecount >= UART_BUSY_TIMEOUT)
|
|
{
|
|
if (usart_priv->cb_event)
|
|
{
|
|
usart_priv->cb_event(idx, USART_EVENT_RX_TIMEOUT);
|
|
}
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
/** Break Interrupt bit. This is used to indicate the detection of a
|
|
* break sequence on the serial input data.
|
|
*/
|
|
if (lsr_stat & AIC_LSR_BI)
|
|
{
|
|
if (usart_priv->cb_event)
|
|
{
|
|
usart_priv->cb_event(idx, USART_EVENT_RX_BREAK);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
/** Framing Error bit. This is used to indicate the occurrence of a
|
|
* framing error in the receiver. A framing error occurs when the receiver
|
|
* does not detect a valid STOP bit in the received data.
|
|
*/
|
|
if (lsr_stat & AIC_LSR_FE)
|
|
{
|
|
if (usart_priv->cb_event)
|
|
{
|
|
usart_priv->cb_event(idx, USART_EVENT_RX_FRAMING_ERROR);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
/** Framing Error bit. This is used to indicate the occurrence of a
|
|
* framing error in the receiver. A framing error occurs when the
|
|
* receiver does not detect a valid STOP bit in the received data.
|
|
*/
|
|
if (lsr_stat & AIC_LSR_PE)
|
|
{
|
|
if (usart_priv->cb_event)
|
|
{
|
|
usart_priv->cb_event(idx, USART_EVENT_RX_PARITY_ERROR);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
/** Overrun error bit. This is used to indicate the occurrence of an overrun error.
|
|
* This occurs if a new data character was received before the previous data was read.
|
|
*/
|
|
if (lsr_stat & AIC_LSR_OE)
|
|
{
|
|
if (usart_priv->cb_event)
|
|
{
|
|
usart_priv->cb_event(idx, USART_EVENT_RX_OVERFLOW);
|
|
}
|
|
|
|
return;
|
|
}
|
|
}
|
|
/**
|
|
\brief interrupt service function for character timeout.
|
|
\param[in] usart_priv usart private to operate.
|
|
*/
|
|
static void hal_usart_intr_char_timeout(int32_t idx, aic_usart_priv_t *usart_priv)
|
|
{
|
|
if ((usart_priv->rx_total_num != 0) && (usart_priv->rx_buf != NULL))
|
|
{
|
|
hal_usart_intr_recv_data(idx, usart_priv);
|
|
return;
|
|
}
|
|
|
|
if (usart_priv->cb_event)
|
|
{
|
|
usart_priv->cb_event(idx, USART_EVENT_RECEIVED);
|
|
} else
|
|
{
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
uint32_t timecount = 0;
|
|
|
|
while (addr->LSR & 0x1)
|
|
{
|
|
//addr->RBR;
|
|
timecount++;
|
|
|
|
if (timecount >= UART_BUSY_TIMEOUT)
|
|
{
|
|
if (usart_priv->cb_event)
|
|
{
|
|
usart_priv->cb_event(idx, USART_EVENT_RX_TIMEOUT);
|
|
}
|
|
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
\brief the interrupt service function.
|
|
\param[in] index of usart instance.
|
|
*/
|
|
void hal_usart_irqhandler(int32_t idx)
|
|
{
|
|
aic_usart_priv_t *usart_priv = &usart_instance[idx];
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
uint8_t intr_state = addr->IIR & 0xf;
|
|
|
|
switch (intr_state)
|
|
{
|
|
case AIC_IIR_THR_EMPTY: /* interrupt source:transmitter holding register empty */
|
|
hal_usart_intr_threshold_empty(idx, usart_priv);
|
|
break;
|
|
|
|
case AIC_IIR_RECV_DATA: /* interrupt source:receiver data available or receiver fifo trigger level reached */
|
|
hal_usart_intr_char_timeout(idx, usart_priv);
|
|
//hal_usart_intr_recv_data(idx, usart_priv);
|
|
break;
|
|
|
|
case AIC_IIR_RECV_LINE:
|
|
hal_usart_intr_recv_line(idx, usart_priv);
|
|
break;
|
|
|
|
case AIC_IIR_CHAR_TIMEOUT:
|
|
hal_usart_intr_char_timeout(idx, usart_priv);
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
/**
|
|
\brief Get driver capabilities.
|
|
\param[in] idx usart index
|
|
\return \ref usart_capabilities_t
|
|
*/
|
|
usart_capabilities_t hal_usart_get_capabilities(int32_t idx)
|
|
{
|
|
if (idx < 0 || idx >= AIC_UART_DEV_NUM)
|
|
{
|
|
usart_capabilities_t ret;
|
|
memset(&ret, 0, sizeof(usart_capabilities_t));
|
|
return ret;
|
|
}
|
|
|
|
return usart_capabilities;
|
|
}
|
|
|
|
/**
|
|
\brief Initialize USART Interface. 1. Initializes the resources needed for the USART interface 2.registers event callback function
|
|
\param[in] idx usart index
|
|
\param[in] cb_event Pointer to \ref usart_event_cb_t
|
|
\return return usart handle if success
|
|
*/
|
|
usart_handle_t hal_usart_initialize(int32_t idx, usart_event_cb_t cb_event, void *handler)
|
|
{
|
|
aic_usart_priv_t *usart_priv = &usart_instance[idx];
|
|
usart_priv->base = UART_BASE(idx);
|
|
usart_priv->irq = UART_IRQn(idx);
|
|
usart_priv->cb_event = cb_event;
|
|
usart_priv->idx = idx;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
/* enable received data available */
|
|
addr->IER = IER_RDA_INT_ENABLE | IIR_RECV_LINE_ENABLE;
|
|
|
|
if (handler != NULL) {
|
|
aicos_request_irq(usart_priv->irq, handler, 0, "uart", NULL);
|
|
aicos_irq_enable(usart_priv->irq);
|
|
}
|
|
|
|
return usart_priv;
|
|
}
|
|
|
|
/**
|
|
\brief De-initialize UART Interface. stops operation and releases the software resources used by the interface
|
|
\param[in] handle usart handle to operate.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_uninitialize(usart_handle_t handle)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
|
|
aicos_irq_disable(usart_priv->irq);
|
|
//drv_irq_unregister(usart_priv->irq);
|
|
usart_priv->cb_event = NULL;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief config usart mode.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] baud baud rate
|
|
\param[in] mode \ref usart_mode_e
|
|
\param[in] parity \ref usart_parity_e
|
|
\param[in] stopbits \ref usart_stop_bits_e
|
|
\param[in] bits \ref usart_data_bits_e
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_config(usart_handle_t handle,
|
|
uint32_t baud,
|
|
usart_mode_e mode,
|
|
usart_parity_e parity,
|
|
usart_stop_bits_e stopbits,
|
|
usart_data_bits_e bits,
|
|
usart_func_e func)
|
|
{
|
|
int32_t ret;
|
|
|
|
/* control the data_bit of the usart*/
|
|
ret = hal_usart_config_baudrate(handle, baud);
|
|
|
|
if (ret < 0)
|
|
{
|
|
return ret;
|
|
}
|
|
|
|
/* control mode of the usart*/
|
|
ret = hal_usart_config_mode(handle, mode);
|
|
|
|
if (ret < 0)
|
|
{
|
|
return ret;
|
|
}
|
|
|
|
/* control the parity of the usart*/
|
|
ret = hal_usart_config_parity(handle, parity);
|
|
|
|
if (ret < 0)
|
|
{
|
|
return ret;
|
|
}
|
|
|
|
/* function */
|
|
ret = hal_usart_config_func(handle, func);
|
|
|
|
if (ret < 0)
|
|
{
|
|
return ret;
|
|
}
|
|
|
|
/* control the stopbit of the usart*/
|
|
ret = hal_usart_config_stopbits(handle, stopbits);
|
|
|
|
if (ret < 0)
|
|
{
|
|
return ret;
|
|
}
|
|
|
|
ret = hal_usart_config_databits(handle, bits);
|
|
|
|
if (ret < 0)
|
|
{
|
|
return ret;
|
|
}
|
|
|
|
/* control fifo */
|
|
ret = hal_usart_config_fifo(handle);
|
|
|
|
if (ret < 0)
|
|
{
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief Start sending data to UART transmitter,(received data is ignored).
|
|
The function is non-blocking,UART_EVENT_TRANSFER_COMPLETE is signaled when transfer completes.
|
|
hal_usart_get_status can indicates if transmission is still in progress or pending
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] data Pointer to buffer with data to send to UART transmitter. data_type is : uint8_t for 1..8 data bits, uint16_t for 9..16 data bits,uint32_t for 17..32 data bits,
|
|
\param[in] num Number of data items to send
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_send(usart_handle_t handle, const void *data, uint32_t num)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
USART_NULL_PARAM_CHK(data);
|
|
|
|
if (num == 0)
|
|
{
|
|
return ERR_USART(DRV_ERROR_PARAMETER);
|
|
}
|
|
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
|
|
usart_priv->tx_buf = (uint8_t *)data;
|
|
usart_priv->tx_total_num = num;
|
|
usart_priv->tx_cnt = 0;
|
|
usart_priv->tx_busy = 1;
|
|
usart_priv->last_tx_num = 0;
|
|
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
hal_usart_intr_threshold_empty(usart_priv->idx, usart_priv);
|
|
/* enable the interrupt*/
|
|
addr->IER |= IER_THRE_INT_ENABLE;
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief Abort Send data to UART transmitter
|
|
\param[in] handle usart handle to operate.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_abort_send(usart_handle_t handle)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
addr->IER &= (~IER_THRE_INT_ENABLE);
|
|
|
|
usart_priv->tx_cnt = usart_priv->tx_total_num;
|
|
usart_priv->tx_cnt = 0;
|
|
usart_priv->tx_busy = 0;
|
|
usart_priv->tx_buf = NULL;
|
|
usart_priv->tx_total_num = 0;
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief Start receiving data from UART receiver.transmits the default value as specified by hal_usart_set_default_tx_value
|
|
\param[in] handle usart handle to operate.
|
|
\param[out] data Pointer to buffer for data to receive from UART receiver
|
|
\param[in] num Number of data items to receive
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_receive(usart_handle_t handle, void *data, uint32_t num)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
USART_NULL_PARAM_CHK(data);
|
|
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
|
|
usart_priv->rx_buf = (uint8_t *)data; // Save receive buffer usart
|
|
usart_priv->rx_total_num = num; // Save number of data to be received
|
|
usart_priv->rx_cnt = 0;
|
|
usart_priv->rx_busy = 1;
|
|
usart_priv->last_rx_num = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/**
|
|
\brief query data from UART receiver FIFO.
|
|
\param[in] handle usart handle to operate.
|
|
\param[out] data Pointer to buffer for data to receive from UART receiver
|
|
\param[in] num Number of data items to receive
|
|
\return receive fifo data num
|
|
*/
|
|
int32_t hal_usart_receive_query(usart_handle_t handle, void *data, uint32_t num)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
USART_NULL_PARAM_CHK(data);
|
|
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
int32_t recv_num = 0;
|
|
uint8_t *dest = (uint8_t *)data;
|
|
|
|
while (addr->LSR & 0x1)
|
|
{
|
|
*dest++ = addr->RBR;
|
|
recv_num++;
|
|
|
|
if (recv_num >= num)
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
return recv_num;
|
|
|
|
}
|
|
|
|
/**
|
|
\brief Abort Receive data from UART receiver
|
|
\param[in] handle usart handle to operate.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_abort_receive(usart_handle_t handle)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
|
|
usart_priv->rx_cnt = usart_priv->rx_total_num;
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief Start sending/receiving data to/from UART transmitter/receiver.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] data_out Pointer to buffer with data to send to USART transmitter
|
|
\param[out] data_in Pointer to buffer for data to receive from USART receiver
|
|
\param[in] num Number of data items to transfer
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_transfer(usart_handle_t handle, const void *data_out, void *data_in, uint32_t num)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
return ERR_USART(DRV_ERROR_UNSUPPORTED);
|
|
}
|
|
|
|
/**
|
|
\brief abort sending/receiving data to/from USART transmitter/receiver.
|
|
\param[in] handle usart handle to operate.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_abort_transfer(usart_handle_t handle)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
return ERR_USART(DRV_ERROR_UNSUPPORTED);
|
|
}
|
|
|
|
/**
|
|
\brief Get USART status.
|
|
\param[in] handle usart handle to operate.
|
|
\return USART status \ref usart_status_t
|
|
*/
|
|
usart_status_t hal_usart_get_status(usart_handle_t handle)
|
|
{
|
|
usart_status_t usart_status;
|
|
|
|
memset(&usart_status, 0, sizeof(usart_status_t));
|
|
|
|
if (handle == NULL)
|
|
{
|
|
return usart_status;
|
|
}
|
|
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
uint32_t line_status_reg = addr->LSR;
|
|
|
|
usart_status.tx_busy = usart_priv->tx_busy;
|
|
usart_status.rx_busy = usart_priv->rx_busy;
|
|
|
|
if (line_status_reg & AIC_LSR_BI)
|
|
{
|
|
usart_status.rx_break = 1;
|
|
}
|
|
|
|
if (line_status_reg & AIC_LSR_FE)
|
|
{
|
|
usart_status.rx_framing_error = 1;
|
|
}
|
|
|
|
if (line_status_reg & AIC_LSR_PE)
|
|
{
|
|
usart_status.rx_parity_error = 1;
|
|
}
|
|
|
|
usart_status.tx_enable = 1;
|
|
usart_status.rx_enable = 1;
|
|
|
|
return usart_status;
|
|
}
|
|
|
|
/**
|
|
\brief control the transmit.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] 1 - enable the transmitter. 0 - disable the transmitter
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_control_tx(usart_handle_t handle, uint32_t enable)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief control the receive.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] 1 - enable the receiver. 0 - disable the receiver
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_control_rx(usart_handle_t handle, uint32_t enable)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief control the break.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] 1- Enable continuous Break transmission,0 - disable continuous Break transmission
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_control_break(usart_handle_t handle, uint32_t enable)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
return ERR_USART(DRV_ERROR_UNSUPPORTED);
|
|
}
|
|
|
|
/**
|
|
\brief flush receive/send data.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] type \ref usart_flush_type_e.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_flush(usart_handle_t handle, usart_flush_type_e type)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
uint32_t timecount = 0;
|
|
|
|
if (type == USART_FLUSH_WRITE) {
|
|
while ((!(addr->LSR & AIC_LSR_TEMT)))
|
|
{
|
|
timecount++;
|
|
|
|
if (timecount >= UART_BUSY_TIMEOUT)
|
|
{
|
|
return ERR_USART(DRV_ERROR_TIMEOUT);
|
|
}
|
|
}
|
|
} else if (type == USART_FLUSH_READ)
|
|
{
|
|
while (addr->LSR & 0x1) {
|
|
timecount++;
|
|
|
|
if (timecount >= UART_BUSY_TIMEOUT)
|
|
{
|
|
return ERR_USART(DRV_ERROR_TIMEOUT);
|
|
}
|
|
}
|
|
} else
|
|
{
|
|
return ERR_USART(DRV_ERROR_PARAMETER);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief set interrupt mode.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] type \ref usart_intr_type_e.
|
|
\param[in] flag 0-OFF, 1-ON.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_set_interrupt(usart_handle_t handle, usart_intr_type_e type, int32_t flag)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
aic_usart_reg_t *addr = (aic_usart_reg_t *)(usart_priv->base);
|
|
|
|
switch (type)
|
|
{
|
|
case USART_INTR_WRITE:
|
|
if (flag == 0)
|
|
{
|
|
addr->IER &= ~IER_THRE_INT_ENABLE;
|
|
} else if (flag == 1)
|
|
{
|
|
addr->IER |= IER_THRE_INT_ENABLE;
|
|
} else
|
|
{
|
|
return ERR_USART(DRV_ERROR_PARAMETER);
|
|
}
|
|
|
|
break;
|
|
|
|
case USART_INTR_READ:
|
|
if (flag == 0)
|
|
{
|
|
addr->IER &= ~IER_RDA_INT_ENABLE;
|
|
} else if (flag == 1)
|
|
{
|
|
addr->IER |= IER_RDA_INT_ENABLE;
|
|
} else
|
|
{
|
|
return ERR_USART(DRV_ERROR_PARAMETER);
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
return ERR_USART(DRV_ERROR_PARAMETER);
|
|
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
\brief Get usart send data count.
|
|
\param[in] handle usart handle to operate.
|
|
\return number of currently transmitted data bytes
|
|
*/
|
|
uint32_t hal_usart_get_tx_count(usart_handle_t handle)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
|
|
if (usart_priv->tx_busy)
|
|
{
|
|
return usart_priv->tx_cnt;
|
|
} else
|
|
{
|
|
return usart_priv->last_tx_num;
|
|
}
|
|
}
|
|
|
|
/**
|
|
\brief Get usart receive data count.
|
|
\param[in] handle usart handle to operate.
|
|
\return number of currently received data bytes
|
|
*/
|
|
uint32_t hal_usart_get_rx_count(usart_handle_t handle)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
aic_usart_priv_t *usart_priv = handle;
|
|
|
|
if (usart_priv->rx_busy)
|
|
{
|
|
return usart_priv->rx_cnt;
|
|
} else
|
|
{
|
|
return usart_priv->last_rx_num;
|
|
}
|
|
}
|
|
|
|
/**
|
|
\brief control usart power.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] state power state.\ref aic_power_stat_e.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_power_control(usart_handle_t handle, aic_power_stat_e state)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
return ERR_USART(DRV_ERROR_UNSUPPORTED);
|
|
}
|
|
|
|
/**
|
|
\brief config usart flow control type.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] flowctrl_type flow control type.\ref usart_flowctrl_type_e.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_config_flowctrl(usart_handle_t handle,
|
|
usart_flowctrl_type_e flowctrl_type)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
|
|
switch (flowctrl_type)
|
|
{
|
|
case USART_FLOWCTRL_CTS:
|
|
return ERR_USART(DRV_ERROR_UNSUPPORTED);
|
|
|
|
case USART_FLOWCTRL_RTS:
|
|
return ERR_USART(DRV_ERROR_UNSUPPORTED);
|
|
|
|
case USART_FLOWCTRL_CTS_RTS:
|
|
return ERR_USART(DRV_ERROR_UNSUPPORTED);
|
|
break;
|
|
|
|
case USART_FLOWCTRL_NONE:
|
|
return ERR_USART(DRV_ERROR_UNSUPPORTED);
|
|
break;
|
|
|
|
default:
|
|
return ERR_USART(DRV_ERROR_UNSUPPORTED);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
/**
|
|
\brief config usart clock Polarity and Phase.
|
|
\param[in] handle usart handle to operate.
|
|
\param[in] cpol Clock Polarity.\ref usart_cpol_e.
|
|
\param[in] cpha Clock Phase.\ref usart_cpha_e.
|
|
\return error code
|
|
*/
|
|
int32_t hal_usart_config_clock(usart_handle_t handle, usart_cpol_e cpol, usart_cpha_e cpha)
|
|
{
|
|
USART_NULL_PARAM_CHK(handle);
|
|
return ERR_USART(DRV_ERROR_UNSUPPORTED);
|
|
}
|