亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 1553analyzer3.pc

?? xilinx reference design for 1553B BUS analyer using
?? PC
?? 第 1 頁 / 共 3 頁
字號:

@cid "1553";
@ver "1.0";
@name "ANALYZER";
@dbname "BusAnlzr";
@licon1 "../icons/1553large1.bmp";
@sicon1 "../icons/small1.bmp";

//The 1553 Data Bus Analyzer application consists of three pages: 1.)Opening page, 
//with a switch to start/stop the gathering of 1553 messages by the CPLD program, 
//2.)Filter page, which allows the user to select which kinds of 1553 messages to 
//view, and 3.)Display page, which displays the data and allows the user to scroll 
//through the data.  The Display page has menu selections which allow the user to go 
//back to either of the other two pages or exit the application.

include "Ccontrols.c"

library "IOLib"

Chandle  ho1, ho2, ho4, h1, h2, h3, h4, h5, 
h6, h7, h8, h9, h10, h11, h12, h13, h14, h15, 
h16, h17, h18, h19, h20, h21, h22, h23, h24, h25, 
h26, h27, h28, h29, h30, h31, h32, h33, h34, h35, h36, h37, h38, h39, h40,h41;
Chandle  hdf1, hdf2, hdf3, hdf4, hdf5, 
hdf6, hdf7, hdf8, hdf9, hdf10, hdf11,
 hdf12, hdf13, hdf14, hdf15, hdf16, 
 hdf17, hdf18, hdf19, hdf20, hdf21, 
 hdf22, hdf23, hdf47, hdf48, hdf49, 
 hdf50, hdf51, hdf52, hdf53, hdf54, 
 hdf55, hdf56, hdf57, hdf58, hdf59, 
 hdf60, hdf61, hdf62, hdf63, hdf64, hdf65, hdf66, hdf67;
int f; int mf;
//There are 36 words per 1553 message (record) in SRAM:1 command,1 status,2 timestamp, 32 data
//The words of each 1553 message shall appear in the order specified by
//MIL-STD-1553, preceded by time stamp words. Early messages appear at lower
//SRAM address locations.

//main buffer
//38 items for display:1 rt #, 1 tr flag, 1 wordcount,1 subaddress,1 status, 1 timestamp,
//                     32 data words
int mb[38];//enough to hold one record
//filter,search and buffer
int w,findcount,i,j,sacount,si,mbi,showall,both;
int v=0x29000000; //begin search index into sram
int rt,tr,sa[32],rtkey,trkey,sakeys[32];

//extract RT#,TR, subaddress and wordcount from the command word using these masks
int rtmask=0xf800;
int trmask=0x0400;
int samask=0x03e0;
int wcmask=0x001f;
int up,down;
int last_record_locn;
int ts;

