繁体   English   中英

C#串行端口+ CCS C串行端口+ PIC 16F877A

[英]C# Serial Port + CCS C Serial Port + PIC 16F877A

我有一个PIC 16F887A连接到串行端口。 我希望它在收到0x01时亮起绿色指示灯,而从PC收到0x00时亮起红色指示灯。 我从C#Windows窗体应用程序发送字符,PIC本身是使用CCS C编程的。您能告诉我我在做什么错吗,因为下面的代码不起作用?

编辑:通过不起作用,我的意思是在两种情况下它都会点亮红色指示灯。

C#代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.IO.Ports;

namespace deneme
{
    public partial class Form1 : Form
    {
        SerialPort port = new SerialPort("COM2", 9600, Parity.None, 8, StopBits.One);
        public Form1()
        {
            InitializeComponent();
        }

        private void openportbtn_Click(object sender, EventArgs e)
        {
            if (port.IsOpen)
            {
                port.Close();
            }

            if (!port.IsOpen)
            {
                port.Open();
            }
        }

        private void rightbtn_Click(object sender, EventArgs e)
        {
            byte[] right = new byte[1];
            right[0] = 0x01;
            port.Write(right, 0, right.Length);
        }

        private void wrongbtn_Click(object sender, EventArgs e)
        {
            byte[] wrong = new byte[1];
            wrong[0] = 0x00;
            port.Write(wrong, 0, wrong.Length);
        }
    }
}

CCS C代码

#include <16f877A.h>

#fuses XT,NOWDT,NOPROTECT,NOBROWNOUT,NOLVP,NOPUT,NOWRT,NODEBUG,NOCPD

#use delay (clock=4000000)

#use rs232 (baud=9600, xmit=pin_c6, rcv=pin_c7, parity=N, stop=1, bits=8)

char received;
char right = 0x01;

#int_rda
void serial_interrupt()
{
   disable_interrupts(int_rda);
   received = getc();
   if(received == right)
   {
      output_high(pin_c5); //green led
      delay_ms(200);
      output_low(pin_c5);
   }
   else
   {
      output_high(pin_c4); //red led
      delay_ms(200);
      output_low(pin_c4);
   }
}

void main()
{
   setup_psp(PSP_DISABLED);
   setup_timer_1(T1_DISABLED);
   setup_timer_2(T2_DISABLED,0,1);
   setup_adc_ports(NO_ANALOGS);
   setup_adc(ADC_OFF);
   setup_CCP1(CCP_OFF);
   setup_CCP2(CCP_OFF);

   output_low(pin_c4);
   output_low(pin_c5);

   enable_interrupts(GLOBAL);
   while(1)
   {
      enable_interrupts(int_rda);
   }
}

如果在两种情况下均收到0x00,则可能是波特率不匹配,甚至很小。 在检测到起始位之后,PIC可能会看到前7个零,并认为它看到了8,在两种情况下都为0x00。 我会尝试从PIC和PC进行传输,并观察示波器上的线路,以确保它们以相同的速度运行。 您也可以尝试连续发送0xAA以获得眼图(10101010)并比较两个信号。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM