<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
嵌入式開發中,由於產品的繫結、驗證等邏輯限制比較嚴重,需要自己做一個上位機工具,來實現USB/BT通訊工具,實現如串列埠通訊、OTA升級等功能。
開發之初,比較了下C#和QT的環境,還是C#在window環境下開發更為簡單,qt往往還需要自己解決Windows環境設定問題。
如果你沒有這個選項,說明你沒有安裝.net框架,開啟visual studio install,選擇修改,安裝一下,具體見下圖。
按照下圖,選擇最新的.NET框架,點選建立。
最終參考的頁面如下:
5個button,1個comboBox,2個textBox。
工具箱中搜尋serial port,並拖進來。
雙擊“掃描串列埠”按鈕,出現如下頁面。
copy如下程式碼:
public Form1() { InitializeComponent(); serialPort1.DataReceived += new SerialDataReceivedEventHandler(SerialReceiveCallback); serialPort1.Encoding = Encoding.UTF8; System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls = false; } public void SerialReceiveCallback(object sender, SerialDataReceivedEventArgs e) { try { if (serialPort1.BytesToRead == 0) return; //接收位元組序列直接處理 byte[] bytes = new byte[serialPort1.BytesToRead]; serialPort1.Read(bytes, 0, bytes.Length); //或者再轉成字串進行列印處理 string receive_data = System.Text.Encoding.Default.GetString(bytes); textBox1.AppendText(receive_data + "rn"); } catch { MessageBox.Show("資料接收出現異常"); } }
1、掃描功能
需要參照系統管理模組,如下圖。
using System.IO.Ports; using System.Management;
copy如下程式碼:
private void button3_Click(object sender, EventArgs e)//開啟串列埠按鈕 { try { if (button3.Text == "開啟串列埠") { button3.Text = "關閉串列埠"; serialPort1.Close(); string[] sArray = comboBox1.Text.Split(new string[] { " " }, 2, StringSplitOptions.RemoveEmptyEntries); serialPort1.PortName = sArray[0]; serialPort1.BaudRate = 115200; serialPort1.Parity = Parity.None; serialPort1.StopBits = StopBits.One; serialPort1.DataBits = 8; serialPort1.Open(); textBox1.AppendText("開啟串列埠成功rn"); } else { button3.Text = "開啟串列埠"; textBox1.AppendText("串列埠已關閉rn"); if (serialPort1.IsOpen == false) return; else serialPort1.Close(); } } catch { button3.Text = "開啟串列埠"; MessageBox.Show("開啟串列埠失敗"); } } private void button2_Click(object sender, EventArgs e)//傳送資料 { if (textBox2.Text.Length == 0) { MessageBox.Show("請在文字方塊中輸入資料"); } else { serialPort1.Write(textBox2.Text); } } private void button4_Click(object sender, EventArgs e)//清空接收區按鈕 { textBox1.Clear(); } private void button5_Click(object sender, EventArgs e)//清空傳送區按鈕 { textBox2.Clear(); }
2、傳送資料功能
參考如上程式碼,只需要呼叫介面進行寫入。
最終實現效果如下
比如,我要實現一個OTA功能。
完全可以由SerialReceiveCallback來驅動,不需要任何多執行緒和定時器。
1)在SerialReceiveCallback函數中處理接收的byte[]位元組資料,根據下位機的響應來執行下一步操作,直至OTA結束。
2)做一個OTA功能按鈕,只負責傳送第一條命令,用於啟動OTA互動。
3)OTA檔案可以做一個listbox,實現檔案拖入和選擇功能,去解析和讀取hex或bin檔案資料,組包封包傳送給下位機。
對於如何“解析和讀取hex或bin檔案資料”,可參考我的上一篇文章。
參考程式碼如下:
記得listbox屬性中的“allowDrop”選項為true,否則無法拖入。
private void listBox1_MouseDoubleClick(object sender, MouseEventArgs e) //選擇滑鼠雙擊事件 { OpenFileDialog dialog = new OpenFileDialog(); dialog.Multiselect = false; dialog.Title = "請選擇升級檔案"; dialog.Filter = "hex格式(*.hex)|*.hex"; if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) { string strPath = dialog.FileName; listBox1.Items.Clear(); listBox1.Items.Add(strPath); } } private void listBox1_DragDrop(object sender, DragEventArgs e)//選擇檔案拖入完成事件 { string strPath = ((System.Array)e.Data.GetData(DataFormats.FileDrop)).GetValue(0).ToString(); if (strPath.Contains(".hex")) { listBox1.Items.Clear(); listBox1.Items.Add(strPath); } else { MessageBox.Show("檔案格式錯誤"); } } private void listBox1_DragEnter(object sender, DragEventArgs e)//選擇檔案拖入事件 { if (e.Data.GetDataPresent(DataFormats.FileDrop)) { e.Effect = DragDropEffects.All; } else { e.Effect = DragDropEffects.None; } }
到此這篇關於5分鐘用C#實現串列埠助手的文章就介紹到這了,更多相關C# 串列埠助手內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45