找回密码
 立即注册

QQ登录

只需一步,快速开始

打印 上一主题 下一主题
开启左侧

请教新唐N76E003串口接收识别问题

[复制链接]
跳转到指定楼层
楼主
momodejiqing 发表于 2017-5-10 09:10:33 | 显示全部楼层 回帖奖励 |倒序浏览 |阅读模式
想用N76E003识别电脑的串口指令OPEN、CLOSE,作出LED-P12灯亮灭的响应目前用BSP里面的源码,只收正常收到电脑发过来的一个字节,超过一个字节就乱码了
#include <stdio.h>
#include "N76E003.h"
#include "SFR_Macro.h"
#include "Common.h"
#include "Delay.h"
#include "Function_Define.h"

#define BUFFER_SIZE                16

UINT8  UART_BUFFER[BUFFER_SIZE],temp;
UINT16 u16CNT=0,u16CNT1=0;
bit riflag;

/**
* FUNCTION_PURPOSE: serial interrupt, echo received data.
* FUNCTION_INPUTS: P3.0(RXD) serial input
* FUNCTION_OUTPUTS: P3.1(TXD) serial output
*/
void serial_IT(void) interrupt 4
{
    if (RI)
    {                                       /* if reception occur */
        clr_RI;                             /* clear reception flag for next reception */
        UART_BUFFER[u16CNT] = SBUF;
        u16CNT ++;
                                riflag =1;
    }
    if(TI)
    {
        clr_TI;                             /* if emission occur */
    }
}
/************************************************************************************************************
*    Main function
************************************************************************************************************/
void main (void)
{

   
    P06_Quasi_Mode;                                                       //Set UART GPIO are Quasi Mode
                P07_Quasi_Mode;
    InitialUART0_Timer1(115200);            /* 115200 Baud Rate from timer1*/
        
    SCON = 0xD2;                                                                                                                // Special setting the mode 3
   
    set_ES;                                 //enable UART interrupt
    set_EA;                                 //enable global interrupt
    clr_TB8;
    Send_Data_To_UART0(0x53);                                                                //Send "start" ascii code show reset initial status
          Send_Data_To_UART0(0x74);
          Send_Data_To_UART0(0x61);
          Send_Data_To_UART0(0x72);
          Send_Data_To_UART0(0x74);
        
    while(1)
                {
                        if (riflag)
                        {
                                temp = SBUF;                                                                                                //This part send the receive data from RXD to TXD
                                Send_Data_To_UART0(temp);
                                riflag = 0;
                        }
                }
        
}
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 顶 踩
回复

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies |上传

本版积分规则

新唐MCU