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

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

FLAG

  • Features • Compatible with MCS-51® Products • 8K Bytes of In-System Programmable (ISP

    Features • Compatible with MCS-51® Products • 8K Bytes of In-System Programmable (ISP) Flash Memory – Endurance: 1000 Write/Erase Cycles • 4.0V to 5.5V Operating Range • Fully Static Operation: 0 Hz to 33 MHz • Three-level Program Memory Lock • 256 x 8-bit Internal RAM • 32 Programmable I/O Lines • Three 16-bit Timer/Counters • Eight Interrupt Sources • Full Duplex UART Serial Channel • Low-power Idle and Power-down Modes • Interrupt Recovery from Power-down Mode • Watchdog Timer • Dual Data Pointer • Power-off FLAG

    標簽: 8226 Programmable Compatible In-System

    上傳時間: 2015-06-27

    上傳用戶:dianxin61

  • T-Ker測試synchronization_communicationsemaphore部分的tk_cre_sem,tk_del_sem, tk_sig_sem, tk_wai_sem, tk_re

    T-Ker測試synchronization_communication\semaphore部分的tk_cre_sem,tk_del_sem, tk_sig_sem, tk_wai_sem, tk_ref_sem在移植的uT-Engine上運行是否正常。 api的返回值正確與否,在ads上設斷點觀察,同時用Lpc2104上的LED顯示(如果正確,則程序中設定的LED就閃亮)nel中的FLAG小實驗程序

    標簽: synchronization_communicationsema tk_cre_sem tk_del_sem tk_sig_sem

    上傳時間: 2014-01-14

    上傳用戶:ukuk

  • MODE_Switch1Processing multi-interrupt request needs to set the priority of these interrupt requests

    MODE_Switch1Processing multi-interrupt request needs to set the priority of these interrupt requests. The IRQ FLAGs of the 7 interrupt are controlled by the interrupt event occurring. But the IRQ FLAG set doesn t mean the system to execute the interrupt vector. The IRQ FLAGs can be triggered by the events without interrupt enable. Just only any the event occurs and the IRQ will be logic "1".

    標簽: multi-interrupt MODE_Switch Processing interrupt

    上傳時間: 2013-12-04

    上傳用戶:zhichenglu

  • About: hamsterdb is a database engine written in ANSI C. It supports a B+Tree index structure, uses

    About: hamsterdb is a database engine written in ANSI C. It supports a B+Tree index structure, uses memory mapped I/O (if available), supports cursors, and can create in-memory databases. Release focus: Major feature enhancements Changes: This release comes with many changes and new features. It can manage multiple databases in one file. A new FLAG (HAM_LOCK_EXCLUSIVE) places an exclusive lock on the file. hamsterdb was ported to Windows CE, and the Solution file for Visual Studio 2005 now supports builds for x64. Several minor bugs were fixed, performance was improved, and small API changes occurred. Pre-built libraries for Windows (32-bit and 64-bit) are available for download. Author: cruppstahl

    標簽: C. hamsterdb structure database

    上傳時間: 2013-12-11

    上傳用戶:LouieWu

  • lcddrv1.c 為驅動源程序 lcddrv1_user.c為應用程序代碼 功能: 在ioctl中區分所寫的數據是命令

    lcddrv1.c 為驅動源程序 lcddrv1_user.c為應用程序代碼 功能: 在ioctl中區分所寫的數據是命令,還是地址加數據,FLAG=1是只寫命令,FLAG=0時寫地址和數據的組合, 地址號在前面,顯示的字在后面

    標簽: lcddrv ioctl user 驅動

    上傳時間: 2014-12-04

    上傳用戶:xz85592677

  • 本程序是在GIS軟件MapInfo的二次開發語言軟件MapBasic中編寫

    本程序是在GIS軟件MapInfo的二次開發語言軟件MapBasic中編寫,該程序檢查是否有圖形重疊,在執行程序前需要增加一個整數列FLAG

    標簽: MapBasic MapInfo GIS 軟件

    上傳時間: 2014-12-02

    上傳用戶:rishian

  • 單片機c語言編寫的自動控制升降旗系統

    單片機c語言編寫的自動控制升降旗系統,可以實現定時升降旗等-language of automatic control movements FLAG system that can achieve regular movements of FLAGs

    標簽: 單片機c語言 編寫 自動控制

    上傳時間: 2013-11-27

    上傳用戶:lnnn30

  • NAME: u2440mon.c DESC: u2440mon entry point,menu,download HISTORY: Mar.25.2002:purnnamu: S3C24

    NAME: u2440mon.c DESC: u2440mon entry point,menu,download HISTORY: Mar.25.2002:purnnamu: S3C2400X profile.c is ported for S3C2410X. Mar.27.2002:purnnamu: DMA is enabled. Apr.01.2002:purnnamu: isDownloadReady FLAG is added. Apr.10.2002:purnnamu: - Selecting menu is available in the waiting loop. So, isDownloadReady FLAG gets not needed - UART ch.1 can be selected for the console. Aug.20.2002:purnnamu: revision number change 0.2 -> R1.1 Sep.03.2002:purnnamu: To remove the power noise in the USB signal, the unused CLKOUT0,1 is disabled.

    標簽: 2440 mon download purnnamu

    上傳時間: 2016-05-12

    上傳用戶:wff

  • 我所采用的內存管理思想是鏈表管理思想

    我所采用的內存管理思想是鏈表管理思想,內存分配方案是最佳適應方案(best fit)。其主要的數據結構為 struct node { char* p int memosize int FLAG struct node* next } 這是一個鏈表的結點的數據結構,用它來管理內存的分配與回收。P 表示所指的分配的內存的首地址,memosize 表示分配的內存塊的大小,FLAG 為一個標志量,表示內存塊是否被占用。用 1 和 0 來表示被占用和不被占用。next 表示下一個結點的首地址。 內存管理包括一個分配內存的mm_request(unsigned int)函數,一個初始化所要管理的內存的mm_init()函數,一個空閑列表排序函數sort(),一個釋放內存的mm_release(void* )函數和一個判斷內存是否被占用的IsFree(int)函數。

    標簽: 內存管理

    上傳時間: 2016-07-06

    上傳用戶:qunquan

  • ThreeColorFLAGs問題最早由E.W.Dijkstra所提出

    ThreeColorFLAGs問題最早由E.W.Dijkstra所提出,塔所使用的用語為Dutch Nation FLAG(Dijkstra為荷蘭人),而多數的作者則使用Three-Color FLAG來說明。 假設有一條繩子,上面有紅,白,藍三種顏色的旗子,起初繩子上的旗子顏色并沒有順序,您希望將之分類,并排列藍,白,紅的順序,要如何移動次數才會最少,注意您只能在繩子上進行這個動作,而且一次只能調換兩個旗子。

    標簽: ThreeColorFLAGs Dijkstra

    上傳時間: 2016-07-30

    上傳用戶:zhangyi99104144

主站蜘蛛池模板: 平乐县| 武安市| 敦煌市| 淮阳县| 宁波市| 陆河县| 崇文区| 永济市| 华坪县| 米泉市| 库尔勒市| 灵川县| 上犹县| 公安县| 望谟县| 华阴市| 河池市| 乐清市| 平远县| 吴堡县| 临邑县| 巴彦淖尔市| 禹城市| 都江堰市| 威海市| 绵阳市| 台安县| 陆良县| 沅陵县| 新龙县| 昭平县| 通化市| 峨眉山市| 通江县| 临泉县| 洛隆县| 新乡县| 宁城县| 长春市| 宣化县| 霍林郭勒市|