预览截图
应用介绍
#include "sys.h"
#include "rs485.h"
#include "delay.h"
#ifdef EN_USART2_RX //如果使能了接收
//接收缓存区
u8 RS485_RX_BUF[64]; //接收缓冲,最大64个字节.
//接收到的数据长度
u8 RS485_RX_CNT=0;
void USART3_IRQHandler(void)
{
u8 res;
if(USART_GetITStatus(USART3, USART_IT_RXNE) != RESET) //接收到数据
{
res =USART_ReceiveData(USART3); //读取接收到的数据
// USART_SendData(USART3,res);
if(RS485_RX_CNT<64)
{
RS485_RX_BUF[RS485_RX_CNT]=res; //记录接收到的值
RS485_RX_CNT++; //接收数据增加1
}
}
}
#endif
//初始化IO 串口3
//pclk1:PCLK1时钟频率(Mhz)
//bound:波特率
void RS485_Init(u32 bound)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
NVIC_InitTypeDef NVIC_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);//使能GPIOA,D时钟
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3,ENABLE);//使能USART3时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2; //PB2端口配置,控制RS485收发,1发送,0接收
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
// GPIO_SetBits(GPIOB,GPIO_Pin_2);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; //PA2
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //复用推挽
GPIO_Init(GPIOB, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;//PA3
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; //浮空输入
GPIO_Init(GPIOB, &GPIO_InitStructure);
RCC_APB1PeriphResetCmd(RCC_APB1Periph_USART3,ENABLE);//复位串口2
RCC_APB1PeriphResetCmd(RCC_APB1Periph_USART3,DISABLE);//停止复位
#ifdef EN_USART2_RX //如果使能了接收
USART_InitStructure.USART_BaudRate = bound;//波特率设置
USART_InitStructure.USART_WordLength = USART_WordLength_8b;//8位数据长度
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(USART3, &USART_InitStructure); ; //初始化串口
NVIC_InitStructure.NVIC_IRQChannel = USART3_IRQn; //使能串口3中断
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 3; //先占优先级2级
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3; //从优先级2级
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //使能外部中断通道
NVIC_Init(&NVIC_InitStructure); //根据NVIC_InitStruct中指定的参数初始化外设NVIC寄存器
USART_ITConfig(USART3, USART_IT_RXNE, ENABLE);//开启中断
USART_Cmd(USART3, ENABLE); //使能串口
#endif
RS485_TX_EN=0; //默认为接收模式
}
//RS485发送len个字节.
//buf:发送区首地址
//len:发送的字节数(为了和本代码的接收匹配,这里建议不要超过64个字节)
void RS485_Send_Data(u8 *buf,u8 len)
{
u8 t;
RS485_TX_EN=1; //设置为发送模式
for(t=0;t<len;t++) //循环发送数据
{
while(USART_GetFlagStatus(USART3, USART_FLAG_TC) == RESET);
USART_SendData(USART3,buf[t]);
}
while(USART_GetFlagStatus(USART3, USART_FLAG_TC) == RESET);
RS485_RX_CNT=0;
RS485_TX_EN=0; //设置为接收模式
}
//RS485查询接收到的数据
//buf:接收缓存首地址
//len:读到的数据长度
void RS485_Receive_Data(u8 *buf,u8 *len)
{
u8 rxlen=RS485_RX_CNT;
u8 i=0;
*len=0; //默认为0
delay_ms(10); //等待10ms,连续超过10ms没有接收到一个数据,则认为接收结束
if(rxlen==RS485_RX_CNT&&rxlen)//接收到了数据,且接收完成了
{
for(i=0;i<rxlen;i++)
{
buf[i]=RS485_RX_BUF[i];
}
*len=RS485_RX_CNT; //记录本次数据长度
RS485_RX_CNT=0; //清零
}
}
©版权声明:本文内容由互联网用户自发贡献,版权归原创作者所有,本站不拥有所有权,也不承担相关法律责任。如果您发现本站中有涉嫌抄袭的内容,欢迎发送邮件至: www_apollocode_net@163.com 进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。
转载请注明出处: apollocode » STM32&rs485串口通信
文件列表(部分)
名称 | 大小 | 修改日期 |
---|---|---|
DOC | 0.00 KB | 2022-02-18 |
Readme.txt | 0.06 KB | 2022-02-44 |
Libraries | 0.00 KB | 2022-02-40 |
CMSIS | 0.00 KB | 2022-07-08 |
core_cm3.c | 16.87 KB | 2010-06-02 |
core_cm3.h | 83.71 KB | 2011-02-36 |
Startup | 0.00 KB | 2022-02-06 |
startup_stm32f10x_cl.s | 15.40 KB | 2011-03-16 |
startup_stm32f10x_hd.s | 15.14 KB | 2011-03-14 |
startup_stm32f10x_hd_vl.s | 15.32 KB | 2011-03-10 |
startup_stm32f10x_ld.s | 12.09 KB | 2011-03-08 |
startup_stm32f10x_ld_vl.s | 13.34 KB | 2011-03-06 |
startup_stm32f10x_md.s | 12.47 KB | 2011-03-02 |
startup_stm32f10x_md_vl.s | 13.74 KB | 2011-03-58 |
startup_stm32f10x_xl.s | 15.58 KB | 2011-03-52 |
stm32f10x.h | 619.08 KB | 2011-03-32 |
system_stm32f10x.c | 36.54 KB | 2022-07-08 |
system_stm32f10x.h | 2.04 KB | 2011-03-22 |
FWLib | 0.00 KB | 2022-02-32 |
inc | 0.00 KB | 2022-02-32 |
misc.h | 8.77 KB | 2011-03-16 |
stm32f10x_adc.h | 21.18 KB | 2011-03-16 |
stm32f10x_bkp.h | 7.38 KB | 2011-03-16 |
stm32f10x_can.h | 26.91 KB | 2011-03-16 |
stm32f10x_cec.h | 6.42 KB | 2011-03-16 |
stm32f10x_crc.h | 2.11 KB | 2011-03-16 |
stm32f10x_dac.h | 14.88 KB | 2011-03-16 |
stm32f10x_dbgmcu.h | 3.73 KB | 2011-03-16 |
stm32f10x_dma.h | 20.27 KB | 2011-03-16 |
stm32f10x_exti.h | 6.66 KB | 2011-03-16 |
stm32f10x_flash.h | 24.85 KB | 2011-03-16 |
stm32f10x_fsmc.h | 26.38 KB | 2011-03-16 |
发表评论 取消回复