Các bác ơi cho em hỏi: Em có cái chương trình ccs c sau gởi mã ascii là 255 cho PC qua cổng rs232 (giả lập proteus) cho pc nhưng tại sao pc chỉ nhận được mã của kí tự ? (63) vậy. Cảm ơn các bác dành thời gian. Mã ccsc :
while (true)
{
putc(255);
}
Mã vb.net:
Private Sub SP1_DataReceived(ByVal sender As Object, ByVal e As System.IO.Ports.SerialDataReceivedEventArgs) Handles SP1.DataReceived
buffRev = SP1.ReadExisting()
Me.Invoke(New EventHandler(AddressOf DisplayText))
End Sub
Private Sub DisplayText(ByVal sender As Object, ByVal e As EventArgs)
TextBox2.AppendText(buffRev)
End Sub
while (true)
{
putc(255);
}
Mã vb.net:
Private Sub SP1_DataReceived(ByVal sender As Object, ByVal e As System.IO.Ports.SerialDataReceivedEventArgs) Handles SP1.DataReceived
buffRev = SP1.ReadExisting()
Me.Invoke(New EventHandler(AddressOf DisplayText))
End Sub
Private Sub DisplayText(ByVal sender As Object, ByVal e As EventArgs)
TextBox2.AppendText(buffRev)
End Sub
Comment