mini stm32开发板入门教程(20)

发布时间:2021-06-06

mini stm32开发板入门教程

-校验错误多处理器通信--如果地址不匹配,则进入静默模式从静默模式中唤醒(通过空闲总线检测或地址标志检测)两种唤醒接收器的方式

-地址位(MSB)-空闲总线

(二)程序编写

(1)在RCC_Configuration函数中,打开串口时钟

/*EnableUSART1,GPIOA,GPIOxandAFIOclocks*/RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1|RCC_APB2Periph_GPIOx

|RCC_APB2Periph_AFIO,ENABLE);(2)设置串口的RTX,TDXIO口的属性voidGPIO_Configuration(void){

GPIO_InitTypeDefGPIO_InitStructure;

/*ConfigureUSART1Rx(PA.10)asinputfloating*/GPIO_InitStructure.GPIO_Pin=GPIO_Pin_10;

GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IN_FLOATING;GPIO_Init(GPIOA,&GPIO_InitStructure);

/*ConfigureUSART1Tx(PA.09)asalternatefunctionpush-pull*/GPIO_InitStructure.GPIO_Pin=GPIO_Pin_9;

GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF_PP;GPIO_Init(GPIOA,&GPIO_InitStructure);}

(3)移植fputc函数

intfputc(intch,FILE*f){

/*Placeyourimplementationoffputchere*//*e.g.writeacharactertotheUSART*/USART_SendData(USART1,(u8)ch);

/*Loopuntiltheendoftransmission*/

while(USART_GetFlagStatus(USART1,USART_FLAG_TC)==RESET){}returnch;}

(4)主函数中初始化串口设置

RCC_APB2Periph_GPIOA|

mini stm32开发板入门教程(20).doc 将本文的Word文档下载到电脑

精彩图片

热门精选

大家正在看

× 游客快捷下载通道(下载后可以自由复制和排版)

限时特价:7 元/份 原价:20元

支付方式:

开通VIP包月会员 特价:29元/月

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219