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

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

S<b>IN</b>gle-Chip

  • TLC2543 中文資料

    TLC2543是TI公司的12位串行模數(shù)轉(zhuǎn)換器,使用開關(guān)電容逐次逼近技術(shù)完成A/D轉(zhuǎn)換過程。由于是串行輸入結(jié)構(gòu),能夠節(jié)省51系列單片機(jī)I/O資源;且價(jià)格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應(yīng)用。 TLC2543的特點(diǎn) (1)12位分辯率A/D轉(zhuǎn)換器; (2)在工作溫度范圍內(nèi)10μs轉(zhuǎn)換時(shí)間; (3)11個(gè)模擬輸入通道; (4)3路內(nèi)置自測(cè)試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉(zhuǎn)換結(jié)束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導(dǎo); (10)可編程輸出數(shù)據(jù)長度。 TLC2543的引腳排列及說明    TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說明見表1 TLC2543電路圖和程序欣賞 #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit clock=P1^0; sbit d_in=P1^1; sbit d_out=P1^2; sbit _cs=P1^3; uchar a1,b1,c1,d1; float sum,sum1; double  sum_final1; double  sum_final; uchar duan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; uchar wei[]={0xf7,0xfb,0xfd,0xfe};  void delay(unsigned char b)   //50us {           unsigned char a;           for(;b>0;b--)                     for(a=22;a>0;a--); }  void display(uchar a,uchar b,uchar c,uchar d) {    P0=duan[a]|0x80;    P2=wei[0];    delay(5);    P2=0xff;    P0=duan[b];    P2=wei[1];    delay(5);   P2=0xff;   P0=duan[c];   P2=wei[2];   delay(5);   P2=0xff;   P0=duan[d];   P2=wei[3];   delay(5);   P2=0xff;   } uint read(uchar port) {   uchar  i,al=0,ah=0;   unsigned long ad;   clock=0;   _cs=0;   port<<=4;   for(i=0;i<4;i++)  {    d_in=port&0x80;    clock=1;    clock=0;    port<<=1;  }   d_in=0;   for(i=0;i<8;i++)  {    clock=1;    clock=0;  }   _cs=1;   delay(5);   _cs=0;   for(i=0;i<4;i++)  {    clock=1;    ah<<=1;    if(d_out)ah|=0x01;    clock=0; }   for(i=0;i<8;i++)  {    clock=1;    al<<=1;    if(d_out) al|=0x01;    clock=0;  }   _cs=1;   ad=(uint)ah;   ad<<=8;   ad|=al;   return(ad); }  void main()  {   uchar j;   sum=0;sum1=0;   sum_final=0;   sum_final1=0;    while(1)  {              for(j=0;j<128;j++)          {             sum1+=read(1);             display(a1,b1,c1,d1);           }            sum=sum1/128;            sum1=0;            sum_final1=(sum/4095)*5;            sum_final=sum_final1*1000;            a1=(int)sum_final/1000;            b1=(int)sum_final%1000/100;            c1=(int)sum_final%1000%100/10;            d1=(int)sum_final%10;            display(a1,b1,c1,d1);           }         } 

    標(biāo)簽: 2543 TLC

    上傳時(shí)間: 2013-11-19

    上傳用戶:shen1230

  • 帶通濾波器設(shè)計(jì)計(jì)算

    摘 要:用一種新的思路和方法,先計(jì)算低通、再計(jì)算高通濾波器的有關(guān)參數(shù),然后組合成帶通濾波器.關(guān)鍵詞:濾波器;參數(shù);新思路中圖分類號(hào): TN713. 5  文獻(xiàn)識(shí)別碼:B  文章編號(hào):1008 - 1666 (1999) 04 - 0089 - 03A New Consideration of the Band Filter’s CalculationGuo Wencheng( S hao Yang B usiness and Technology school , S haoyang , Hunan ,422000 )Abstract :This essay deals with a new method of calculating the band filters - first calculatingthe relevant parameters of low - pass filters ,then calculating the ones of high - pass filters.Key words :filter ; parameters ;new considercation八十年代后,信息產(chǎn)業(yè)得到了迅猛發(fā)展. 帶通濾波器在微波通信、廣播電視和精密儀器設(shè)備中得到了廣泛應(yīng)用. 帶通濾波器性能的優(yōu)劣,對(duì)提高接收機(jī)信噪比,防止鄰近信道干擾,提高設(shè)備的技術(shù)指標(biāo),有著十分重要的意義.我在長期的教學(xué)實(shí)踐中,用切比雪夫型方法設(shè)計(jì)、計(jì)算出寬帶濾波器集中參數(shù)元件的數(shù)據(jù). 該濾波器可運(yùn)用在檢測(cè)微波頻率的儀器和其他設(shè)備中. 再將其思路和計(jì)算方法介紹給大家,供參考.

    標(biāo)簽: 帶通濾波器設(shè)計(jì) 計(jì)算

    上傳時(shí)間: 2014-12-28

    上傳用戶:Yukiseop

  • LPC314x系列ARM微控制器用戶手冊(cè)

    The NXP LPC314x combine a 270 MHz ARM926EJ-S CPU core, High-speed USB 2.0OTG, 192 KB SRAM, NAND flash controller, flexible external bus interface, three channel10-bit A/D, and a myriad of serial and parallel interfaces in a single chip targeted atconsumer, industrial, medical, and communication markets. To optimize system powerconsumption, the LPC314x have multiple power domains and a very flexible ClockGeneration Unit (CGU) that provides dynamic clock gating and scaling.

    標(biāo)簽: 314x LPC 314 ARM

    上傳時(shí)間: 2013-10-11

    上傳用戶:yuchunhai1990

  • LPC315x系列ARM微控制器用戶手冊(cè)

    The NXP LPC315x combine an 180 MHz ARM926EJ-S CPU core, High-speed USB 2.0OTG, 192 KB SRAM, NAND flash controller, flexible external bus interface, an integratedaudio codec, Li-ion charger, Real-Time Clock (RTC), and a myriad of serial and parallelinterfaces in a single chip targeted at consumer, industrial, medical, and communicationmarkets. To optimize system power consumption, the LPC315x have multiple powerdomains and a very flexible Clock Generation Unit (CGU) that provides dynamic clockgating and scaling.The LPC315x is implemented as multi-chip module with two side-by-side dies, one fordigital fuctions and one for analog functions, which include a Power Supply Unit (PSU),audio codec, RTC, and Li-ion battery charger.

    標(biāo)簽: 315x LPC 315 ARM

    上傳時(shí)間: 2014-01-17

    上傳用戶:Altman

  • JAVA課程設(shè)計(jì)實(shí)例。多個(gè)大型系統(tǒng)源代碼

    JAVA課程設(shè)計(jì)實(shí)例。多個(gè)大型系統(tǒng)源代碼,如考試系統(tǒng)單機(jī)版、C\S版、B\S版。

    標(biāo)簽: JAVA 設(shè)計(jì)實(shí)例 大型

    上傳時(shí)間: 2014-01-20

    上傳用戶:zuozuo1215

  • RSA算法 :首先, 找出三個(gè)數(shù), p, q, r, 其中 p, q 是兩個(gè)相異的質(zhì)數(shù), r 是與 (p-1)(q-1) 互質(zhì)的數(shù)...... p, q, r 這三個(gè)數(shù)便是 person_key

    RSA算法 :首先, 找出三個(gè)數(shù), p, q, r, 其中 p, q 是兩個(gè)相異的質(zhì)數(shù), r 是與 (p-1)(q-1) 互質(zhì)的數(shù)...... p, q, r 這三個(gè)數(shù)便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 這個(gè) m 一定存在, 因?yàn)?r 與 (p-1)(q-1) 互質(zhì), 用輾轉(zhuǎn)相除法就可以得到了..... 再來, 計(jì)算 n = pq....... m, n 這兩個(gè)數(shù)便是 public_key ,編碼過程是, 若資料為 a, 將其看成是一個(gè)大整數(shù), 假設(shè) a < n.... 如果 a >= n 的話, 就將 a 表成 s 進(jìn)位 (s

    標(biāo)簽: person_key RSA 算法

    上傳時(shí)間: 2013-12-14

    上傳用戶:zhuyibin

  • 《大型數(shù)據(jù)庫技術(shù):Oracle 9i高級(jí)程序設(shè)計(jì)教程》隨書光盤。 本書結(jié)合大量的實(shí)例

    《大型數(shù)據(jù)庫技術(shù):Oracle 9i高級(jí)程序設(shè)計(jì)教程》隨書光盤。 本書結(jié)合大量的實(shí)例,介紹如何利用Oracle來管理和維護(hù)數(shù)據(jù),以及使用JSP、PHP和C#開發(fā)C/S模式和B/S模式網(wǎng)絡(luò)數(shù)據(jù)庫應(yīng)用程序。全書分為管理篇、開發(fā)篇和實(shí)踐篇3個(gè)部分。管理篇和開發(fā)篇Oracle數(shù)據(jù)庫的管理和開發(fā)技術(shù);實(shí)踐篇完整地介紹使用JSP、PHP和C#開發(fā)的基于Oracle數(shù)據(jù)庫項(xiàng)目的實(shí)例。這些實(shí)例既可以作為獨(dú)立的系統(tǒng)運(yùn)行,也可以取其中的一部分作為應(yīng)用軟件的一個(gè)模塊,具有很強(qiáng)的實(shí)用性。本書所附光盤內(nèi)容為本書的所涉及的源代碼。   本書適合Oracle數(shù)據(jù)庫管理員和應(yīng)用程序開發(fā)人員,以及對(duì)數(shù)據(jù)庫技術(shù)感興趣的讀者閱讀。

    標(biāo)簽: Oracle 大型 光盤 數(shù)據(jù)庫技術(shù)

    上傳時(shí)間: 2015-05-06

    上傳用戶:xmsmh

  • 數(shù)字運(yùn)算

    數(shù)字運(yùn)算,判斷一個(gè)數(shù)是否接近素?cái)?shù) A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    標(biāo)簽: 數(shù)字 運(yùn)算

    上傳時(shí)間: 2015-05-21

    上傳用戶:daguda

  • The government of a small but important country has decided that the alphabet needs to be streamline

    The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition

    標(biāo)簽: government streamline important alphabet

    上傳時(shí)間: 2015-06-09

    上傳用戶:weixiao99

  • 一:需求分析 1. 問題描述 魔王總是使用自己的一種非常精練而抽象的語言講話,沒人能聽懂,但他的語言是可逐步解釋成人能聽懂的語言,因?yàn)樗恼Z言是由以下兩種形式的規(guī)則由人的語言逐步抽象上去的: -

    一:需求分析 1. 問題描述 魔王總是使用自己的一種非常精練而抽象的語言講話,沒人能聽懂,但他的語言是可逐步解釋成人能聽懂的語言,因?yàn)樗恼Z言是由以下兩種形式的規(guī)則由人的語言逐步抽象上去的: ----------------------------------------------------------- (1) a---> (B1)(B2)....(Bm) (2)[(op1)(p2)...(pn)]---->[o(pn)][o(p(n-1))].....[o(p1)o] ----------------------------------------------------------- 在這兩種形式中,從左到右均表示解釋.試寫一個(gè)魔王語言的解釋系統(tǒng),把 他的話解釋成人能聽得懂的話. 2. 基本要求: 用下述兩條具體規(guī)則和上述規(guī)則形式(2)實(shí)現(xiàn).設(shè)大寫字母表示魔王語言的詞匯 小寫字母表示人的語言的詞匯 希臘字母表示可以用大寫字母或小寫字母代換的變量.魔王語言可含人的詞匯. (1) B --> tAdA (2) A --> sae 3. 測(cè)試數(shù)據(jù): B(ehnxgz)B 解釋成 tsaedsaeezegexenehetsaedsae若將小寫字母與漢字建立下表所示的對(duì)應(yīng)關(guān)系,則魔王說的話是:"天上一只鵝地上一只鵝鵝追鵝趕鵝下鵝蛋鵝恨鵝天上一只鵝地上一只鵝". | t | d | s | a | e | z | g | x | n | h | | 天 | 地 | 上 | 一只| 鵝 | 追 | 趕 | 下 | 蛋 | 恨 |

    標(biāo)簽: 語言 抽象

    上傳時(shí)間: 2014-12-02

    上傳用戶:jkhjkh1982

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费在线成人av| 国产毛片一区二区| 欧美在线观看一区| 久久精品国产99国产精品澳门| 久久成人精品电影| 欧美伦理91| 国产亚洲精久久久久久| 亚洲国产视频一区二区| 一区二区日韩精品| 老色鬼精品视频在线观看播放| 欧美日韩成人一区二区| 国产有码一区二区| 亚洲一区二区三区四区五区黄| 久久精品一区二区三区四区| 欧美午夜视频网站| 亚洲精品国久久99热| 久久综合中文色婷婷| 国产乱码精品一区二区三区不卡| 91久久国产精品91久久性色| 亚洲欧美怡红院| 欧美午夜电影在线| 亚洲免费播放| 免费久久99精品国产自在现线| 亚洲视频精选| 久久综合国产精品| 欧美新色视频| 亚洲精品一区二区三区不| 久久成人精品视频| 国产精品日本一区二区| 一本大道久久a久久精二百| 老鸭窝91久久精品色噜噜导演| 国产日韩欧美在线播放| 午夜精品影院| 国产精品视频久久久| 亚洲欧美国产va在线影院| 欧美性片在线观看| 亚洲男女自偷自拍图片另类| 91久久精品一区| 欧美理论在线播放| 狠狠狠色丁香婷婷综合久久五月| 日韩一区二区电影网| 欧美激情精品久久久久久免费印度| 国内精品视频一区| 久久久久久网站| 一区二区三区在线观看欧美 | 国产真实乱子伦精品视频| 欧美在线资源| 精品二区视频| 欧美激情精品久久久久久黑人 | 欧美日韩视频一区二区| 国产欧美一区二区色老头| 亚洲免费中文字幕| 国产一区二区三区直播精品电影| 久久蜜臀精品av| 亚洲国产精品免费| 欧美性猛片xxxx免费看久爱| 欧美在线免费观看| 亚洲精品乱码| 国产农村妇女精品一二区| 久久综合成人精品亚洲另类欧美| 亚洲精品午夜| 欧美精品二区三区四区免费看视频| 在线综合+亚洲+欧美中文字幕| 欧美91视频| 在线观看视频免费一区二区三区| 美女诱惑黄网站一区| 亚洲伦理在线免费看| 国产精品毛片大码女人 | 久久一综合视频| 亚洲精品1区| 国产精品萝li| 欧美精品成人在线| 欧美中文字幕视频| 亚洲狼人综合| 国模大胆一区二区三区| 欧美激情偷拍| 亚洲成人自拍视频| 欧美日韩免费观看一区| 午夜在线不卡| 99精品视频一区| 国内揄拍国内精品少妇国语| 欧美日韩免费在线| 久久久久久久久一区二区| 夜色激情一区二区| 亚洲电影欧美电影有声小说| 国产精品一区二区三区久久| 欧美精品久久久久久久久久| 久久久久国色av免费观看性色| 亚洲网站在线看| 亚洲精品一区二区三区蜜桃久| 亚洲欧美日韩综合aⅴ视频| 麻豆91精品| 亚洲男人的天堂在线观看| 亚洲成人在线视频播放| 国产精品亚洲成人| 欧美日韩ab片| 欧美国产免费| 欧美.www| 久久这里有精品视频| 久久精品国产69国产精品亚洲| 一本一本久久a久久精品综合妖精| 亚洲电影成人| 亚洲国产精品成人一区二区| 国产综合久久久久影院| 国产亚洲欧洲一区高清在线观看 | 狠狠色狠色综合曰曰| 国产精品国产一区二区| 欧美日韩国产电影| 欧美日韩精品国产| 欧美日韩亚洲综合一区| 国产精品v欧美精品v日本精品动漫| 欧美日韩一级片在线观看| 欧美亚洲第一区| 国产欧美日韩精品专区| 国产午夜一区二区三区| 国产日韩在线一区| 激情欧美亚洲| 亚洲三级影院| 中文在线不卡| 欧美一级片在线播放| 久久久在线视频| 欧美高清在线观看| 欧美日韩在线一区| 国产在线一区二区三区四区| 在线观看三级视频欧美| 一本色道久久综合精品竹菊| 午夜精品久久久久久久久| 欧美一区久久| 奶水喷射视频一区| 欧美日韩国产欧美日美国产精品| 欧美视频在线观看免费网址| 国产精品中文在线| 亚洲国产欧美另类丝袜| 亚洲综合电影一区二区三区| 久久久久久久999精品视频| 欧美激情中文不卡| 国产欧美在线播放| 最新高清无码专区| 性做久久久久久| 麻豆久久久9性大片| 国产精品地址| 亚洲国产天堂网精品网站| 亚洲免费一区二区| 欧美激情四色| 伊人久久婷婷色综合98网| 亚洲网站在线播放| 麻豆精品视频在线| 国产精品一区二区久久| 日韩亚洲一区二区| 久久中文精品| 国产日韩欧美综合精品| 日韩亚洲欧美一区| 免费精品99久久国产综合精品| 国产美女精品| 在线一区二区三区四区| 欧美 日韩 国产 一区| 国产一区在线看| 午夜精品区一区二区三| 国产精品va在线| 亚洲精品国精品久久99热一| 久久精品国产一区二区三区| 国产精品区一区| 午夜精品视频在线| 国产精品一区二区三区四区 | 国内精品一区二区三区| 在线亚洲一区观看| 欧美激情第8页| 亚洲高清视频的网址| 久久国产免费看| 国产一区二区成人| 欧美综合国产精品久久丁香| 国产人成精品一区二区三| 亚洲欧美美女| 国产乱码精品| 久久都是精品| 一区精品在线| 欧美暴力喷水在线| 亚洲国产精品一区二区第四页av| 久久视频精品在线| 精品9999| 欧美精品一区二区视频| 夜夜嗨av一区二区三区网页| 欧美视频亚洲视频| 亚洲伊人伊色伊影伊综合网| 国产精品麻豆va在线播放| 亚洲在线电影| 国内精品久久久久影院薰衣草| 久久久综合免费视频| 亚洲国产精品电影| 欧美另类视频| 亚洲一区久久久| 国产一区二区三区久久 | 亚洲国产精品一区二区www在线| 久久久久国产成人精品亚洲午夜| 影音先锋另类| 欧美成人综合在线| 亚洲中字黄色| 激情欧美一区二区| 欧美日韩国产欧| 久久成人一区二区|