//Opening page
oinitcontrols(){
ho1=Cmenubar();
ho2=Cmenu(5,100,100);
Caddmenu(ho1,ho2);
ho4=Cswitch(51,58,60,60,1,0);
}
oinitcontents(){
Csettopic(ho2,"1553 Bus Analyzer");
Csetcontent(ho4,"START");
}
oinititems(){
Cadditem(ho2,"Quit");
}
odrawcontrols(){
Cdraw(ho4);
}
//Filter page
finitcontrols(){
h1=Cmenubar();
h2=Cmenu(5,50,30);
Caddmenu(h1,h2);
h3=Cradio(1,16,78,14);
//h4=Cradio(1,32,52,14);
h5=Clabel(57,34,22,0,2,0);
h6=Cdropdown(82,34,23,2);
h7=Cswitch(112,32,46,14,1,0);
h8=Clabel(4,49,60,0,2,0);
h9=Ccheckbox(3,62,20);
h10=Ccheckbox(46,62,20);
h11=Ccheckbox(89,62,20);
h12=Ccheckbox(132,62,20);
h13=Ccheckbox(3,74,20);
h14=Ccheckbox(46,74,20);
h15=Ccheckbox(89,74,20);
h16=Ccheckbox(132,74,20);
h17=Ccheckbox(3,86,20);
h18=Ccheckbox(46,86,20);
h19=Ccheckbox(89,86,20);
h20=Ccheckbox(132,86,20);
h21=Ccheckbox(3,98,20);
h22=Ccheckbox(46,98,20);
h23=Ccheckbox(89,98,20);
h24=Ccheckbox(132,98,20);
h25=Ccheckbox(3,110,20);
h26=Ccheckbox(46,110,20);
h27=Ccheckbox(89,110,20);
h28=Ccheckbox(132,110,20);
h29=Ccheckbox(3,122,20);
h30=Ccheckbox(46,122,20);
h31=Ccheckbox(89,122,20);
h32=Ccheckbox(132,122,20);
h33=Ccheckbox(3,134,20);
h34=Ccheckbox(46,134,20);
h35=Ccheckbox(89,134,20);
h36=Ccheckbox(132,134,20);
h37=Ccheckbox(3,146,20);
h38=Ccheckbox(46,146,20);
h39=Ccheckbox(89,146,20);
h40=Ccheckbox(132,146,20);
//new display button
h41=Cbutton(112,49,46,12,1,4);

}
finitcontents(){
Csettopic(h2,"Filter");
Csetcontent(h5,"RT->");
Csetcontent(h7,"Show All");
Csetcontent(h8,"Subaddresses:");
Csetcontent(h9,"0");
Csetcontent(h10,"1");
Csetcontent(h11,"2");
Csetcontent(h12,"3");
Csetcontent(h13,"4");
Csetcontent(h14,"5");
Csetcontent(h15,"6");
Csetcontent(h16,"7");
Csetcontent(h17,"8");
Csetcontent(h18,"9");
Csetcontent(h19,"10");
Csetcontent(h20,"11");
Csetcontent(h21,"12");
Csetcontent(h22,"13");
Csetcontent(h23,"14");
Csetcontent(h24,"15");
Csetcontent(h25,"16");
Csetcontent(h26,"17");
Csetcontent(h27,"18");
Csetcontent(h28,"19");
Csetcontent(h29,"20");
Csetcontent(h30,"21");
Csetcontent(h31,"22");
Csetcontent(h32,"23");
Csetcontent(h33,"24");
Csetcontent(h34,"25");
Csetcontent(h35,"26");
Csetcontent(h36,"27");
Csetcontent(h37,"28");
Csetcontent(h38,"29");
Csetcontent(h39,"30");
Csetcontent(h40,"31");
Csetcontent(h41,"Display");
}
dfinitcontrols(){
hdf1=Cmenubar();
hdf2=Cmenu(5,60,50);
Caddmenu(hdf1,hdf2);
hdf3=Clabel(2,18,44,0,0,0);
hdf4=Clabel(51,18,30,1,0,1);
hdf5=Clabel(86,18,16,0,0,0);
hdf6=Clabel(104,18,12,1,0,1);
hdf7=Clabel(120,18,10,0,0,0);
hdf8=Clabel(131,18,24,1,0,1);
hdf9=Clabel(4,33,12,0,0,0);
hdf10=Clabel(21,33,67,1,0,1);
hdf11=Clabel(2,48,24,1,0,1);
hdf12=Clabel(35,48,24,1,0,1);
hdf13=Clabel(68,48,24,1,0,1);
hdf14=Clabel(101,48,24,1,0,1);
hdf15=Cbutton(138,48,18,12,1,4);
hdf16=Clabel(2,62,24,1,0,1);
hdf17=Clabel(35,62,24,1,0,1);
hdf18=Clabel(68,62,24,1,0,1);
hdf19=Clabel(101,62,24,1,0,1);
hdf20=Clabel(2,76,24,1,0,1);
hdf21=Clabel(35,76,24,1,0,1);
hdf22=Clabel(68,76,24,1,0,1);
hdf23=Clabel(101,76,24,1,0,1);
hdf47=Clabel(2,90,24,1,0,1);
hdf48=Clabel(35,90,24,1,0,1);
hdf49=Clabel(68,90,24,1,0,1);
hdf50=Clabel(101,90,24,1,0,1);
hdf51=Clabel(2,104,24,1,0,1);
hdf52=Clabel(35,104,24,1,0,1);
hdf53=Clabel(68,104,24,1,0,1);
hdf54=Clabel(101,104,24,1,0,1);
hdf55=Clabel(2,118,24,1,0,1);
hdf56=Clabel(35,118,24,1,0,1);
hdf57=Clabel(68,118,24,1,0,1);
hdf58=Clabel(101,118,24,1,0,1);
hdf59=Clabel(2,132,24,1,0,1);
hdf60=Clabel(35,132,24,1,0,1);
hdf61=Clabel(68,132,24,1,0,1);
hdf62=Clabel(101,132,24,1,0,1);
hdf63=Clabel(2,146,24,1,0,1);
hdf64=Clabel(35,146,24,1,0,1);
hdf65=Clabel(68,146,24,1,0,1);
hdf66=Clabel(101,146,24,1,0,1);
hdf67=Cbutton(138,146,18,12,1,4);
}

