資源簡介
2011電賽E題 簡易數字信號傳輸性能分析儀

代碼片段和文件信息
#include?“delay.h“
/*------------------------------------------------
?uS延時函數,含有輸入參數?unsigned?char?t,無返回值
?unsigned?char?是定義無符號字符變量,其值的范圍是
?0~255?這里使用晶振12M,精確延時請使用匯編大致延時
?長度如下?T=tx2+5?uS?
------------------------------------------------*/
void?DelayUs2x(unsigned?char?t)
{???
?while(--t);
}
/*------------------------------------------------
?mS延時函數,含有輸入參數?unsigned?char?t,無返回值
?unsigned?char?是定義無符號字符變量,其值的范圍是
?0~255?這里使用晶振12M,精確延時請使用匯編
------------------------------------------------*/
void?DelayMs(unsigned?char?t)
{
?????
?while(t--)
?{
?????//大致延時1mS
?????DelayUs2x(245);
?DelayUs2x(245);
?}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????4906??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\aa.flow.rpt
?????文件??????11851??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\aa.map.rpt
?????文件????????681??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\aa.map.summary
?????文件????????904??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\aa.qpf
?????文件???????2182??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\aa.qsf
?????文件????????578??2011-08-31?18:50??E題\E題FPGA數字信號發生部分\aa.qws
?????文件???????1769??2011-09-01?14:20??E題\E題FPGA數字信號發生部分\clk_10M.bsf
?????文件???????1114??2011-09-01?14:20??E題\E題FPGA數字信號發生部分\clk_10M.v
?????文件???????1099??2011-09-01?14:20??E題\E題FPGA數字信號發生部分\clk_10M.v.bak
?????文件?????????84??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\db\aa.cbx.xm
?????文件???????3125??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\db\aa.cmp.rdb
?????文件????????152??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\db\aa.db_info
?????文件????????176??2011-08-31?18:50??E題\E題FPGA數字信號發生部分\db\aa.eco.cdb
?????文件????????311??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\db\aa.hif
?????文件???????2382??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\db\aa.map.qmsg
?????文件????????169??2011-08-31?18:50??E題\E題FPGA數字信號發生部分\db\aa.sld_design_entry.sci
?????文件????????169??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\db\aa.sld_design_entry_dsc.sci
?????文件????????189??2011-08-31?18:49??E題\E題FPGA數字信號發生部分\db\aa.tis_db_list.ddb
?????文件??????20044??2011-09-01?14:21??E題\E題FPGA數字信號發生部分\db\altsyncram_2to3.tdf
?????文件???????8245??2011-09-01?14:21??E題\E題FPGA數字信號發生部分\db\altsyncram_9141.tdf
?????文件??????14619??2011-09-01?14:21??E題\E題FPGA數字信號發生部分\db\altsyncram_aqo3.tdf
?????文件??????10423??2011-09-01?15:41??E題\E題FPGA數字信號發生部分\db\altsyncram_k1p3.tdf
?????文件??????20199??2011-09-01?14:21??E題\E題FPGA數字信號發生部分\db\altsyncram_k4p3.tdf
?????文件??????15713??2011-09-01?14:21??E題\E題FPGA數字信號發生部分\db\altsyncram_qso3.tdf
?????文件???????1593??2011-09-01?14:21??E題\E題FPGA數字信號發生部分\db\cmpr_5cc.tdf
?????文件???????1759??2011-09-01?15:41??E題\E題FPGA數字信號發生部分\db\cmpr_7cc.tdf
?????文件???????1825??2011-09-01?14:21??E題\E題FPGA數字信號發生部分\db\cmpr_8cc.tdf
?????文件???????1590??2011-09-01?14:21??E題\E題FPGA數字信號發生部分\db\cmpr_j4c.tdf
?????文件???????1822??2011-09-01?14:21??E題\E題FPGA數字信號發生部分\db\cmpr_m4c.tdf
?????文件???????3701??2011-09-01?14:21??E題\E題FPGA數字信號發生部分\db\cntr_02j.tdf
............此處省略772個文件信息
評論
共有 條評論