stm32f407(cortex-M4)USART串口調(diào)試程序
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB | RCC_APB2Periph_AFIO | RCC_APB2Periph_USART1, ENABLE); //打開復(fù)用時(shí)鐘
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //PA9 作為 US1 的 TX 端,打開復(fù)用,負(fù)責(zé)發(fā)送數(shù)據(jù)
GPIO_Init(GPIOA , &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
因?yàn)镸4沒有復(fù)用時(shí)鐘功能,故復(fù)用功能打開如下:
GPIO_PinAFConfig(GPIOC, GPIO_PinSource6 |
程序下載下去,發(fā)現(xiàn)只能發(fā)送而不能接收數(shù)據(jù)??!百思不得其解,因?yàn)榫W(wǎng)上USART都是這么寫的!調(diào)試了一天無果而終。
直到昨天調(diào)試TIM1出錯(cuò)后深究其因,找到了固件庫(kù)函數(shù)的最底層才發(fā)現(xiàn)問題的所在,也突然想到了當(dāng)初usart的接收功能為什么用不了,也對(duì)M4的復(fù)用功能有了深入的了解。不敢獨(dú)享,先分享出來。
1.m3有復(fù)用功能時(shí)鐘,復(fù)用IO時(shí)必須打開復(fù)用時(shí)鐘RCC_APB2PeriphClockCmd( RCC_APB2Periph_AFIO, ENABLE);而M4就沒有這一項(xiàng),取而代之的是GPIO_PinAFConfig();而且運(yùn)用時(shí)不能通過與元算符“|”來配置多個(gè)IO,這一點(diǎn)查看GPIO_PinAFConfig()函數(shù)定義就可知道。
2.m3只要打開了AFIO復(fù)用時(shí)鐘,就配置好了IO復(fù)用功能,相應(yīng)IO可以設(shè)置為AF_PP、IN_FLOATING、OUT,但是在M4里,GPIO_PinAFConfig()開啟后,相應(yīng)IO必須設(shè)置為“AF”,只有這樣才能真正復(fù)用IO。
USART6串口程序(查詢和中斷)如下:
#include
uint16_t usart6_get_data;
void GPIO_Config(void);
void USART_Config(void);
void USART6_Puts(char * str);
void NVIC_Config(void);
void Delay(uint32_t nCount);
main()
{
GPIO_Config();
USART_Config();
NVIC_Config();
while (1)
}
void GPIO_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOG , ENABLE);//使能GPIOG時(shí)鐘(時(shí)鐘結(jié)構(gòu)參見“stm32圖解.pdf”)
GPIO_StructInit(&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOG, &GPIO_InitStructure);
}
void USART_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
USART_ClockInitTypeDef USART_ClockInitStruct;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART6, ENABLE); //開啟USART6時(shí)鐘
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOC, ENABLE);
GPIO_PinAFConfig(GPIOC, GPIO_PinSource6, GPIO_AF_USART6);//這相當(dāng)于M3的開啟復(fù)用時(shí)鐘?只配置復(fù)用的引腳,
GPIO_PinAFConfig(GPIOC, GPIO_PinSource7, GPIO_AF_USART6);//
GPIO_StructInit(&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_6;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC,&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_7;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC,&GPIO_InitStructure);
USART_StructInit(&USART_InitStructure);
USART_InitStructure.USART_BaudRate =115200;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_Init(USART6, &USART_InitStructure);
USART_ClockStructInit(&USART_ClockInitStruct);
USART_ClockInit(USART6, &USART_ClockInitStruct);
USART_ITConfig(USART6, USART_IT_RXNE, ENABLE);
USART_Cmd(USART6, ENABLE);
}
void NVIC_Config()
{
NVIC_InitTypeDef NVIC_InitStructure;
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
NVIC_InitStructure.NVIC_IRQChannel = USART6_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPrio
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_Init(&NVIC_InitStructure);
}
void USART6_Puts(char * str)
{
}
void Delay(uint32_t nCount)
{
}
中斷服務(wù)函數(shù)如下:
void USART6_IRQHandler(void)
{
}
評(píng)論