dfinitcontents(){
string sd;
int r;
Csettopic(hdf2,"Display");
Csetcontent(hdf3,"Command:");
sd=mb[0];
if(mb[1])sd=sd+"T";
else sd=sd+"R";
sd=sd+mb[2];

Csetcontent(hdf4,sd);

Csetcontent(hdf5,"WC:");
sd=mb[3];
Csetcontent(hdf6,sd);

Csetcontent(hdf7,"S:");
sd=hex(mb[4]);
//sd=hex(ts);     //TEMP DISP BIT 0 OF TIME STAMP WORD 2
sd=strright(sd,4);
Csetcontent(hdf8,sd);

Csetcontent(hdf9,"TS:");
//sd=hex(mb[5]);
sd=mb[5];
//sd=strright(sd,4);

Csetcontent(hdf10,sd);
r=6;
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf11,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf12,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf13,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf14,sd);
Csetcontent(hdf15,"^");//<
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf16,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf17,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf18,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf19,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf20,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf21,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf22,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf23,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf47,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf48,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf49,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf50,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf51,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf52,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf53,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf54,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf55,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf56,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf57,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf58,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf59,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf60,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf61,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf62,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf63,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf64,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
r++;
Csetcontent(hdf65,sd);
sd=hex(mb[r]);
sd=strright(sd,4);
Csetcontent(hdf66,sd);
Csetcontent(hdf67,"v");//>
}

finititems(){
//Cadditem(h2,"Display");
Cadditem(h3,"R");
Cadditem(h3,"T");
Cadditem(h3,"Both");
//Cadditem(h4,"Full");
//Cadditem(h4,"Brief");
Cadditem(h6,"0");
Cadditem(h6,"1");
Cadditem(h6,"2");
Cadditem(h6,"3");
Cadditem(h6,"4");
Cadditem(h6,"5");
Cadditem(h6,"6");
Cadditem(h6,"7");
Cadditem(h6,"8");
Cadditem(h6,"9");
Cadditem(h6,"10");
Cadditem(h6,"11");
Cadditem(h6,"12");
Cadditem(h6,"13");
Cadditem(h6,"14");
Cadditem(h6,"15");
Cadditem(h6,"16");
Cadditem(h6,"17");
Cadditem(h6,"18");
Cadditem(h6,"19");
Cadditem(h6,"20");
Cadditem(h6,"21");
Cadditem(h6,"22");
Cadditem(h6,"23");
Cadditem(h6,"24");
Cadditem(h6,"25");
Cadditem(h6,"26");
Cadditem(h6,"27");
Cadditem(h6,"28");
Cadditem(h6,"29");
Cadditem(h6,"30");
Cadditem(h6,"31");
}
dfinititems(){
Cadditem(hdf2,"New Data");
Cadditem(hdf2,"Filter");
Cadditem(hdf2,"Quit");
}
fdrawcontrols(){
Cdraw(h3);
Cdraw(h5);
Cdraw(h6);
Cdraw(h7);
Cdraw(h8);
Cdraw(h9);
Cdraw(h10);
Cdraw(h11);
Cdraw(h12);
Cdraw(h13);
Cdraw(h14);
Cdraw(h15);
Cdraw(h16);
Cdraw(h17);
Cdraw(h18);
Cdraw(h19);
Cdraw(h20);
Cdraw(h21);
Cdraw(h22);
Cdraw(h23);
Cdraw(h24);
Cdraw(h25);
Cdraw(h26);
Cdraw(h27);
Cdraw(h28);
Cdraw(h29);
Cdraw(h30);
Cdraw(h31);
Cdraw(h32);
Cdraw(h33);
Cdraw(h34);
Cdraw(h35);
Cdraw(h36);
Cdraw(h37);
Cdraw(h38);
Cdraw(h39);
Cdraw(h40);
Cdraw(h41);
}
dfdrawcontrols(){
Cdraw(hdf3);
Cdraw(hdf4);
Cdraw(hdf5);
Cdraw(hdf6);
Cdraw(hdf7);
Cdraw(hdf8);
Cdraw(hdf9);
Cdraw(hdf10);
Cdraw(hdf11);
Cdraw(hdf12);
Cdraw(hdf13);
Cdraw(hdf14);
Cdraw(hdf15);
Cdraw(hdf16);
Cdraw(hdf17);
Cdraw(hdf18);
Cdraw(hdf19);
Cdraw(hdf20);
Cdraw(hdf21);
Cdraw(hdf22);
Cdraw(hdf23);
Cdraw(hdf47);
Cdraw(hdf48);
Cdraw(hdf49);
Cdraw(hdf50);
Cdraw(hdf51);
Cdraw(hdf52);
Cdraw(hdf53);
Cdraw(hdf54);
Cdraw(hdf55);
Cdraw(hdf56);
Cdraw(hdf57);
Cdraw(hdf58);
Cdraw(hdf59);
Cdraw(hdf60);
Cdraw(hdf61);
Cdraw(hdf62);
Cdraw(hdf63);
Cdraw(hdf64);
Cdraw(hdf65);
Cdraw(hdf66);
Cdraw(hdf67);
}


