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

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

7寸<b>Usart</b> HMI組態(tài)屏帶GPU字庫串口屏TFT液晶顯示模塊800480 STM32程序

  • MCS-51定點運算子程序庫

    MCS-51定點運算子程序庫,定點運算子程序庫文件名為DQ51.ASM,為便于使用,先將有關約定說明如下: 1.多字節定點操作數:用[R0]或[R1]來表示存放在由R0或R1指示的連續單元中的數 據。地址小的單元存放數據的高字節。例如:[R0]=123456H,若(R0)=30H,則(30H)=12H, (31H)=34H,(32H)=56H。 2.運算精度:單次定點運算精度為結果最低位的當量值。 3.工作區:數據工作區固定在PSW、A、B、R2~R7,用戶只要不在工作區中存放無關的或非消耗性的信息,程序就具有較好的透明性。 (1) 標號: BCDA 功能:多字節BCD碼加法 入口條件:字節數在R7中,被加數在[R0]中,加數在[R1]中。 出口信息:和在[R0]中,最高位進位在CY中。 影響資源:PSW、A、R2 堆棧需求: 2字節

    標簽: 定點運算 程序庫

    上傳時間: 2016-01-01

    上傳用戶:dapangxie

  • t112 參考文件

    t112 參考文件,使用KEIL C51編譯器。AU 7寸模擬屏幕資料。

    標簽: t112

    上傳時間: 2016-01-02

    上傳用戶:hakim

  • 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

  • The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)

    The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).

    標簽: converts Toolbox complex logical

    上傳時間: 2016-02-12

    上傳用戶:a673761058

  • 主要介紹了如何使用E8仿真器在以Renesas芯片為MCU的開發板上進行仿真調試。 第1 章 概要 第2 章 E8 仿真器功能 第3 章 使用前的準備 第4 章 調試的準備 第5 章 調試

    主要介紹了如何使用E8仿真器在以Renesas芯片為MCU的開發板上進行仿真調試。 第1 章 概要 第2 章 E8 仿真器功能 第3 章 使用前的準備 第4 章 調試的準備 第5 章 調試 第6 章 教程示例 附錄A E8 仿真器的構成 附錄B 窗口功能一覽 附錄C 命令行功能 附錄D High-performance Embedded Workshop 的注意事項 附錄E 有關硬件診斷程序 E.1 為了執行診斷程序的系統設置 E.2 診斷程序的執行 E.3 錯誤發生時的處理

    標簽: Renesas MCU 仿真器 調試

    上傳時間: 2013-12-26

    上傳用戶:chens000

  • MSP430F149串口行實驗程序 //使用ADC12采集實驗,將采集到數據送向PC.(序列單次采集,采用定時器A作為時鐘源) //P3.4為發送,P3.5為接收 晶體使32768HZ/8MHZ.

    MSP430F149串口行實驗程序 //使用ADC12采集實驗,將采集到數據送向PC.(序列單次采集,采用定時器A作為時鐘源) //P3.4為發送,P3.5為接收 晶體使32768HZ/8MHZ. 串行波特率B/S //使用SMCLK作為波特率發器時,不能使用LPM2,LPM3!

    標簽: 32768 430F F149 采集

    上傳時間: 2013-12-18

    上傳用戶:D&L37

  • 成績顯示三個部份abc #include<stdio.h> #include<stdlib.h> int main(void) { float gread

    成績顯示三個部份abc #include<stdio.h> #include<stdlib.h> int main(void) { float gread printf("請輸入分數\n") scanf("%f",&gread) if(gread>=80&&gread<=100) printf("成績為A\n") else if(gread>=60&&gread<=79) { printf("成績為B\n") } else if(gread>=0&&gread<60) { printf("成績為C\n") } else { printf("分數輸入錯誤\n") } system("pause") return 0 }

    標簽: include stdlib float gread

    上傳時間: 2014-01-15

    上傳用戶:waizhang

  • ZLG7290鍵盤驅動程序。按下按鍵

    ZLG7290鍵盤驅動程序。按下按鍵,在串口調試助手中輸入b,在窗口中立即出現按鍵所對應的數值。比官方程序多一段芯片初始化代碼。

    標簽: 7290 ZLG 鍵盤驅動 程序

    上傳時間: 2014-01-15

    上傳用戶:busterman

  • 板上資源: LM2576電源

    板上資源: LM2576電源,MAX3232電平轉換芯片,11.0592M有源晶振,ATMEGA128L,FM32256(鐵電),滑槽式SIM卡座,40PZIF接插件,通信 模塊支持CM320,TC35i,MC35i,MC39i,GTM900A/B等模塊。 使用方法:1、不焊接M128和FM32256以及晶振,將橋接電阻R29,R30,R31焊上,就是標準串口無線MODEM,根據模塊不同可以支持GPRS和CDMA, 當然也可以作為GSM貓或者短信貓來使用。 2、焊上M128芯片,FM32256可以根據實際需要決定是否使用,除了支持上面的應用模式外,還能做成不需要上位機的透明傳輸模塊, 實現單片機或者一些非計算機設備無線上網傳輸數據的要求。

    標簽: 2576 LM 資源 電源

    上傳時間: 2017-01-19

    上傳用戶:ukuk

  • 漢諾塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation

    漢諾塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation eg. if n = 2 A→B A→C B→C if n = 3 A→C A→B C→B A→C B→A B→C A→C

    標簽: the animation Simulate movement

    上傳時間: 2017-02-11

    上傳用戶:waizhang

主站蜘蛛池模板: 峨眉山市| 攀枝花市| 彭阳县| 天峻县| 扶绥县| 广河县| 灵山县| 枞阳县| 鄯善县| 怀来县| 遂平县| 航空| 乌兰察布市| 昌黎县| 亚东县| 玉溪市| 和平县| 开远市| 建宁县| 晋州市| 湟源县| 固阳县| 菏泽市| 太保市| 洛阳市| 沁水县| 大石桥市| 永定县| 察哈| 北宁市| 周口市| 新宁县| 抚顺县| 儋州市| 县级市| 普定县| 准格尔旗| 年辖:市辖区| 南通市| 平定县| 格尔木市|