什么是上位機(jī)_上位機(jī)軟件介紹
什么是上位機(jī)
上位機(jī)是一臺(tái)可以發(fā)出特定操控命令的計(jì)算機(jī),通過(guò)操作預(yù)先設(shè)定好的命令,將命令傳遞給下位機(jī),通過(guò)下位機(jī)來(lái)控制設(shè)備完成各項(xiàng)操作(應(yīng)用最多的地方如:工業(yè)、水利、供電部門(mén)、交通等方面)。上位機(jī)都有特定的編程,有專(zhuān)門(mén)的開(kāi)發(fā)系統(tǒng),或以上是已經(jīng)規(guī)定好任務(wù),只能按特定的任務(wù)進(jìn)行操作。簡(jiǎn)單說(shuō)上位機(jī)就是命令的下達(dá)者,而下位機(jī)則是命令的執(zhí)行者。
上位機(jī)軟件介紹
下面介紹一種軟件:物聯(lián)網(wǎng)應(yīng)用中收集感知節(jié)點(diǎn)信息,進(jìn)行顯示,控制的應(yīng)用控制臺(tái)。此軟件主要有兩部分組成,數(shù)據(jù)收發(fā)部分和顯示部分
1、上位機(jī)在系統(tǒng)中的位置:處于網(wǎng)絡(luò)層中,與嵌入式網(wǎng)關(guān)通過(guò)網(wǎng)線相連。實(shí)際應(yīng)用時(shí)是放置在實(shí)驗(yàn)室的老師工作臺(tái)上,供實(shí)驗(yàn)室的老師使用。
2、上位機(jī)的功能:此軟件實(shí)時(shí)監(jiān)視實(shí)驗(yàn)實(shí)中每個(gè)實(shí)驗(yàn)臺(tái)的狀況,包括上電或斷電狀態(tài),實(shí)驗(yàn)臺(tái)是否發(fā)出了警告,是否發(fā)出了求助信號(hào),并對(duì)這些信號(hào)做出應(yīng)答,還控制LED屏的文字顯示。
3、上位機(jī)的設(shè)計(jì)實(shí)現(xiàn): 此軟件主要有兩部分組成,數(shù)據(jù)收發(fā)部分和顯示部分。數(shù)據(jù)收發(fā)指的是和嵌入式網(wǎng)關(guān)的數(shù)據(jù)收發(fā)。兩者是通過(guò)網(wǎng)線連接的,所以應(yīng)用的是TCP/IP 的Socket 套接字編程,嵌入式網(wǎng)關(guān)的設(shè)計(jì)中已經(jīng)提到過(guò),它在和上位機(jī)通信中是作為服務(wù)器的,那么上位機(jī)就是作為連接發(fā)起方。為了能保證網(wǎng)絡(luò)連接的穩(wěn)定性,我們把Socket讀寫(xiě)的程序代碼放在了try{} catch(){} 塊中,一旦網(wǎng)絡(luò)連接不正常,就會(huì)捕獲到該異常,從而關(guān)閉程序。
4、關(guān)鍵代碼如下:
private void ReadFromArm()
{
byte[] buffertocheck = new byte[1];
int bytesize = 0;
do
{
byte[] bufferofread = new byte[1024];
try { bytesize = stream.Read(bufferofread, 0, bufferofread.Length); }
catch (Exception ex) { connection = Indicator.Unconnected; MessageBox.Show(連接中斷,程序?qū)⑼顺觥?; Application.Exit(); read.Abort(); }
//MessageBox.Show(BitConverter.ToString(bufferofread));
byte[] buffertochecktemp = buffertocheck;
buffertocheck = new byte[buffertochecktemp.Length + bytesize];
Array.Copy(buffertochecktemp, 0, buffertocheck, 0, buffertochecktemp.Length);
Array.Copy(bufferofread, 0, buffertocheck, buffertochecktemp.Length, bytesize);
int index_1, index_2;
while (Check7E(buffertocheck, out index_1, out index_2))
{
byte[] buffertodecode = new byte[index_2 + 1 - index_1];
Array.Copy(buffertocheck, index_1, buffertodecode, 0, index_2 + 1 - index_1);
byte[] bufferofdecode = PPP.Decode(buffertodecode);
//MessageBox.Show(BitConverter.ToString(bufferofdecode));
if (bufferofdecode[0] == bufferofdecode.Length CheckSum(bufferofdecode))//保證從ARM來(lái)的幀是正確的
{
byte[] Zuohao = new byte[2];
int subindex = 1, index = bufferofdecode[1]*256+bufferofdecode[2]-1;
string status=null;
switch (bufferofdecode[3])//分別處理從ARM來(lái)的幀
{
case POWER_ON://從ARM來(lái)的上電狀態(tài)
status = 上電;
subindex = 1;
break;
case POWER_OFF://從ARM來(lái)的斷電狀態(tài)
status = 斷電;
subindex = 1;
break;
case ABNORMAL://從ARM來(lái)的異常狀態(tài)
status = 異常;
subindex = 1;
break;
case WARNING://從ARM來(lái)的警告信號(hào)
status = 有;
subindex = 2;
break;
case NEED_HELP://從ARM來(lái)的求救信號(hào)
status = 有;
subindex = 3;
break;
}
if (0 = index index = 49)
{
listView1.Items[index].SubItems[subindex].Text = status;
if (status == 異常 || status == 有)
listView1.Items[index].SubItems[subindex].ForeColor = Color.Red;
else
listView1.Items[index].SubItems[subindex].ForeColor = Color.Black;
}
}
int newlength = buffertocheck.Length - 1 - index_2;
if (newlength == 0)
{
buffertocheck = new byte[1];
}
else
{
buffertochecktemp = buffertocheck;
buffertocheck = new byte[newlength];
Array.Copy(buffertochecktemp, index_2 + 1, buffertocheck, 0, newlength);
}
}
} while (connection == Indicator.Connected);
}
/// summary>
/// 向ARM發(fā)送
/// /summary>
/// param name=Zuohao>座號(hào) 2字節(jié)/param>
/// param name=mingling>命令字 1字節(jié)/param>
public void WriteToArm(byte[] Zuohao, byte mingling)
{
if (connection == Indicator.Connected)//在與ARM保持連接的情況下可寫(xiě)
評(píng)論