void USART2_IRQHandler(void)
{
if(USART_GetITStatus(USART2,USART_IT_RXNE) != RESET)
{
uint8_t data_2=USART_ReceiveData(USART2);
Rx_Buffer[Rx_Counter++]=data_2;
if(Rx_Counter>=Len)
{
Rx_Counter=0;
}
}
}
void UpDate(void)
{
uint8_t *dest[4];
uint16 i,num=0;
uint8_t src[Len];
//判断第一个字符是否正确
for(i=0;i
{
if(Rx_Buffer[0]=='T')
src
=Rx_Buffer;
}
split(src,"\n",dest,&num); //分割字符串src
GetScreen(); //获取文本ID
if(current_screen_id ==1) //文本
{
SetTextValue(1,1,dest[0]); //发送到屏上
// SetTextValue(1,2,dest[1]);
// SetTextValue(1,6,dest[2]);
// SetTextValue(1,7,dest[3]);
}
}
void split(uint8_t *src,const uint8_t *separator,uint8_t **dest,uint16 *num)
{
uint8_t *pNext;
uint16 count = 0;
pNext =strtok(src,separator);
while(pNext!=NULL)
{
*dest++ = pNext;
count++;
pNext =strtok(NULL,separator);
}
*num = count;
}
SetTextValue(1,1,dest[0]); //发送到屏上这个可以正常更新数据,过以后就屏上数据就不动了,要是同时发 SetTextValue(1,1,dest[0]);
SetTextValue(1,2,dest[1]);SetTextValue(1,6,dest[2]);
SetTextValue(1,7,dest[3]);//发送到屏上,数据在屏上不更新,这是为何呢,大神帮忙看下啊???