0

我正在尝试将我的 STM32F072RBT6 模块连接到 pc 并通过 USART 发送数据。我对此很陌生,我不明白一些事情。不幸的是,该模块没有可用的示例。我使用usb电缆将stm与pc连接。这是我的代码:

GPIO_InitTypeDef GPIO_InitStruct;
USART_InitTypeDef USART_InitStructure;

void send_char(char c)
{
while (USART_GetFlagStatus(USART2, USART_FLAG_TXE) == RESET);
USART_SendData(USART2, c);
}

void send_string(const char* s) 
{
while (*s)
    send_char(*s++);
}

GPIO_InitTypeDef GPIO_InitStruct;
USART_InitTypeDef USART_InitStructure;
int main(void)
{
RCC_APB2PeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE);
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);

GPIO_StructInit(&GPIO_InitStruct);
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_2;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStruct.GPIO_OType = GPIO_OType_PP;
GPIO_Init(GPIOA, &GPIO_InitStruct);
//GPIO_PinAFConfig(GPIOA, GPIO_PinSource2,GPIO_AF_1);  //tried this too


GPIO_InitStruct.GPIO_Pin = GPIO_Pin_3;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN;
GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL;
//GPIO_PinAFConfig(GPIOA, GPIO_PinSource3,GPIO_AF_1);

我读到需要将 Rx 引脚配置为浮动输入,但没有这样的模式可以设置。我还尝试使用 GPIO_Mode_AF 并评论了 PinAFConfig。

GPIO_Init(GPIOA, &GPIO_InitStruct);
USART_StructInit(&USART_InitStructure);
USART_InitStructure.USART_BaudRate = 9600;              
USART_InitStructure.USART_HardwareFlowControl=USART_HardwareFlowControl_None;   
USART_InitStructure.USART_Mode=USART_Mode_Rx|USART_Mode_Tx;     
USART_InitStructure.USART_Parity=USART_Parity_No;               
USART_InitStructure.USART_StopBits=USART_StopBits_1;            
USART_InitStructure.USART_WordLength=USART_WordLength_8b;       
USART_Init(USART2, &USART_InitStructure);

USART_Cmd(USART2, ENABLE);

while (1) {
    send_string("Hello world!\r\n");
}

}

我正在尝试查看 teraterm 的任何结果。我注意到,当我不小心触摸了引脚 od board 时,终端上出现了一些字符。这是否表明连接有效但我配置了错误?我也尝试用 USART1 和它的引脚来做到这一点,但什么也没发生。你可以吗

4

1 回答 1

0

有例子

比如在STM32CubeF0Projects/STM32F072RB-Nucleo/Examples/UART

虽然他们使用 USART1,所以你必须稍微调整一下。

如果没有例子

那么您可以简单地使用STM32CubeMX生成一个。使用您的 MCU 启动一个项目,单击 USART2 旁边的三角形(左侧),选择 Mode Asynchronous,然后使用 Project / Generate Code,就可以了。

于 2015-12-09T11:23:47.533 回答