我有一个16F887A号事先知情同意协定,与序列港口连接。 我想,当它收到0x01和红.时,它会打绿灯。 我发送了C#窗口申请表的特性,事先知情同意本身与CSC方案一起规划。 你们能否告诉我,如果以下的法典不奏效,那一米错了吗?
Edit:通过t 工作,就意味着在这两种情况下推导红色。
C# Code
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);
}
}