stm32f103c8t6串口打印
时间: 2023-08-31 17:09:37 浏览: 94
要在STM32F103C8T6上使用串口打印,需要进行以下步骤:
1. 打开串口时钟:在RCC寄存器中设置USARTxEN位(x为串口号)为1,打开串口时钟。
2. 配置GPIO引脚:将TX和RX引脚设置为复用模式,并设置为推挽输出模式。
3. 配置USART寄存器:设置波特率、数据位、停止位、校验位等参数。
4. 初始化USART:在USART_CR1寄存器中设置UE位为1,使能USART。
5. 发送数据:使用USART_DR寄存器发送数据。
下面是一个使用USART1进行串口打印的示例代码:
```c
#include "stm32f10x.h"
void USART1_Init(void)
{
// 打开USART1时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
// 配置TX引脚
GPIO_InitTypeDef GPIO_InitStruct;
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStruct);
// 配置RX引脚
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStruct);
// 配置USART1
USART_InitTypeDef USART_InitStruct;
USART_InitStruct.USART_BaudRate = 9600;
USART_InitStruct.USART_WordLength = USART_WordLength_8b;
USART_InitStruct.USART_StopBits = USART_StopBits_1;
USART_InitStruct.USART_Parity = USART_Parity_No;
USART_InitStruct.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_InitStruct.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_Init(USART1, &USART_InitStruct);
// 使能USART1
USART_Cmd(USART1, ENABLE);
}
void USART1_SendChar(char ch)
{
while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
USART_SendData(USART1, ch);
}
void USART1_SendString(char* str)
{
while (*str)
{
USART1_SendChar(*str++);
}
}
int main(void)
{
USART1_Init();
USART1_SendString("Hello, world!\r\n");
while (1);
}
```
阅读全文