//Opening page handlers
on_ho1(){
}
on_ho4(){
if(Cgetstate(ho4))
  {   Csetcontent(ho4,"STOP");IOWrite(0x2907FFFE,1);//coolrunner start!
      f=0;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品1区2区| 婷婷六月综合亚洲| 精品av久久707| 欧美精品一区二区三区在线播放| 日本高清无吗v一区| 色综合欧美在线视频区| 99久久精品国产毛片| 国产成人精品一区二| 国产乱人伦精品一区二区在线观看| 老司机精品视频导航| 国产最新精品免费| av午夜精品一区二区三区| 欧美少妇xxx| 911精品国产一区二区在线| 精品国产一区二区三区四区四 | 欧日韩精品视频| 欧美另类变人与禽xxxxx| 日韩一区二区三区免费看| 亚洲精品在线免费播放| 亚洲欧洲日韩综合一区二区| 亚洲精品老司机| 激情五月播播久久久精品| av亚洲精华国产精华精华| 56国语精品自产拍在线观看| 777欧美精品| 亚洲手机成人高清视频| 麻豆国产精品一区二区三区 | 91.麻豆视频| 亚洲蜜桃精久久久久久久| 国产主播一区二区三区| 在线精品视频免费观看| 国产精品天天摸av网| 国产99久久久精品| 欧美一卡2卡3卡4卡| 亚洲综合色噜噜狠狠| 色哟哟精品一区| 国产欧美一区二区三区沐欲| 看片的网站亚洲| 欧美精品丝袜中出| 亚洲国产精品久久人人爱蜜臀| 成人亚洲一区二区一| 国产日韩成人精品| 久久精品国产第一区二区三区| 欧美亚男人的天堂| 亚洲国产日韩综合久久精品| 色欧美88888久久久久久影院| 亚洲女人****多毛耸耸8| 成人av资源在线| 亚洲精选一二三| 欧美日韩你懂得| 青娱乐精品视频| 精品国产乱码久久久久久久| 美日韩一级片在线观看| 精品国产91乱码一区二区三区| 男女男精品视频网| 久久久久久久久久看片| 中文欧美字幕免费| 色婷婷一区二区三区四区| 成人免费一区二区三区在线观看| 蜜臀av一区二区三区| 日韩一区二区三区电影在线观看| 久久精品久久综合| 国产清纯美女被跳蛋高潮一区二区久久w | 亚洲美女视频在线| 欧美综合色免费| 国产精品一区二区在线看| 国产精品国产三级国产普通话99 | 亚洲女女做受ⅹxx高潮| 欧美一区二区大片| 色婷婷av一区二区| 激情综合色播激情啊| 亚洲狠狠丁香婷婷综合久久久| 91精品国产综合久久婷婷香蕉| 国产精品自在在线| 日本亚洲一区二区| 亚洲精品美国一| 中文字幕中文在线不卡住| 在线不卡的av| 欧美日韩国产综合草草| 91性感美女视频| 处破女av一区二区| 国产精品一色哟哟哟| 另类综合日韩欧美亚洲| 亚洲欧美二区三区| 精品剧情在线观看| 欧美电视剧在线看免费| 制服丝袜中文字幕亚洲| 欧美日韩精品专区| 欧美视频日韩视频| 欧美日韩精品福利| 欧美日韩国产高清一区二区| av成人免费在线观看| 国产·精品毛片| 成人动漫中文字幕| 91视频国产观看| 色呦呦日韩精品| 欧美精品99久久久**| 在线视频欧美精品| 日韩欧美二区三区| 国产精品免费免费| 亚洲狠狠爱一区二区三区| 日av在线不卡| 国内精品免费在线观看| 国产99精品在线观看| 色哟哟欧美精品| 欧美电影免费观看高清完整版| 久久伊99综合婷婷久久伊| 国产欧美精品国产国产专区| 亚洲精品日日夜夜| 久草精品在线观看| 91首页免费视频| 精品国产乱码久久| 一区二区欧美视频| 国产在线精品一区二区夜色| 91片在线免费观看| 日韩美女一区二区三区四区| 国产精品第一页第二页第三页| 亚洲一区免费在线观看| 韩国三级在线一区| 欧美日韩国产首页| 中文字幕免费一区| 日本免费在线视频不卡一不卡二| 国产老妇另类xxxxx| 欧美久久久久久久久久| 一区二区三区在线观看国产| 国产一区二区三区免费播放| 555www色欧美视频| 日韩国产欧美三级| 欧美日韩精品欧美日韩精品| 亚洲色图19p| 成人一区二区三区中文字幕| 337p粉嫩大胆色噜噜噜噜亚洲| 亚洲成av人片| 欧美一二三四区在线| 亚洲大尺度视频在线观看| 日本韩国精品在线| 亚洲一区二区三区视频在线 | 国产精品污网站| 成人一区在线看| 中文字幕一区在线观看| 国产91丝袜在线18| 国产精品色一区二区三区| 成人的网站免费观看| 亚洲欧美另类在线| 欧美人与性动xxxx| 久久爱另类一区二区小说| 久久久99久久| 色婷婷亚洲综合| 免费不卡在线观看| 国产日韩欧美不卡| 91麻豆精品秘密| 日韩福利视频网| 日本一区二区久久| 欧美在线一区二区三区| 精品一区二区免费看| 中文字幕中文字幕在线一区| 欧美色爱综合网| 国产电影一区二区三区| 亚洲午夜国产一区99re久久| 日韩欧美激情四射| 99re免费视频精品全部| 蜜臀久久99精品久久久画质超高清| 亚洲乱码国产乱码精品精的特点 | 一区二区三区四区视频精品免费| 99re这里只有精品视频首页| 日日夜夜精品免费视频| 亚洲精品一二三区| 久久综合九色综合久久久精品综合| 91色|porny| 国产99久久久精品| 国产在线乱码一区二区三区| 人人狠狠综合久久亚洲| 一区二区三区不卡视频在线观看 | 播五月开心婷婷综合| 久久aⅴ国产欧美74aaa| 亚洲成人激情自拍| 亚洲视频一二三| 久久综合国产精品| 精品国产乱码久久久久久免费 | 偷偷要91色婷婷| 亚洲大片在线观看| 无吗不卡中文字幕| 天天影视涩香欲综合网| 亚洲午夜三级在线| 五月天欧美精品| 久久99精品久久久久久| 国产成人亚洲综合a∨婷婷图片| 色婷婷久久久久swag精品| 国产成人自拍高清视频在线免费播放| 日韩精品91亚洲二区在线观看 | 日韩西西人体444www| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 久久国产夜色精品鲁鲁99| 国产精品一区二区无线| 国产a精品视频| 欧美日韩成人一区| 精品国精品国产尤物美女| 欧美国产综合一区二区| 亚洲一区二区三区不卡国产欧美| 午夜精品久久久久久久久|