最近在学stm32的串口通讯,刚好也接触到单相电模块,然后想单相电模块与32开发板进行数据转送,但总是不成功。该单相电模块的指令解析为:
unsigned int calccrc(unsigned char crcbuf,unsigned int crc)
{
unsigned char i;
unsigned char chk;
crc=crc ^ crcbuf;
for(i=0;i<8;i++)
{
chk=( unsigned char)(crc&1);
crc=crc>>1;
crc=crc&0x7fff;
if (chk==1)
crc=crc^0xa001;
crc=crc&0xffff;
}
return crc;
}
unsigned int chkcrc(unsigned char *buf,unsigned char len)
{
unsigned char hi,lo;
unsigned int i;
unsigned int crc;
crc=0xFFFF;
for(i=0;i<len;i++)
{
crc=calccrc(*buf,crc);
buf++;
}
hi=( unsigned char)(crc%256);
lo=( unsigned char)(crc/256);
crc=(((unsigned int)(hi))<<8)|lo;
return crc;
}
void read_data(void)
{
union crcdata
{
unsigned int word16;
unsigned char byte[2];
}crcnow;
if((Clock.Second%2)==1) //2 秒读一次
{
Tx_Buffer[0]=Read_ID; //抄读模块的 ID 号
Tx_Buffer[1]=0x03;
Tx_Buffer[2]=0x00;
Tx_Buffer[3]=0x48;
Tx_Buffer[4]=0x00;
Tx_Buffer[5]=0x06;
crcnow.word16=chkcrc(Tx_Buffer,6);
Tx_Buffer[6]=crcnow.byte[1]; //CRC 效验低字节在前
Tx_Buffer[7]=crcnow.byte[0];
Send_data(8); //发送 8 个数据,请根据单片机类型自己编程 (这里我们stm32开发板应该怎么配置呢?)
}
}
void Analysis_data(void)
{
unsigned char i;
union crcdata
{
unsigned int word16;
unsigned char byte[2];
}crcnow;
if(Comm[1].Status==2) //接收完成 这里怎么理解?
{
if(RX_Buffer[0]==Read_ID) //确认 ID 正确
{
crcnow.word16=chkcrc(RX_Buffer,Comm[1].nRx-2); //Comm[1].nRx 是接收数据长度 这个数据长度又怎么理解,怎么配置好?
if((crcnow.byte[0]==RX_Buffer[Comm[1].nRx-1])&&(crcnow.byte[1]==RX_Buffer[Comm[1].nRx-2])) //CRC
效验
{
Voltage_data=(((unsigned int)(RX_Buffer[3]))<<8)|RX_Buffer[4]; //Voltage_data 为 unsigned int 型
Current_data=(((unsigned int)(RX_Buffer[5]))<<8)|RX_Buffer[6]; //Current_data 为 unsigned int 型
Power_data=(((unsigned int)(RX_Buffer[7]))<<8)|RX_Buffer[8]; //Power_data 为 unsigned int 型
Energy_data=(((unsigned long)(RX_Buffer[9]))<<24)|(((unsigned long)(RX_Buffer[10]))<<16)|(((unsigned
long)(RX_Buffer[11]))<<8)|RX_Buffer[12]; ////Energy_data 为 unsigned long 型
Pf_data=(((unsigned int)(RX_Buffer[13]))<<8)|RX_Buffer[14]; //Pf_data 为 unsigned int 型
}
}
Comm[1].Status=0; //切换回接收数据状态
}
}
求大神们帮忙解惑,困惑很久了,想不通!!!
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
你需要理清楚整个流程。
你的单相模块数据 需要通过read_data(void)这个函数去读出来,首先你发送的8字节数据要成功给到单相模块。给你几个UART1发送函数。
void USART1_SendNByte(u8 *data, u16 num)//
{
while(num--)
{
USART_SendData(USART1, *data++);
while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
}
}
void USART1_SendString(u8 *str)
{
while(*str != ' ')
{
while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
USART_SendData(USART1, *str);
str++;
}
}
void UART1_SentData(uint8_t * Buf,uint16_t Length)
{
uint16_t i;
for(i=0;i<Length;i++)
{
USART_SendData(USART1, Buf);
while(USART_GetFlagStatus(USART1,USART_FLAG_TXE) == RESET);
} while(USART_GetFlagStatus(USART1,USART_FLAG_TXE) == RESET);
}
则 Send_data(8); 就可以做出相应更改。同时要在main 函数while(1)中 调用 read_data()函数, 发送给单相模块完成后。单相模块会通过串口发送相关电压电流参数到CPU.
此时你再用串口接收中断 ,接收相关数据 。 这个中断接收函数也就是 Analysis_data(void)函数, 不过 函数名字要修改,为void USART1_IRQHandler(void),内容放进去,并做相应修改。
void USART1_IRQHandler(void)
{
uint8_t i;
if(USART_GetITStatus(USART1,USART_IT_RXNE))
{
//相关内容
}
USART_ClearITPendingBit(USART1,USART_IT_RXNE);
}
串口1中断内会得到 单相模块的电压 电压 功率等数据(变量),你再在主函数中的LCD 显示内调用这些变量。
一周热门 更多>