音影先锋亚洲天堂网|电影世界尽头的爱完整版播放|国产 熟女 91|高清无码免费观看欧美日韩|韩国一区二区三区黄色录像|美女亚洲加勒比在线|亚洲综合网 开心五月|7x成人在线入口|成人网站免费日韩毛片区|国产黄片?一级?二级?三级

當(dāng)前位置:維庫(kù)電子市場(chǎng)網(wǎng)>IC>case 更新時(shí)間:2026-03-01 07:26:13

case供應(yīng)商優(yōu)質(zhì)現(xiàn)貨

更多>
  • 供應(yīng)商
  • 產(chǎn)品型號(hào)
  • 服務(wù)標(biāo)識(shí)
  • 數(shù)量
  • 廠商
  • 封裝/批號(hào)
  • 說明
  • 詢價(jià)

casePDF下載地址

case價(jià)格行情

更多>

歷史最低報(bào)價(jià):¥0.0000 歷史最高報(bào)價(jià):¥0.0000 歷史平均報(bào)價(jià):¥0.0000

case中文資料

  • 嵌入式系統(tǒng)多語(yǔ)言文本解決方案

    以得到該文本,成功返回有效指針 guistring * gettextresource(long lindex, long llanguage) { guistring * ptxt; apptext_fileheader fh; apptext_mapping map; string strfile; word * pbuf; int fd, ioff; //確定要讀取的配置文件 switch (llanguage) { case txt_lang_english: strfile = txt_file_english; break; case txt_lang_chinasim: strfile = txt_file_chinasim; break; case txt_lang_chinatra: strfile = txt_file_chinatra; break; case txt_lang_korean: strfile = txt_file_korea

  • 利用VB實(shí)現(xiàn)PC機(jī)與多單片機(jī)通訊

    命令和接收數(shù)據(jù)過程,在通訊程序中設(shè)置兩個(gè)timer控件分別控制發(fā)送單片機(jī)命令和接收單片機(jī)數(shù)據(jù)。為了實(shí)現(xiàn)一臺(tái)pc機(jī)和多單片機(jī)之間的通訊,可在一個(gè)timer控件的過程中,在發(fā)送命令之前設(shè)定命令參數(shù)和要接收數(shù)據(jù)的單片機(jī)號(hào),然后發(fā)送單片機(jī)命令;在另一個(gè)timer控件的過程中,根據(jù)發(fā)送前設(shè)定的單片機(jī)號(hào),接收不同單片機(jī)的數(shù)據(jù)。 timer控件控制程序如下: '發(fā)送命令主控程序 privata sub timersend_timer() timersend.enabled=false select case command case 1] call發(fā)送單片機(jī)命令過程(任務(wù)1) timerreceive.enabled=false'啟動(dòng)自動(dòng)接收 case2 call發(fā)送單片機(jī)命令過程(任務(wù)2) mscomm1.rthreshold=0'關(guān)閉自動(dòng)接收 timerreceive.interval=500 timerreceive.enabled=true'啟動(dòng)定時(shí)器接收機(jī)號(hào)=1 case 3 call發(fā)送單片機(jī)命令過程(任務(wù)3) mscomm1.rthreshold=0'關(guān)閉自動(dòng)接

  • Linux USB gadget設(shè)備驅(qū)動(dòng)解析(4)--編寫一個(gè)gadget驅(qū)動(dòng)

    ep, req); req = null; } } return req; } static void source_sink_complete(struct usb_ep *ep, struct usb_request *req)//請(qǐng)求完成函數(shù) { struct zero_dev *dev = ep->driver_data; int status = req->status; switch (status) { case 0: /* normal completion */ if (ep == dev->out_ep) { memcpy(dev->data, req->buf, req-> actual);//返回?cái)?shù)據(jù)拷貝到req->buf中, //dev->data

  • 循線算法原理與實(shí)踐在機(jī)器人上的應(yīng)用

    false return templinestate; } 2 數(shù)據(jù)的簡(jiǎn)單加工——第一個(gè)循線程序 到目前為止,我們已經(jīng)把a(bǔ)d的值的數(shù)組轉(zhuǎn)變?yōu)榱艘粋€(gè)表示白線位置的二進(jìn)制位的數(shù)組——我們不妨直接把他用一個(gè)字節(jié)表示哈。那么,這個(gè)字節(jié)的狀態(tài)就表示了當(dāng)前白線的位置信息。再假設(shè),我們已經(jīng)寫好了幾個(gè)函數(shù)用來(lái)分別控制小車的左右運(yùn)動(dòng)。那么我們就可以通過以下的簡(jiǎn)單方式來(lái)實(shí)現(xiàn)循線了。 //用字節(jié)的高三位表示三個(gè)管子檢測(cè)到的白線信息。 switch (lineinforbyte) { case 0b11100000: //全部在白線上 motor_left_gofront(fullspeed); motor_right_gofront(fullspeed); break; case 0b01100000: //明顯車子向左偏了哈 motor_left_gofront(fullspeed); motor_right_gofront(normalspeed); break; case 0b00100000: motor_

  • 簡(jiǎn)單的串口測(cè)試程序

    t fd,int databits,int stopbits,int parity) { struct termios options; if ( tcgetattr( fd,&options) != 0) { perror("setupserial 1"); return(false); } options.c_cflag &= ~csize; switch (databits) /*設(shè)置數(shù)據(jù)位數(shù)*/ { case 7: options.c_cflag |= cs7; break; case 8: options.c_cflag |= cs8; break; default: fprintf(stderr,"unsupported data size\n"); return(false); } switch (parity) { case 'n': case 'n': options.c_cflag &= ~par

  • 連接器(Netlink Connector)及其應(yīng)用

    意義與發(fā)送時(shí)不一樣,iov 用于指定消息的存放位置以及最大可利用的緩存大小,msg.msgname 則表示該調(diào)用希望接收的消息的目的地址,msg.msg_iovlen 則指定該調(diào)用應(yīng)當(dāng)返回的消息數(shù)。 cnmsg = (struct cn_msg *)nlmsg_data(nlhdr); procevent = (struct proc_event *)cnmsg->data; switch (procevent->what) { case proc_event_none: printf("process event: acknowledge for turning on process event listeningnnn"); break; case proc_event_fork: printf("process event: forkn"); printf("parent tid:%d, pid:%dnchild tid:%d

  • FlashCom 連接器

    ============; private function dostatus(ncinfo:object):void{ this.target.onstatus(this.index,ncinfo); } //=========================================; private function onstatus(ncindex:number,ncinfo:object):void{ switch(ncinfo.code){ case "netconnection.connect.success": this.removealltimeout(ncindex); this.__connection = this["temp_nc_"+ncindex]; this.__connected = true; this.dispatchevent({type:"success"}); break; case "netconnection.connect.failed":

  • USB接口的高速數(shù)據(jù)采集卡的設(shè)計(jì)與實(shí)現(xiàn)

    ed_int、input_endpoint0_int、output_endpoint0_int這三個(gè)中斷主要用于與主機(jī)建立連接、進(jìn)行控制傳輸或中斷傳輸;input_endpoint1_int、output_endpoint1_int這兩個(gè)中斷主要在批量傳輸時(shí)使用。在固件中分別執(zhí)行不同的中斷程序來(lái)實(shí)現(xiàn)usb的數(shù)據(jù)傳輸。 void ex0_int(void) interrupt 0 //外部中斷0 { ea=disable; //關(guān)中斷 switch (bbecint)(//確定中斷id case vecint_output_endpoint0: bvecfint=0x00; ep0qutputinterrupthandler(); break; case vecint_input_endpoint0: bbecint=0x00; ep0inputinterrupthandler(); break; case vecint_output_endpoint1: bvecint=0x00; ep 1 outputinterrupthandler(); break; c

  • 針對(duì)嵌入式SoC應(yīng)用C編程優(yōu)化及編譯器原理

    不用函數(shù)嵌入。在源程序中為了支持某些處理器架構(gòu)進(jìn)行的手工的循環(huán)體展開會(huì)降低程序的可移植性,因?yàn)檫@阻止了編譯器自動(dòng)為其他的處理器架構(gòu)進(jìn)行正確的循環(huán)體展開和函數(shù)嵌入。 14. 避免編寫參數(shù)數(shù)量可變的函數(shù) 如果一定要這么做,使用ansi標(biāo)準(zhǔn)方法:stdarg.h.。使用數(shù)據(jù)表替代if-then-else或者switch分支處理。比如考慮下面代碼: typedef enum { blue, green, red, ncolors } color; 替代 switch (c) { case case0: x = 5; break; case case1: x = 10; break; case case2: x = 1; break; } 使用 static int mapping[ncolors] = { 5, 10, 1 }; ... x = mapping[c]; 15. 依靠libc函數(shù)庫(kù)(比如:strcpy、strlen、strcmp、bcopy、bzero、memset和memcpy)。這些函數(shù)是經(jīng)過精心優(yōu)化的。

  • MAXQ3120電表參考設(shè)計(jì)的定制功能

    搜索算法找出寄存器地址。因此,表格保持排序狀態(tài)是非常重要的。如果寄存器表變得無(wú)序,結(jié)果就無(wú)法預(yù)料了。 一旦表格被更新,新的寄存器可以通過通信通道進(jìn)行讀寫。電表到底如何處理該信息,是下一部分的主要內(nèi)容。 具有額外功能的讀寫寄存器還有一種應(yīng)用情況,即你想讓一個(gè)寫事件觸發(fā)額外的功能。為了達(dá)到這種效果,必須讓寄存器管理器向額外任務(wù)發(fā)送一個(gè)消息,或者更新執(zhí)行額外功能所涉及的ram內(nèi)容。作為樣例說明,可在寄存器管理器中搜索c030,你會(huì)找到下面這段代碼: switch(register.word){case 0xc030: // meter constant, realaction_value = 0;for(i=4; i>1; i--){action_value *= 100;action_value += (g_commbuffer.message[i] & 0xf) +(g_commbuffer.message[i] >> 4) * 10;}set_e_pulse(action_value); // this will set e_pulsebreak; 這段代碼

  • 數(shù)字電位器X9241與PIC單片機(jī)的接口及程序設(shè)計(jì)

    c72,晶振為4m):status equ 03h ;pic16c72內(nèi)部特殊c equ 0 ;功能寄存器及標(biāo)志位portc equ 07htrisc equ 87hcommand equ 24hid equ 25h ; 0 0 0 0 p1 p0 r1 r0 addr_byte equ 26h; 0 1 0 1 a3 a2 a1 a0data_byte equ 27h ;cm dw d5 d4 d3 d2 d1 d0pulses equ 28h ;dir x d5 d4 d3 d2 d1 d0case equ 29hcount equ 2bhtempp equ 2chclock macro ;時(shí)鐘nop ;let sda set-upbsf portc,6 ;scl=1nop nopnopbcf status,c ;0送cbtfsc portc,7 ;sda=0?bsf status,c ;no,1送cbcf portc,6 ;scl=0endmsend_bit macrobcf portc, 7 ;0送sdabtfsc tempp, 7 ;tempp.7=0?bsf portc, 7 ;n

  • 采用VHDL硬件語(yǔ)言描述自動(dòng)售貨機(jī)的邏輯控制電路

    輸入邏輯變量,用兩位的矢量state_inputs表示。state_inputs(0)表示投入1元硬幣,state_inputs(1)表示投入5角硬幣。輸入信號(hào)為1表示投入硬幣,輸入信號(hào)為0表示未投入硬幣。 3)輸出信號(hào):給出礦泉水和找零為兩個(gè)輸出變量,用兩位的矢量comb_outputs表示。comb_outputs(0)表示輸出貨物,comb_outputs(1)表示找5角零錢。輸出信號(hào)為1表示輸出貨物或找零,輸出信號(hào)為0表示不輸出貨物或不找零。 根據(jù)圖1所示的狀態(tài)轉(zhuǎn)換圖,用vhdl中的case_when結(jié)構(gòu)和if_then_else語(yǔ)句實(shí)現(xiàn)控制功能,源程序如下: library ieee; --庫(kù)和程序包的使用說明 use ieee.std_logic_1164.all; entity sellmachine is --實(shí)體定義 port(clk,reset: in std_logic; state_inputs:in std_logic_vector(0 to 1); comb_outp

  • 變壓器供電的簡(jiǎn)單電路介紹

    變壓器原理: 變壓器的工作原理 變壓器利用電磁感應(yīng)原理,從一個(gè)電路向另一個(gè)電路傳遞電能或傳輸信號(hào)的一種電器,輸送的電能的多少由用電器的功率決定。 元件bom表: c1 0.39uf 250v capacitor c2 220uf 25v electrolytic capacitor d1 1n4741 11v zener diode (see notes) br1 1 amp 200v bridge rectifier misc line cord, board, wire, case 來(lái)源:朦煙

  • 用LED制作的萬(wàn)年歷

    mk=0 then do;call time(100); /*mod key process*/ time1=30; if mk=0 then do; k1=k1-1; do while k1=0ffh; k1=7; end; end; end; if sk=0 then do;call time(100); /*set key process*/ time1=30; if sk=0 then do; tem=tem+1; tem=dec(tem); do case k1; do while tem=7;/*week*/ tem=0; end; do while tem=60h;/*scond*/ tem=0; end; do while tem=60h;/*minute*/ tem=0; end; do while tem=24h;/*hour*/ tem=0; end; do while tem=32h;/*date*/ tem=1; end; do while tem=13h;/*month*/ tem=1; en

  • 模塊化的防盜系統(tǒng)

    n/o switches, leave out r8, c8 and q2; and fit a link between led 3 and c7. the 24 hour pa/tamper protection is provided by the scr/thyristor. if any of the switches in the n/c loop is opened, r11 will trigger the scr and the bell will ring. in this case the bell has no time limit. once the loop is closed again, the scr may be reset by pressing sw2 and temporarily interrupting the current flow. the basic circuit will be satisfactory in many situations. however, it's much easier to find a fault when

  • [求助]關(guān)于8路時(shí)鐘序列的存儲(chǔ)與示波器顯示。。(附程序)

    _5620=1; clk_5620=0; acc<<=1 ;data_5620=cy; clk_5620=1; clk_5620=0; acc<<=1 ;data_5620=cy; clk_5620=1; clk_5620=0; acc<<=1 ;data_5620=cy; clk_5620=1; clk_5620=0; load_5620=0; } 其中一路通道 for(i=50;i>0;i--){send_c(i);switch(i) //通道1 {case 1 :send_b(u1[49]);break; case 2 :send_b(u1[38]);break; case 3 :send_b(u1[47]);break; case 4 :send_b(u1[36]);break; case 5 :send_b(u1[45]);break; case 6 :send_b(u1[34]);break; case 7 :send_b(u1[43]);break; case 8 :send_b(u1[32]);break; case 9 :send_b

  • HPL語(yǔ)言DoCase語(yǔ)句塊,實(shí)戰(zhàn)程序

    hpl語(yǔ)言docase語(yǔ)句塊,實(shí)戰(zhàn)程序;-------不帶小數(shù)點(diǎn)的共陰極數(shù)碼表-----;入口條件: w(0x00~0x0f);出口條件: w(displaychar_0..displaychar_f)getledchar docase(temp);取顯示數(shù)據(jù) initcase; bytevar(temph,temp); andbyteval(temp,0x1f); case 0; byteval(temp,displaychar_0); case 1; byteval(temp,displaychar_1); case 2; byteval(temp,displaychar_2); case 3; byteval(temp,displaychar_3); case 4; byteval(temp,displaychar_4); case

  • 請(qǐng)問數(shù)碼管顯示閃爍問題

    to jcsasm :把a(bǔ)d去掉顯示沒有問題的,但是問題是我要顯示的數(shù)據(jù)就是從ad采集以后處理顯示出來(lái)的。我還嘗試著把顯示部分放在中斷里面,但是還是有一點(diǎn)閃爍,而且顯示一旦放到中斷里面,系統(tǒng)程序有時(shí)候就執(zhí)行亂了。請(qǐng)問引起閃爍一般都有什么樣的問題?以下是我的顯示部分程序,請(qǐng)幫我看一下還應(yīng)該怎么改,謝謝譯碼:unsigned char get_code(unsigned char i){ unsigned char p; switch(i){ case 0:p=0x5f; break; case 1:p=0x05; break; case 2:p=0x9b; break; case 3:p=0x8f; break; case 4:p=0xc5; break; case 5:p=0xce; break; case 6:p=0xde; break; case 7:p=0x07; break; case 8:p=0xdf; break; case 9:p=0xcf; break; case 10:p=0x7f; break;//小

  • HPL語(yǔ)言DoCase語(yǔ)句塊,測(cè)試程序

    hpl語(yǔ)言docase語(yǔ)句塊,測(cè)試程序;-------------------------------------------------------------------;;case語(yǔ)句使用說明;hpl語(yǔ)言的case語(yǔ)句比任何語(yǔ)言的case語(yǔ)句都更為強(qiáng)大;case語(yǔ)句主要組成(*號(hào)為hpl語(yǔ)言特有的,其他語(yǔ)言中沒有);1. docase(x);定義case語(yǔ)句塊,匹配寄存器x;2. *initcase;case語(yǔ)句塊初始化事件處理;3. *startcase;case語(yǔ)句塊開始后事件處理(loopcase語(yǔ)句入口);4. case y;case語(yǔ)句匹配值y(匹配語(yǔ)句后不需用exitcase);5. casein(x,y);case語(yǔ)句匹配值[x,y];6. *caseout(x,y);case語(yǔ)句不匹配值[x,y];7. *execcase;case語(yǔ)句匹配事件處理;8. elsecase;case語(yǔ)句不匹配事件處理;9. *nextcase;case語(yǔ)句繼續(xù)匹配(跳入下句case y);10. loopcase;case語(yǔ)句重新匹配(跳入startcase或首句case y);1

  • 請(qǐng)教

    har k; th1 = -50000/256; tl1 = -50000%256;if (tlcount<20) { tlcont++; }else { tr1=0; tlcount = 0; green = 1; red =1;showflag=1;digbit = 0x01;for (k=0;k<6;k++) wordbuf[k] =8; } }uchar getcode(uchar i) { uchar p; switch (i) { case 0: p=0x3f; break; case 1: p=0x06; break; case 2: p=0x5b; break; case 3: p=0x4f; break; case 4: p=0x66; break; case 5: p=0x6d; break; case 6: p=0x7d; break; case 7: p=0x07; break; case 8: p=0x7f; break; ca

case替代型號(hào)

CARSEM CARRY CARR CARP CARO CARLOS CARI CARDIN CARB CARA

CASH CASI CASN CASO CASR CASTOR CAT1021 CAT1023WI-30 CAT1024 CAT1025

相關(guān)搜索:
case相關(guān)熱門型號(hào)
CXA1538M CH751H-40PT CD74HC4052M96 CAT24C02YI-GT3 CS4344-CZZR CEB603AL CNY17-2 CD40106BCM CEP83A3 CD4071BE

快速導(dǎo)航


發(fā)布求購(gòu)

我要上傳PDF

* 型號(hào)
*PDF文件
*廠商
描述
驗(yàn)證
按住滑塊,拖拽到最右邊
OEM清單文件: OEM清單文件
*公司名:
*聯(lián)系人:
*手機(jī)號(hào)碼:
QQ:
有效期:

掃碼下載APP,
一鍵連接廣大的電子世界。

在線人工客服

買家服務(wù):
賣家服務(wù):
技術(shù)客服:

0571-85317607

網(wǎng)站技術(shù)支持

13606545031

客服在線時(shí)間周一至周五
9:00-17:30

關(guān)注官方微信號(hào),
第一時(shí)間獲取資訊。

建議反饋
返回頂部

建議反饋

聯(lián)系人:

聯(lián)系方式:

按住滑塊,拖拽到最右邊
>>
感謝您向阿庫(kù)提出的寶貴意見,您的參與是維庫(kù)提升服務(wù)的動(dòng)力!意見一經(jīng)采納,將有感恩紅包奉上哦!