UART是很多实验的基础,可以作为其他实验运行的验证。在做LPC1114 UART实验时,发现LPCXpresso的例程只有发送函数,而且是发送字符串的,所以本人完善了一些,添加了一个发送字符串的函数UARTSendByte(),一个接受字符的函数UARTReceiveByte(),一个接受字符串函数UARTReceive()。具体的代码如下:
// 发送字符函数
/*****************************************************************************
** Function name: UARTSendByte
**
** Descriptions: Send a block of data to the UART 0 port based
** on the data Byte
**
** parameters: send data
** Returned value: None
**
*****************************************************************************/
void UARTSendByte(uint8_t dat)
{
while ( !(LPC_UART->LSR & LSR_THRE) )
{
; // 等待数据发送完毕
}
LPC_UART->THR = dat;
}
// 接受字符函数
/*****************************************************************************
** Function name: UARTReceiveByte
**
** Descriptions: Receive a block of data to the UART 0 port based
** on the data Byte
**
** parameters: None
** Returned value: Byte
**
*****************************************************************************/
uint8_t UARTReceiveByte(void)
{
uint8_t rcvData;
while (!(LPC_UART->LSR & LSR_RDR))
{
; // 查询数据是否接收完毕
}
rcvData = LPC_UART->RBR; // 接收数据
return (rcvData);
}
// 接收字符串函数
/*****************************************************************************
** Function name: UARTReceive
**
** Descriptions: Receive a block of data to the UART 0 port based
** on the data Length
**
** parameters: buffer pointer, and data length
** Returned value: Note
**
*****************************************************************************/
void UARTReceive(uint8_t *BufferPtr, uint32_t Length)
{
while (Length--)
{
*BufferPtr++ = UARTReceiveByte(); // 把数据放入缓冲
}
}
// 主函数
int main(void) {
// TODO: insert code here
uint8_t ch = 0;
UARTInit(9600);
LPC_UART->IER = IER_THRE | IER_RLS; // 设置中断使能寄存器
UARTSend((uint8_t *)Buffer, 10);
while (1)
{
ch = UARTReceiveByte(); // 接收字符
if (ch != 0x00)
{
UARTSendByte(ch); // 发送接收数据
}
}
// Enter an infinite loop, just incrementing a counter
volatile static int i = 0 ;
while(1) {
i++ ;
}
return 0 ;
} |