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

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

智能網頁<b>采集器</b>

  • Jollen-Kit! 2006 是非常積極進行中的專案

    Jollen-Kit! 2006 是非常積極進行中的專案,所有紀錄與更新將同步揭示於本網頁。 快速下載 U-Boot 的 binary code:U-Boot binary - 2006/01/03 Linux kernel 2.4.18 for jk2410:uimage.img - 2006/01/06 可開機的 Base root filesystem: urootfs.img -2006/01/07 (without tftp) 可開機的 Base root filesystem: urootfs2.img -2006/03/10 (Busybox 1.10 with tftp) GNU cross toolchain:arm-9tdmi-linux-gnu.tar.gz (armpath by Joe) 安裝方法: # cd / (切換到 / 根目錄) # tar jxf <路徑>/arm-9tdmi-linux-gnu.tar.gz (將檔案解開)   "Hello, World!" 在 ARM9 的範例:hello_arm.tar.gz (使用Makefile) 其它工具與原始碼下載 驅動程式模組

    標簽: Jollen-Kit 2006

    上傳時間: 2015-06-16

    上傳用戶:xz85592677

  • crc任意位生成多項式 任意位運算 自適應算法 循環冗余校驗碼(CRC

    crc任意位生成多項式 任意位運算 自適應算法 循環冗余校驗碼(CRC,Cyclic Redundancy Code)是采用多項式的 編碼方式,這種方法把要發送的數據看成是一個多項式的系數 ,數據為bn-1bn-2…b1b0 (其中為0或1),則其對應的多項式為: bn-1Xn-1+bn-2Xn-2+…+b1X+b0 例如:數據“10010101”可以寫為多項式 X7+X4+X2+1。 循環冗余校驗CRC 循環冗余校驗方法的原理如下: (1) 設要發送的數據對應的多項式為P(x)。 (2) 發送方和接收方約定一個生成多項式G(x),設該生成多項式 的最高次冪為r。 (3) 在數據塊的末尾添加r個0,則其相對應的多項式為M(x)=XrP(x) 。(左移r位) (4) 用M(x)除以G(x),獲得商Q(x)和余式R(x),則 M(x)=Q(x) ×G(x)+R(x)。 (5) 令T(x)=M(x)+R(x),采用模2運算,T(x)所對應的數據是在原數 據塊的末尾加上余式所對應的數據得到的。 (6) 發送T(x)所對應的數據。 (7) 設接收端接收到的數據對應的多項式為T’(x),將T’(x)除以G(x) ,若余式為0,則認為沒有錯誤,否則認為有錯。

    標簽: crc CRC 多項式 位運算

    上傳時間: 2014-11-28

    上傳用戶:宋桃子

  • crc任意位生成多項式 任意位運算 自適應算法 循環冗余校驗碼(CRC

    crc任意位生成多項式 任意位運算 自適應算法 循環冗余校驗碼(CRC,Cyclic Redundancy Code)是采用多項式的 編碼方式,這種方法把要發送的數據看成是一個多項式的系數 ,數據為bn-1bn-2…b1b0 (其中為0或1),則其對應的多項式為: bn-1Xn-1+bn-2Xn-2+…+b1X+b0 例如:數據“10010101”可以寫為多項式 X7+X4+X2+1。 循環冗余校驗CRC 循環冗余校驗方法的原理如下: (1) 設要發送的數據對應的多項式為P(x)。 (2) 發送方和接收方約定一個生成多項式G(x),設該生成多項式 的最高次冪為r。 (3) 在數據塊的末尾添加r個0,則其相對應的多項式為M(x)=XrP(x) 。(左移r位) (4) 用M(x)除以G(x),獲得商Q(x)和余式R(x),則 M(x)=Q(x) ×G(x)+R(x)。 (5) 令T(x)=M(x)+R(x),采用模2運算,T(x)所對應的數據是在原數 據塊的末尾加上余式所對應的數據得到的。 (6) 發送T(x)所對應的數據。 (7) 設接收端接收到的數據對應的多項式為T’(x),將T’(x)除以G(x) ,若余式為0,則認為沒有錯誤,否則認為有錯

    標簽: crc CRC 多項式 位運算

    上傳時間: 2014-01-16

    上傳用戶:hphh

  • 紅外通信程序

    紅外通信程序,在集中器采集器電表和手持終端及主臺通信中有很好的運用

    標簽: 紅外通信 程序

    上傳時間: 2015-11-23

    上傳用戶:啊颯颯大師的

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    標簽: represented integers group items

    上傳時間: 2016-01-17

    上傳用戶:jeffery

  • 用游標的方法實現對稱差的計算

    用游標的方法實現對稱差的計算,即 (A-B)+(B-A)

    標簽: 對稱 計算

    上傳時間: 2016-05-23

    上傳用戶:遠遠ssad

  • 一個盤點代碼

    一個盤點代碼,可以運行在dt900和dt930下,為casio的采集器使用

    標簽: 代碼

    上傳時間: 2013-12-09

    上傳用戶:ZJX5201314

  • web parser的範例程式

    web parser的範例程式, 此python程式parse 衛星電視網頁的一些重要欄位,裡面有介紹HTML Parser的簡單使用方式

    標簽: parser web 程式

    上傳時間: 2016-06-05

    上傳用戶:asddsd

  • 詞法分析器 對輸入一個函數

    詞法分析器 對輸入一個函數,并對其分析main() { int a,b a = 10 b = a + 20 }

    標簽: 分析器 函數 輸入

    上傳時間: 2013-12-20

    上傳用戶:hfmm633

  • 基因算法

    基因算法,用VC++或MATLAB,java等工具設計一程序計算任一個隨機產生的DNA基因表達式的有效長度和值 設隨機產生的基因表達式為: + Q - / b * b a Q b a a b a a b b a a a b

    標簽: 基因 算法

    上傳時間: 2014-01-09

    上傳用戶:aa54

主站蜘蛛池模板: 阜新市| 阿坝| 寿宁县| 永丰县| 桂林市| 两当县| 额尔古纳市| 滕州市| 抚州市| 内丘县| 太谷县| 通辽市| 朝阳区| 山阳县| 宣武区| 洛阳市| 汶川县| 潞西市| 罗田县| 老河口市| 北票市| 遂溪县| 塘沽区| 镇平县| 久治县| 金沙县| 呼和浩特市| 吉木乃县| 天等县| 民勤县| 闽清县| 和顺县| 两当县| 平邑县| 巴塘县| 临安市| 久治县| 闻喜县| 铜山县| 贺州市| 翁牛特旗|