Car DVD API User Manual V0.2 Feb 03, 2008

Size: px
Start display at page:

Download "Car DVD API User Manual V0.2 Feb 03, 2008"

Transcription

1 Car DVD API User Manual V0.2 Feb 03, 2008

2 Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLOGY CO. is believed to be accurate and reliable. However, SUNPLUS TECHNOLOGY CO. makes no warranty for any errors which may appear in this document. Contact SUNPLUS TECHNOLOGY CO. to obtain the latest version of device specifications before placing your order. No responsibility is assumed by SUNPLUS TECHNOLOGY CO. for any infringement of patent or other rights of third parties which may result from its use. In addition, SUNPLUS products are not authorized for use as critical components in life support systems or aviation systems, where a malfunction or failure of the product may reasonably be expected to result in significant injury to the user, without the express written approval of Sunplus. Sunplus Technology Co., Ltd. PAGE 2 V0.2 Feb 03, 2008

3 Revision History Revision Date By Remark Page Number(s) V /12/07 Guibiao.zhou First Edition 37 V /02/03 Ai Subin Modify format 34 Sunplus Technology Co., Ltd. PAGE 3 V0.2 Feb 03, 2008

4 Table of Content PAGE 1 IIC API I2C introduction WriteToI2c ReadFromI2c WriteToI2cPageMode ReadFromI2cPageMode WriteToI2cA ReadFromI2cA UART API regs0->uart0_data regs0->uart0_lsr UART0_set_baudrate write_uart IO_PUTC_WAIT uart_io_write_wait is_uart0_fifo_full is_uart0_fifo_empty reset_uart0_fifo write_uart0_exact io_write_wait io_getc io_write_flush Interrupt Time Interrupt init_timer intr_timer UART Interrupt Time Delay delay delay_1ms delay_1us delay_srv_10ms Watchdog...21 Sunplus Technology Co., Ltd. PAGE 4 V0.2 Feb 03, 2008

5 5.1 watchdog_onoff watchdog_renew dsp_watchdog GPIO T GPIO GPIO reset_gpio VFD VFD update_vfd_data polling_vfdr vfd_set_str VFD VIDEO CONTROL TV DAC output table tv_dacoff tv_dachalf tv_setup_aspect CCIR Sunplus Technology Co., Ltd. PAGE 5 V0.2 Feb 03, 2008

6 1 IIC API 1.1 I2C introduction Sunplus Technology Co., Ltd. PAGE 6 V0.2 Feb 03, 2008

7 1.2 WriteToI2c WriteToI2c(int ideviceaddr,int iaddr,byte *bdata,int len) Write n byte data to I2C memory/device on BYTE mode ideviceaddr : device address 24C02 0xA0 iaddr destination address *bdata the input data stream len the write data lenght return -1: write error return 1: write success WriteToI2cA0 Example: 1 void WriteToI2cA0(int iaddr,byte *bdata,uint32 len) #if (!defined(disc_id_in_flash))&&(!defined(setup_in_flash))//zxb if( WriteToI2c(0xa0,iAddr,bData,len) < 0 ) //write fail printf("!!!! ======== write flash error ========!!!!!\n"); #else Comment: 0xA0 24C02 iaddr, CDROM_INFO_BASE bdata bdata len 24C02 iaddr Sunplus Technology Co., Ltd. PAGE 7 V0.2 Feb 03, 2008

8 1.3 ReadFromI2c Int ReadFromI2c(int ideviceaddr,int iaddr,byte *bbuffer,int len) Read data from I2Cmemory/device on BYTE mode device iaddr len Byte bdata ideviceaddr : device address 24C02 0xA0 iaddr destination address len the read data lenght *bdata the read data stream return -1: write error return 1: write success 1 void ReadFromI2cA0(UINT16 iaddr,byte *bbuffer,uint16 len) #if!defined(disc_id_in_flash) &&!defined(setup_in_flash)//zxb memset(bbuffer,0,len); if(readfromi2c(0xa0, iaddr,bbuffer, len) >=0 ) //sucess printf("read flash data:\n"); //print_block(bbuffer,len); else printf("read flash error\n"); #else//#ifndef DISC_ID_IN_FLASH Comment: Sunplus Technology Co., Ltd. PAGE 8 V0.2 Feb 03, 2008

9 24C02 iaddr len bbuffer 1.4 WriteToI2cPageMode void WriteToI2cPageMode(int ideviceaddr,int iaddr,byte *bdata,int len) Write len byte data to I2C memory/device on page mode ideviceaddr : device address 24C02 0xA0 iaddr destination address device *bdata the input data stream len the write data lenght return -1: write error return 1: write success WriteToI2cPageMode WriteToI2c page page 8 Byte device WriteToI2c 1.5 ReadFromI2cPageMode void ReadFromI2cPageMode(int ideviceaddr,int iaddr,byte *bdata,int len) Read len byte data to I2C memory/device on page mode ideviceaddr : device address 24C02 0xA0 iaddr destination address device *bdata the input data stream len the read data lenght return -1: write error return 1: write success Sunplus Technology Co., Ltd. PAGE 9 V0.2 Feb 03, 2008

10 1.6 WriteToI2cA0 Void WriteToI2cA0(int iaddr,byte *bdata,uint32 len) Write len byte data to 24C02/FLASH on BYTE mode iaddr destination address 24C02/FLASH *bdata the input data stream len the write data lenght WriteToI2c WriteToNVMEM 1 WriteToI2cA0(CDROM_INFO_BASE,(BYTE *)&resume_fsnav_dir, sizeof(resume_fsnav_dir)); Comment: 1.7 ReadFromI2cA0 void ReadFromI2cA0(UINT16 iaddr,byte *bbuffer,uint16 len) Read len byte data from 24C02/FLASH on BYTE mode iaddr destination address 24C02/FLASH len the read data lenght *bdata the read data stream ReadFromI2c ReadFromNVMEM Sunplus Technology Co., Ltd. PAGE 10 V0.2 Feb 03, 2008

11 2 UART API UART UART0 UART1, UART UART0 UART0 2.1 regs0->uart0_data uart uart 1 #define EPP_GETC() (regs0->uart0_data) Int c; c = MON_GETC(); Comment: UART c 2.2 regs0->uart0_lsr uart0 uart0 ready empty #define UART_LSR_TX_RDY (1<<0) #define UART_LSR_RX_RDY (1<<1) #define UART_TX_EMPTY (1<<6) #define UART_RX_EMPTY (1<<7) #define UART0_tx_rdy() (regs0->uart0_lsr & UART_LSR_TX_RDY) regs0->uart0_data #define UART0_rx_rdy() (regs0->uart0_lsr & UART_LSR_RX_RDY) #define UART0_tx_empty() (regs0->uart0_lsr & UART_TX_EMPTY) tx buffer empty Sunplus Technology Co., Ltd. PAGE 11 V0.2 Feb 03, 2008

12 2.3 UART0_set_baudrate UART0_set_baudrate(X) Set baudrate of uart0 X:baudrate 1 UART0_set_baudrate(BAUDCC(BAUDRATE_DEFAULT, )); Comment: 2.4 write_uart0 void write_uart0(int c) uart_buf uart0_data c none none IO_PUTC_WAIT 1 UartTxd.h (h) #define UART_PUTC(c) (write_uart0(c)) UART_PUTC(c) c 2 uarttxd.c void putdec(char c) if (c >= 100) UART_PUTC(hex2asc(c / 100)); c = c % 100; if (c >= 10) UART_PUTC(hex2asc(c / 10)); Sunplus Technology Co., Ltd. PAGE 12 V0.2 Feb 03, 2008

13 c = c % 10; else UART_PUTC('0'); UART_PUTC(hex2asc(c)); 2.5 IO_PUTC_WAIT IO_PUTC_WAIT(c) uart uart fifo buffer (1) void uart_io_write_wait(const char *s) int c; while ((c = *s++)!= 0) IO_PUTC_WAIT(c); 2.6 uart_io_write_wait void uart_io_write_wait(const char *s) UART S Sunplus Technology Co., Ltd. PAGE 13 V0.2 Feb 03, 2008

14 (1)#define UART_PUTS(s...) \ do \ psprintf(linebuf, ##s); uart_io_write_wait(linebuf); \ while (0) 2.7 is_uart0_fifo_full int is_uart0_fifo_full() Is uart0 FIFO buffer full? 1: FIFO buffer is full; 0: nont full uart.c uart buffer 256 FIFO 2.8 is_uart0_fifo_empty int is_uart0_fifo_empty() uart0 FIFO buffer empty Sunplus Technology Co., Ltd. PAGE 14 V0.2 Feb 03, 2008

15 2.9 reset_uart0_fifo void reset_uart0_fifo() Initial uart0 fifo buffer none 2.10 write_uart0_exact void write_uart0_exact(int c) uart0 C int write_uart0_exact write_uart0 uart0 buffer regs0->uart0_data 2.11 io_write_wait Void io_write_wait(const char *s) uart S IO_PUTC_WAIT Sunplus Technology Co., Ltd. PAGE 15 V0.2 Feb 03, 2008

16 2.12 io_getc Int io_getc(void) uart io_write_flush Void io_write_flush(void) Wait until output fifo empty 3 Interrupt 3.1 Time Interrupt timer 0 timer 1 timer 0 timer 1 timer init_timer Sunplus Technology Co., Ltd. PAGE 16 V0.2 Feb 03, 2008

17 void init_timer(void) 1. setup STC 90kHz 2. setup RTC 100Hz 3. setup regs0->timer0_ctrl & timer1_ctrl reset_all regs0->stc_divisor setup STC frequency, ( 90kHz ) regs0->rtc_divisor setup RTC frequency ( 100Hz) regs0->timer1_ctrl : setup interrupt time 1 regs0->timer1_ctrl = TIMER_CONFIG_10ms; Comment: timer1 10ms 10ms TIMER_CONFIG_10ms :10ms Regmapo_XXX.h : #define TIMER_CONFIG_10ms ( TIMER_CONFIG_STC (900-1)) STC 90KHz 900 / 90KHz=10ms TIMER_CONFIG_4ms 4ms TIMER_CONFIG_1ms 1ms TIMER_CONFIG_STOP intr_timer1 Sunplus Technology Co., Ltd. PAGE 17 V0.2 Feb 03, 2008

18 void intr_timer1(void) Interrupt function timer1 intdrv_8202.s entry_timer1: la b k1, intr_timer1 interrupt_service timer1 intr_timer1 1 void intr_timer1(void) static int i = 0; i++; if(i==100) i=0; booking_second_flag=1; printf_w("===> booking_second_flag=%d\n", booking_second_flag); Comment: regs0->timer1_ctrl = TIMER_CONFIG_10ms 10ms 10ms 100=1s booking_second_flag 1s Sunplus Technology Co., Ltd. PAGE 18 V0.2 Feb 03, 2008

19 3.2 UART Interrupt 1 Comment: 4 Time Delay 4.1 delay void delay(unsigned) Delay ms 4.2 delay_1ms Sunplus Technology Co., Ltd. PAGE 19 V0.2 Feb 03, 2008

20 void delay_1ms(unsigned) Dleay ms 1 delay_1ms(20); delay 20 ms 4.3 delay_1us void delay_1us(unsigned) Dleay us delay_1ms. 4.4 delay_srv_10ms Sunplus Technology Co., Ltd. PAGE 20 V0.2 Feb 03, 2008

21 void delay_srv_10ms(int tms) Dleay 10ms Tms: delay delay_srv_10ms delay ( delay_1ms) delay servo delay_1ms 1 delay_srv_10ms ms delay servo ServoDecMainLoop 5 Watchdog 5.1 watchdog_onoff void watchdog_onoff(int n) Turn on /off watchdog n: 1:turn on watchdog; 0: turn off watchdog (1) watchdog_onoff(0); // disable watchdog (default) watchdog_onoff(1); Sunplus Technology Co., Ltd. PAGE 21 V0.2 Feb 03, 2008

22 5.2 watchdog_renew void watchdog_renew(int n) Set watchdog counter N watchdog counter 1 static inline void apmain_state_setup_browser() #ifdef SHOW_DOUBLE_LOGO //zxb :02 ShowTitle(); #endif // enable watchdog (default) watchdog_renew(0xffff); // reset watchdog watchdog_onoff(1); // enable watchdog 5.3 dsp_watchdog inline void dsp_watchdog(void) use DSP watch dog to monitor DSP, If DSP behavier abnormally, watch dog will reset DSP Sunplus Technology Co., Ltd. PAGE 22 V0.2 Feb 03, 2008

23 (1) void polling(void) #ifndef NO_AUDIO_DSP // to avoid 500 ms as a multiple of consuming speed. if (diff >= (UINT8)(50-dsp_delay) ) dsp_delay = (dsp_delay + 0x2) & 0xf; dsp_watchdog(); #endif 6 GPIO T GPIO PIN GPIO 87 GPIO39 Servo HOME / CARD_RST GPIO39 gpio_first[2][7]=1 88 GPIO40 Servo LDSW GPIO40 gpio_first[2][8]=1 115 GPIO2 DVDVR GPIO2 gpio_first[0][2]=1 116 GPIO3 Servo DMEA GPIO3 gpio_first[0][3]=1 117 GPIO4 SD_D1 / MS_D1 GPIO4 gpio_first[0][4]=1 118 GPIO5 SD_D0 / MS_D0 GPIO5 gpio_first[0][5]=1 119 GPIO6 SD_CLK / MS_CLK GPIO6 gpio_first[0][6]=1 120 GPIO7 Servo TRAY_IS_IN / SD_CMD / MS_BS GPIO7 gpio_first[0][7]=1 121 GPIO8 Servo TRAY_IS_OUT / SD_D3 / MS_D3 GPIO8 gpio_first[0][8]=1 122 GPIO9 SD_D2 / MS_D2 GPIO9 gpio_first[0][9]=1 123 GPIO10 CDVR GPIO10 gpio_first[0][10]=1 128 GPIO15 Servo TRAY_OUT GPIO15 gpio_first[0][15]=1 1 GPIO16 VFD_CLK GPIO16 gpio_first[1][0]=1 Sunplus Technology Co., Ltd. PAGE 23 V0.2 Feb 03, 2008

24 2 GPIO17 VFD_STB GPIO17 gpio_first[1][1]=1 3 GPIO18 VFD_DATA GPIO18 gpio_first[1][2]=1 7 GPIO19 IR_IN GPIO19 gpio_first[1][3]=1 8 GPIO20 SCART_REL / GAME_LATCH GPIO20 gpio_first[1][4]=1 9 GPIO21 SCART_DIS / GAME_CLK GPIO21 gpio_first[1][5]=1 11 GPIO22 HSYNC(1) / RX(1) GPIO22 gpio_first[1][6]=1 12 GPIO23 VSYNC(1) / TX(1) GPIO23 gpio_first[1][7]=1 33 GPIO25 HSYNC(2) / RX(2) / CARD_SENSE(1) GPIO25 gpio_first[1][9]=1 45 GPIO27 VSYNC(2) / TX(2) / GAME_D1(1) GPIO27 gpio_first[1][11]=1 51 GPIO28 SPDIF_OUT GPIO28 gpio_first[1][12]=1 52 GPIO29 SCART_SIG / GAME_D0 GPIO29 gpio_first[1][13]=1 53 GPIO30 VSYNC/656_D6 GPIO30 gpio_first[1][14]=1 54 GPIO31 I2S_DIN/656_D5 GPIO31 gpio_first[1][15]=1 55 GPIO32 AIN_R GPIO32 gpio_first[2][0]=1 56 GPIO33 AOUT_C GPIO33 gpio_first[2][1]=1 57 GPIO34 AOUT_SUB GPIO34 gpio_first[2][2]=1 58 GPIO35 VSS_ADAC GPIO35 gpio_first[2][3]=1 59 GPIO36 AOUT_RS GPIO36 gpio_first[2][4]=1 60 GPIO37 AOUT_LS GPIO37 gpio_first[2][5]=1 61 GPIO38 VREF GPIO38 gpio_first[2][6]=1 6.2 GPIO 1 0 regs0->gpio_master[4] 0 GPIO IOP 1 GPIO RISC regs0->gpio_oe[4] 0 GPIO 1 GPIO regs0->gpio_out[4] 0 GPIO 1 GPIO regs0->gpio_in[4] 0 1 Sunplus Technology Co., Ltd. PAGE 24 V0.2 Feb 03, 2008

25 #define GPIO_I_GET(a) ((regs0->gpio_in[a/16] >> (a%16)) & 0x01) #define GPIO_O_SET(a,d) ((d)? (regs0->gpio_out[a/16] = (1<<(a%16))) \ : (regs0->gpio_out[a/16] &= ~(1<<(a%16))) ) #define GPIO_E_SET(a,d) ((d)? (regs0->gpio_oe[a/16] = (1<<(a%16))) \ : (regs0->gpio_oe[a/16] &= ~(1<<(a%16))) ) #define GPIO_M_SET(a,d) ((d)? (regs0->gpio_master[a/16] = (1<<(a%16))) \ : (regs0->gpio_master[a/16] &= ~(1<<(a%16))) ) GPIO_M_SET(a,d) GPIO_E_SET(a,d) GPIO_O_SET(a,d) a GPIO,d 0 1 a GPIO,d 0 1 a GPIO,d GPIO IOP 1 GPIO RISC 0 GPIO 1 GPIO 0 GPIO 1 GPIO GPIO_I_GET(a) a GPIO GPIO (1) regs0->gpio_master[54 / 16] = (0x7 << (54 % 16)); GPIO RISC regs0->gpio_oe[54 / 16] = (0x7 << (54 % 16)); GPIO regs0->gpio_out[54 / 16] &= ~(0x7 << (54 % 16)); GPIO GPIO_M_SET(16, 1); GPIO_E_SET(16, 1); GPIO_O_SET(16, 1); GPIO16 RISC Sunplus Technology Co., Ltd. PAGE 25 V0.2 Feb 03, 2008

26 6.3 reset_gpio void reset_gpio(void) initial gpio function (1) void reset_all(void) #ifdef SUPPORT_EPP // reset emuio fifo reset_io(); #endif // hardware initialization reset_gpio(); // setup GPIO directions //uart relative function reset_uart_func(); 7 VFD 7.1 VFD (1) VFD (Vacuum Fluorescent Display), Digit 0 : A,B,C,D,E,F Sunplus Technology Co., Ltd. PAGE 26 V0.2 Feb 03, 2008

27 Digit 1 : B,C Digit 2 : A,B,G,E,D VFD panel spec, //customer//sunplus//vfd_***.h (2) VFD BYTE vfd_mem[vfd_mem_len], VFD_MEM_LEN MEMMORY linbuf[] linbuf[] BYTE VFD_MEM[] polling BYTE VFD_MEM[] VFD BYTE vfd_mem[vfd_mem_len] vfd_func.h 7.2 update_vfd_data void update_vfd_data(void) Update vfd_mem data none polling_vfdr update vfd_mem data, open read Example: void update_vfd_data(void) Sunplus Technology Co., Ltd. PAGE 27 V0.2 Feb 03, 2008

28 case VCD_STATE_POWER: //power off index = vfd_set_power_state(index); return; case VCD_STATE_IDLE: //no disc if(system_state == SYSTEM_NODISC) index = vfd_set_no_disc_state(index); else index = vfd_set_idle_state(index); return; case VCD_STATE_READTOC: //chk disc type loading... index = vfd_set_toc_state(index); return; vfd_set_playback(); 7.3 polling_vfdr void polling_vfdr(void) 100ms VFD_MEM polling_10ms 1 static inline void polling_10ms(void) Sunplus Technology Co., Ltd. PAGE 28 V0.2 Feb 03, 2008

29 #if defined(support_vfd) defined(gpio_key_light)//nono :39 polling_vfdr(); #endif 7.4 vfd_set_str void vfd_set_str(uint8 id,const char *s) VFD_MEM Id language id S display string polling_10ms 1 READ UINT16 vfd_set_toc_state(uint16 index) erase_vfd_mem(); vfd_set_str(0," READ "); return index; reset_vfd(): vfd register vfd memory 0 refresh_vfd_mem(): vfd memory(vfd_mem[]) refresh_vfd_mem_digit(): min,sec step/pause nodes vfd_set_7seg(uint32 t, UINT32 mm) t=0 track number mm:current track Sunplus Technology Co., Ltd. PAGE 29 V0.2 Feb 03, 2008

30 t=1 mm:current min t=2 mm:current sec vfd_dot(uint32 method, UINT32 p) method=0 p node method=1 p node method=2 toggle p node VFD (1) \\root\\customer vfd_***.h vfd_***.c vfd_mod.c H vfd_dot (2) vfd_key_test vfd_dot (3) vfd_set_open( ) (4) *.h vfdfunc.h user_init.h user_init.h Sunplus Technology Co., Ltd. PAGE 30 V0.2 Feb 03, 2008

31 8 VIDEO CONTROL 8.1 TV DAC output table Table 1: 4 TV TV0 CVB CVB CVB TV1 TV2 Y Cb Y(S-Video) CVB G B TV3 Cr C(S-Video) R Table 2: 6 TV Dac On TV0 TV1 TV2 TV3 TV4 TV5 CVB Y C (S-Video) (S-Video) Y Cb Cr CVB Y C (S-Video) (S-Video) CVB Y (S-Video) C (S-Video) CVB Y C (S-Video) (S-Video) G B R 8202T 4 DAC, Table tv_dacoff Sunplus Technology Co., Ltd. PAGE 31 V0.2 Feb 03, 2008

32 static inline void tv_dacoff(unsigned v) Turn off dac V TV dac parameter 1 tv_dacoff(tv_dac_d TV_DAC_E TV_DAC_F) TV 3 TV4 TV5 8.3 tv_dachalf static inline void tv_dachalf(unsigned v) Set TV dac half swing V TV dac parameter 1 static inline void sysmain_setup_vdac_current_sphe8202() #ifdef TV_USE_HALF_SWING tv_dachalf(tv_dac_f TV_DAC_E TV_DAC_D TV_DAC_C TV_DAC_B); half-swing // dac f/e/d/c/b #elif defined(tv_use_quart_swing) sp8200tv_setup_dac_current(tv_dac_b_quart TV_DAC_C_QUART TV_DAC_D_QUAR T); // 8202L dac b/c/d quart-swing Sunplus Technology Co., Ltd. PAGE 32 V0.2 Feb 03, 2008

33 #else tv_dachalf(0); #endif #define TV_USE_HALF_SWING TV DAC 1/2 #define TV_USE_QUART_SWING TV DAC 1/4 8.4 tv_setup_aspect static inline void tv_setup_aspect(int aspect) Set aspect aspect OUTPUT_ASPECT_NORMAL OUTPUT_ASPECT_ANAMORPHIC Aspect aspect.h #define OUTPUT_ASPECT_NORMAL (OUTPUT_TV_ASPECT_4_3 OUTPUT_SRC_ASPECT_4_3) //4:3 source, output to 4:3 TV #define OUTPUT_ASPECT_ANAMORPHIC (OUTPUT_TV_ASPECT_16_9 OUTPUT_SRC_ASPECT_16_9) #define OUTPUT_ASPECT_LETTERBOX (OUTPUT_TV_ASPECT_4_3 OUTPUT_SRC_ASPECT_16_9) #define OUTPUT_ASPECT_PANSCAN (OUTPUT_TV_ASPECT_4_3 OUTPUT_SRC_ASPECT_16_9 OUTPUT_ENLARGE) #define OUTPUT_ASPECT_COMPRESSED (OUTPUT_TV_ASPECT_16_9 OUTPUT_SRC_ASPECT_4_3) Sunplus Technology Co., Ltd. PAGE 33 V0.2 Feb 03, 2008

34 8.5 CCIR656 CCIR656 GPIO CFG #define DIGITAL_VIDEO_OUT Sunplus Technology Co., Ltd. PAGE 34 V0.2 Feb 03, 2008

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

SPHE8202R Design Guide Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provi

SPHE8202R Design Guide Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provi SPHE8202R Design Guide V2.0 JUN, 2007 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com SPHE8202R Design Guide Important Notice

More information

PCM-3386用户手册.doc

PCM-3386用户手册.doc PCM-3386 BBPC-4x86 10/100M PC/104 (Lanry technology Co. Ltd. Zhuhai) 38 1012836 (Address: Room 1012,Linhai Building,No. 38,west of Shihua Road,Zhuhai City,Guangdong Province,China) (post code)519015 (phone)0756-3366659

More information

bingdian001.com

bingdian001.com TSM12M TSM12 STM8L152C6, STM8L152R8 MSP430F5325 whym1987@126.com! /******************************************************************************* * : TSM12.c * : * : 2013/10/21 * : TSM12, STM8L f(sysclk)

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

T stg -40 to 125 C V cc 3.8V V dc RH 0 to 100 %RH T a -40 to +125 C -0.3 to 3.6V V -0.3 to VDD+0.3 V -10 to +10 ma = 25 = 3V) VDD

T stg -40 to 125 C V cc 3.8V V dc RH 0 to 100 %RH T a -40 to +125 C -0.3 to 3.6V V -0.3 to VDD+0.3 V -10 to +10 ma = 25 = 3V) VDD 1/16 T stg -40 to 125 C V cc 3.8V V dc RH 0 to 100 %RH T a -40 to +125 C -0.3 to 3.6V V -0.3 to VDD+0.3 V -10 to +10 ma (@T = 25 C, @Vdd = 3V) VDD 1.8 3.0 3.6 V (1) 0.08 0.3 µa Idd 300 450 500 µa 0.25

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

Microsoft Word - LR1122B-B.doc

Microsoft Word - LR1122B-B.doc UNISONIC TECHNOLOGIES CO., LTD LOW NOISE ma LDO REGULATOR DESCRIPTION The UTC is a typical LDO (linear regulator) with the features of High output voltage accuracy, low supply current, low ON-resistance,

More information

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 B. 啟 用 智 慧 型 裝 置 的 無 線 Wi-Fi C. 選 擇 無 線 網 路 名 稱 "edimax.setup"

More information

Microsoft Word - Atmel-45136A-Pick-Best-Microcontroller-Strom-Eiland-Flodell_Article_CS

Microsoft Word - Atmel-45136A-Pick-Best-Microcontroller-Strom-Eiland-Flodell_Article_CS 如 何 为 您 的 下 一 款 设 计 选 出 最 好 的 8 位 或 32 位 微 控 制 器 作 者 : Atmel 产 品 营 销 高 级 总 监 Oyvind Strom Atmel 产 品 营 销 总 监 Andreas Eieland Atmel 研 发 工 具 部 门 高 级 产 品 营 销 经 理 Henrik Flodell 不 久 之 前, 嵌 入 式 系 统 还 是 既 昂 贵

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

P4i45GL_GV-R50-CN.p65

P4i45GL_GV-R50-CN.p65 1 Main Advanced Security Power Boot Exit System Date System Time Floppy Drives IDE Devices BIOS Version Processor Type Processor Speed Cache Size Microcode Update Total Memory DDR1 DDR2 Dec 18 2003 Thu

More information

JLX

JLX PRODUCT:LCD MODULE. Model No.: JLX177-006 Product Type: 1.77 inch QVGA TFT Modoule. 产品规格书 晶联讯研发研发部 : Written By Checked By Approved By 客户名称 : 结构电子核准 地址 : 深圳市宝安区西乡宝安大道东华工业区 A3 栋 6 楼电话 :0755-29784961 Http://www.jlxlcd.cn

More information

untitled

untitled EDM12864-GR 1 24 1. ----------------------------------------------------3 2. ----------------------------------------------------3 3. ----------------------------------------------------3 4. -------------------------------------------------------6

More information

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING 前言 - Andrew Payne 目录 1 2 Firefly Basics 3 COMPONENT TOOLBOX 目录 4 RESOURCES 致谢

More information

PTS7_Manual.PDF

PTS7_Manual.PDF User Manual Soliton Technologies CO., LTD www.soliton.com.tw - PCI V2.2. - PCI 32-bit / 33MHz * 2 - Zero Skew CLK Signal Generator. - (each Slot). -. - PCI. - Hot-Swap - DOS, Windows 98/2000/XP, Linux

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 49 [P.51] C/C++ [P.52] [P.53] [P.55] (int) [P.57] (float/double) [P.58] printf scanf [P.59] [P.61] ( / ) [P.62] (char) [P.65] : +-*/% [P.67] : = [P.68] : ,

More information

ICD ICD ICD ICD ICD

ICD ICD ICD ICD ICD MPLAB ICD2 MPLAB ICD2 PIC MPLAB-IDE V6.0 ICD2 usb PC RS232 MPLAB IDE PC PC 2.0 5.5V LED EEDATA MPLAB ICD2 Microchip MPLAB-IDE v6.0 Windows 95/98 Windows NT Windows 2000 www.elc-mcu.com 1 ICD2...4 1.1 ICD2...4

More information

CANVIO_AEROCAST_CS_EN.indd

CANVIO_AEROCAST_CS_EN.indd 简 体 中 文...2 English...4 SC5151-A0 简 体 中 文 步 骤 2: 了 解 您 的 CANVIO AeroCast CANVIO AeroCast 无 线 移 动 硬 盘 快 速 入 门 指 南 欢 迎 并 感 谢 您 选 择 TOSHIBA 产 品 有 关 您 的 TOSHIBA 产 品 的 详 情, 请 参 阅 包 含 更 多 信 息 的 用 户 手 册 () 安

More information

目 录 目 录 1. 安 装 和 快 速 入 门 附 件 1.1 随 机 附 件... 3 1.2 附 件 信 息... 3 连 接 和 设 定 1.3 连 接... 3 1.4 记 录 纸... 4 快 速 入 门 1.5 发 送 传 真 / 复 印... 5 1.6 接 收 传 真... 5 2

目 录 目 录 1. 安 装 和 快 速 入 门 附 件 1.1 随 机 附 件... 3 1.2 附 件 信 息... 3 连 接 和 设 定 1.3 连 接... 3 1.4 记 录 纸... 4 快 速 入 门 1.5 发 送 传 真 / 复 印... 5 1.6 接 收 传 真... 5 2 KX-FT832CN KX-FT836CN KX-FT836 感 谢 您 购 买 Panasonic 传 真 机 请 于 使 用 前 仔 细 阅 读 操 作 使 用 说 明 书, 并 妥 善 保 管 本 机 与 来 电 显 示 兼 容 您 必 须 向 服 务 供 应 商 / 电 话 公 司 申 请 并 取 得 相 应 的 服 务 目 录 目 录 1. 安 装 和 快 速 入 门 附 件 1.1 随

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

Xear 3D USB CH-IN-2 SPKs 2 6 :

Xear 3D USB CH-IN-2 SPKs 2 6 : 13 6 CH-IN-2 SPKs 2 6 : 13 2003 7 0 13 Notice The content furnished in this document is C-Media audio product knowledge for customers reference However, C-Media Inc assumes no responsibility for the consequences

More information

Tel:010-62981668-2930 1

Tel:010-62981668-2930  1 Access 93C46 with SPI function V1.0.0 Jan. 31, 2005 http://www.sunplusmcu.com Tel:010-62981668-2930 http://www.sunplusmcu.com E-mail:mcu@sunplus.com.cn 1 0 0...2 1...3 2...4 2.1...4 2.2...5 3...6 3.1 AT93C46...6

More information

Microsoft Word - Functional_Notes_3.90_CN.doc

Microsoft Word - Functional_Notes_3.90_CN.doc GeO-iPlatform Functional Notes GeO Excel Version 3.90 Release Date: December 2008 Copyrights 2007-2008. iplatform Corporation. All rights reserved. No part of this manual may be reproduced in any form

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

Applied Biosystems StepOne™ Real-Time PCR System Quick Reference Card for Installation

Applied Biosystems StepOne™ Real-Time PCR System Quick Reference Card for Installation Applied Biosystems StepOne Real-Time PCR System StepOne 系统安装 快速参考卡 本文档提供在并置布局中安装 StepOne 系统的简明指导 有关 完整步骤或独立安装步骤 请参阅 Applied Biosystems StepOne Real-Time PCR System 安装 联网和维护指南 目录 1. 安装准备........................................

More information

CHN_p000A_Cover.ai

CHN_p000A_Cover.ai NextoDI Co., Ltd. www.nextodi.com 列表........................................................................ 1 3 4 4 6 7 8 9 10 12 14 16 20 01 02 03 04 1 2 3 5 6 4 XCopy Ready B Menu Menu Off Off 05 06

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

中文手册

中文手册 PCC-3428 PC/104 1. PCC-3428 1.1 PCC-3428 90mm 96mm ST CPU STPC Atlas Atlas CPU 486 DX/DX2 CPU DX2 133MHz Atlas 2D LCD/CRT 100MHz SDRAM 64MBytes PCC-3428 10/100Mbps DOC EIDE USB PC/104 ST STPC Atlas STPC

More information

8idml_20_1_q

8idml_20_1_q Chapter 2 GIGA-BYTE TECHNOLOGY CO, LTD GBT ( ) GBT GBT, GBT 2002 3 15 1 1 11 3 12 AP64D(-H) 3 2 21 4 22 5 23 6 3 31 Win 98/98SE, WinME Win XP 8 311 8 312 Direct X 9 313 11 314 14 315 14 316 18 32 Windows

More information

01CP-WX3030WNetc_CO_ENG.indd

01CP-WX3030WNetc_CO_ENG.indd Data Video Projector User s Manual (Concise) ModelS: 8928A/8930A/8931WA/ 8933W Information in this Guide may change due to product improvements. To obtain the latest manuals, literature, and software please

More information

User’s Manual

User’s Manual SNAP 500 打 印 机 用 户 手 册 1 用 户 手 册 SNAP TM 500 打 印 机 2015 年 8 月 24 日 AVERY DENNISON Manual Edition 2.5 2 SNAP 500 打 印 机 用 户 手 册 WARNING This device complies with Part 15 of the FCC Rules. Operation is subject

More information

Table of Contents Power Film Capacitors Power Film Capacitors Series Table Product Type Series Voltage Capacitance() Page DC-Link Power Film Capacitors Power Film Capacitors Power Film Capacitors Power

More information

概述

概述 OPC Version 1.6 build 0910 KOSRDK Knight OPC Server Rapid Development Toolkits Knight Workgroup, eehoo Technology 2002-9 OPC 1...4 2 API...5 2.1...5 2.2...5 2.2.1 KOS_Init...5 2.2.2 KOS_InitB...5 2.2.3

More information

68369 (ppp quickstart guide)

68369 (ppp quickstart guide) Printed in USA 04/02 P/N 68369 rev. B PresencePLUS Pro PC PresencePLUS Pro PresencePLUS Pro CD Pass/Fails page 2 1 1. C-PPCAM 2. PPC.. PPCAMPPCTL 3. DB9D.. STPX.. STP.. 01 Trigger Ready Power 02 03 TRIGGER

More information

Microsoft PowerPoint - ATF2015.ppt [相容模式]

Microsoft PowerPoint - ATF2015.ppt [相容模式] Improving the Video Totalized Method of Stopwatch Calibration Samuel C.K. Ko, Aaron Y.K. Yan and Henry C.K. Ma The Government of Hong Kong Special Administrative Region (SCL) 31 Oct 2015 1 Contents Introduction

More information

Epson

Epson WH / MS CMP0087-00 TC WH/MS EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Corporation Microsoft and Windows are registered trademarks of Microsoft Corporation. Mac and Mac OS are registered trademarks

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

Microsoft Word - MSP430 Launchpad 指导书.docx

Microsoft Word - MSP430 Launchpad 指导书.docx Contents 3... 9... 14 MSP430 LAUNCHPAD 指导书 3 第一部分第一个工程 New Project File > New > CCS Project Project name: ButtonLED Device>Family: MSP430 Variant: MSP430G2553 Project templates and examples : Empty Project

More information

关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 1 水 质 : 瓶 装 的, 不 一 定 就 是 更 好 的 2 生 产 : 监 管 缺 位, 消 费 者 暴 露 于 风 险 之 中 人 们 往 往 假 定 瓶 装 水 是

关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 1 水 质 : 瓶 装 的, 不 一 定 就 是 更 好 的 2 生 产 : 监 管 缺 位, 消 费 者 暴 露 于 风 险 之 中 人 们 往 往 假 定 瓶 装 水 是 关 于 瓶 装 水, 你 不 得 不 知 的 件 事 情 关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 1 水 质 : 瓶 装 的, 不 一 定 就 是 更 好 的 2 生 产 : 监 管 缺 位, 消 费 者 暴 露 于 风 险 之 中 人 们 往 往 假 定 瓶 装 水 是 干 净 安 全 健 康 的, 广 告 传 递

More information

操作指导手册

操作指导手册 GLI P53 C P53 ph/orp 1 Adobe Acrobat GLI gliint.com GLI GLI Adobe Adobe adobe.com 2 FMRC 3600 3611 3810 CSA C22.2 142 C22.2 213 EN 61010-1 TB2 TB3 1 2 3 70 3 GLI P53 GLI GLI GLI GLI GLI GLI 4 GLI ph ph

More information

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Terminal Mode No User User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Mon1 Cam-- Mon- Cam-- Prohibited M04 Mon1 Cam03 Mon1 Cam03

More information

untitled

untitled 0000137925 REV 1.0 ... 4... 5... 6... 7... 8... 9... 11... 12... 13... 14... 15... 17... 18... 20... 22 ( 1)... 25... 26 ( 2)... 28 \ 1 ( 2A)... 29 \ 2 ( 2B)... 30 SSR ( 2C)... 31 \ ( 2D)... 32 \ ( 3A)...

More information

员工签到录

员工签到录 Archivist 2002 Eletech Enterprise Co., Ltd. All Rights Reserved. 1-1 ELETECH VOICE SYSTEMS INC 2 / 2 VLR, 1-1-1 VP894AS-M11 1. VP894AS-M11 1 2. Y 4 3. RJII 4 4. 2-PIN 1 5. VLR 1 2 3 4 ELETECH VOICE SYSTEMS

More information

c-AR64SH-102

c-AR64SH-102 Chapter 2 GIGA-BYTE TECHNOLOGY CO, LTD GBT ( ) GBT GBT, GBT 2002 3 15 1 1 11 3 12 3 2 21 4 22 5 23 6 3 31 Win 98/ 98SE, WinME Win XP 8 311 8 312 Direct X 9 313 11 314 14 315 14 316 18 32 Windows NT 40

More information

Model P53 pH-ORP Analyzer CH.doc

Model P53 pH-ORP Analyzer CH.doc 1 Adobe Acrobat GLI gliint.com GLI GLI Adobe Adobe adobe.com 安恒公司 http://www.watertest.com.cn Tel:010-88018877( 北京 ) 021-63176770( 上海 ) 2 FMRC 3600 3611 3810 CSA C22.2 142 C22.2 213 EN 61010-1 TB2 TB3

More information

行业

行业 PCL-818HD/HG/L PCL-818HD/HG/L 1.1...2 1.1.1 /...2 1.1.2 ID...2 1.2...3 1.3...3 2.1...3 2.2...3 2.2.1...4 2.2.2...4 2.2.3 DMA...5 2.2.4...5 2.2.5 D/A...5 2.2.6...6 2.2.7 EXE.trigger GATE0...6 2.2.8 FIFO

More information

1 TPIS TPIS 2 2

1 TPIS TPIS 2 2 1 1 TPIS TPIS 2 2 1. 2. 3. 4. 3 3 4 5 4 TPIS TPIS 6 5 350 Mark Coil F3/F6 350 M 150 M 25 M 7.12M 8 M F3 F6 F4 F7 F8 8M AA 7 350 28V 5V IC HCPL2731 0.5mA 6 8 (TPIS) TPIS 9 7 IC AT89C2051 AT89C2051 CMOS8

More information

ch_code_infoaccess

ch_code_infoaccess 地 產 代 理 監 管 局 公 開 資 料 守 則 2014 年 5 月 目 錄 引 言 第 1 部 段 數 適 用 範 圍 1.1-1.2 監 管 局 部 門 1.1 紀 律 研 訊 1.2 提 供 資 料 1.3-1.6 按 慣 例 公 布 或 供 查 閱 的 資 料 1.3-1.4 應 要 求 提 供 的 資 料 1.5 法 定 義 務 及 限 制 1.6 程 序 1.7-1.19 公 開 資

More information

V6800/V6600 3D

V6800/V6600 3D V6800/V6600 3D V6600/V6800 3D R 2000 2 3 4 5 R 6 7 8 The VIP (Video Interface Port) Connector are used for third party add-on modules, such as video capture cards or television tuners. DDR: Double Data

More information

2 12

2 12 SHENZHEN BRILLIANT CRYSTAL TECHNOLOGIC CO.,LTD. The specification for the following models Graphic LCM serial communication control board CB001 PROPOSED BY APPROVED Design Approved TEL:+86-755-29995238

More information

060522達文西密碼_全_.PDF

060522達文西密碼_全_.PDF Date: May-22-2006 Page 1 Date: May-22-2006 Page 2 Date: May-22-2006 Page 3 Date: May-22-2006 Page 4 Date: May-22-2006 Page 5 Date: May-22-2006 Page 6 Date: May-22-2006 Page 7 Date: May-22-2006 Page 8 Date:

More information

AP128DG-H AP128DG-H 3 13 ATiRADEON TM Win 98/98SE, WinME Win XP Direct X

AP128DG-H AP128DG-H 3 13 ATiRADEON TM Win 98/98SE, WinME Win XP Direct X Chapter 2 GIGA-BYTE TECHNOLOGY CO, LTD ( GBT ) GBT GBT, GBT 2002 4 12 1 AP128DG-H 1 11 3 12 AP128DG-H 3 13 ATiRADEON TM 8500 4 2 21 5 22 6 23 7 3 31 Win 98/98SE, WinME Win XP 9 311 9 312 Direct X 10 313

More information

Go构建日请求千亿微服务最佳实践的副本

Go构建日请求千亿微服务最佳实践的副本 Go 构建 请求千亿级微服务实践 项超 100+ 700 万 3000 亿 Goroutine & Channel Goroutine Channel Goroutine func gen() chan int { out := make(chan int) go func(){ for i:=0; i

More information

目录

目录 ALTERA_CPLD... 3 11SY_03091... 3 12SY_03091...4....5 21 5 22...8 23..10 24..12 25..13..17 3 1EPM7128SLC.......17 3 2EPM7032SLC.......18 33HT46R47......19..20 41..20 42. 43..26..27 5151DEMO I/O...27 52A/D89C51...28

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

CD DX Onkyo CD CD Cs

CD DX Onkyo CD CD Cs CD DX-7355... 2... 13... 15 Onkyo CD CD... 26 Cs 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. S3125A 13. 14. 15. A. B. C. D. E. F. 16. 17. 18. 20cm 8" 10cm 4" 10cm 4" Cs-2 1. 2. Onkyo 3. 4. AC230V 50Hz AC120V

More information

Contents

Contents PISO-PS600 (Version 1.3) PISO-PS600 Version 1.3 1 Warranty All products manufactured by ICPDAS Inc. are warranted against defective materials for a period of one year from the date of delivery to the original

More information

Microsoft Word - MTK平台生产软件使用说明.doc

Microsoft Word - MTK平台生产软件使用说明.doc MTK 1. 1.1 SMT BSN 1.2 1 IMEI 2. 2 2.1 MTK Flash Flash NAND FlashMP3 1 SMT SOFT Flash 2 SOFT MKT USB-RS232 921600 8 2.2 COPY 2.3 USB PCUSB USB 8 USB USB USB-RS232 (USB ) RS232 PCRS232 8 4V2A 2.4 DA File

More information

CDWA Mapping. 22 Dublin Core Mapping

CDWA Mapping. 22 Dublin Core Mapping (version 0.23) 1 3... 3 3 3 5 7 10 22 CDWA Mapping. 22 Dublin Core Mapping. 24 26 28 30 33 2 3 X version 0.2 ( ) 4 Int VarcharText byte byte byte Id Int 10 Management Main Code Varchar 30 Code Original

More information

2782_OME_KM_Cover.qxd

2782_OME_KM_Cover.qxd 数码说明书之家 2005.09.06 www.54gg.com 2 3 4 5 6 7 9 8...14...14...17...18...19...20...20...20...21...22...23...24...24...25...26...28...28...29...29...30...32...32 EVF LCD...32...33...34...34...35...35...36...36...37...38...39...40...40...41...41...42...43...44...45...45...46...47...48...49...50...50

More information

lan03_yen

lan03_yen IEEE 8. LLC Logical Link Control ll rights reserved. No part of this publication and file may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical,

More information

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn Xi III Zebra XI III 1 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn 230V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666

More information

audiogram3 Owners Manual

audiogram3 Owners Manual USB AUDIO INTERFACE ZH 2 AUDIOGRAM 3 ( ) * Yamaha USB Yamaha USB ( ) ( ) USB Yamaha (5)-10 1/2 AUDIOGRAM 3 3 MIC / INST (XLR ) (IEC60268 ): 1 2 (+) 3 (-) 2 1 3 Yamaha USB Yamaha Yamaha Steinberg Media

More information

P4VM800_BIOS_CN.p65

P4VM800_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date [ 17:00:09] [Fri 02/25/2005] BIOS Version : P4VM800 BIOS P1.00 Processor Type : Intel (R) Pentium (R) 4 CPU 2.40 GHz Processor

More information

SDP 1 2 3 4 8 9 10 12 19

SDP 1 2 3 4 8 9 10 12 19 SDP SDP 1 2 3 4 8 9 10 12 19 SDP 2 SDP CANBUS 3m/s 48 1 2 N 3 4 5 6 7 8 9 EMC EMC ENS008212 EN618003 10 IP21 SDP 3 1 1 4 2 5 3 P24 103 104 N24 G24 P24 101 102 N24 G24 J2 J3 n P2 P1 P3 J2 J1 J3 1 P2 P1

More information

Tel: Fax: TTP-344M/246M /

Tel: Fax: TTP-344M/246M / TTP-344M/246M / True Type font David Turner, Robert Wilhelm Werner Lemberg The Free Type Project 235 16 8 2 i- TTP-344M/246M...1 1.1...1 1.2...1 1.2.1...1 1.2.2 /...2 1.2.3...2 1.2.4...2 1.3...3 1.4...3

More information

Microsoft Word - 山西焦化(600740)--焦炭价格上涨提升业绩,市场整合带来机会 doc

Microsoft Word - 山西焦化(600740)--焦炭价格上涨提升业绩,市场整合带来机会 doc 公 司 研 究 中 国 A 股 市 场 采 掘 煤 炭 开 采 Mining Coal Mining 2010 年 2 月 23 日 Type your comment here 市 场 数 据 20010 年 2 月 23 日 当 前 价 格 ( 元 ) 8.19 52 周 价 格 区 间 ( 元 ) 5.3-12.15 总 市 值 ( 百 万 ) 4672.68 流 通 市 值 ( 百 万 )

More information

P4V88+_BIOS_CN.p65

P4V88+_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date [ 17:00:09] [Wed 12/22/2004] BIOS Version : P4V88+ BIOS P1.00 Processor Type : Intel (R) Pentium (R) 4 CPU 2.40 GHz Processor

More information

C语言的应用.PDF

C语言的应用.PDF AVR C 9 1 AVR C IAR C, *.HEX, C,,! C, > 9.1 AVR C MCU,, AVR?! IAR AVR / IAR 32 ALU 1KBytes - 8MBytes (SPM ) 16 MBytes C C *var1, *var2; *var1++ = *--var2; AVR C 9 2 LD R16,-X ST Z+,R16 Auto (local

More information

行业

行业 PCL-1800 PCL-1800 1.1...2 1.1.1 1K FIFO...2 1.1.2...2 1.1.3 16...3 1.1.4...3 1.1.5...3 1.1.6...3 1.2...3 1.3...4 1.4...5 2.1...5 2.2...6 2.2.1...6 2.2.2...6 2.2.3 D/A...7 2.2.4...7 2.2.5 TRIG0 GATE0...8

More information

USB解决方案.ppt

USB解决方案.ppt USB USB? RS232 USB USB HID U modem ADSL cable modem IrDA Silabs USB CP210x USB UART USB RS-232 USB MCU 15 USB 12 FLASH MCU 3 USB MCU USB MCU C8051F32x 10 ADC 1.5%, Vref CPU 25MIPS 8051 16KB Flash -AMUX

More information

2_dvdr3380_97_CT_21221b.indd

2_dvdr3380_97_CT_21221b.indd 64 65 66 ALL 3 67 a STANDBY-ON 2 a b c d e f g h i j k l b TIMER c SYSTEM-MENU d e SELECT f REC g. > h TOP MENU i ANGLE j RETURN k SUBTITLE l REC MODE 68 m n REC SOURCE o DISC-MENU p OK q EDIT r PLAYÉ

More information

untitled

untitled XILINX Platform Cbale USB www.hseda.com ...... Platform Cable USB Compatible.................. impact.........1 platform Cable USB Compatible.........1...1...1...1...1...1 Platform Cable USB Compatible

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

C/C++ - 函数

C/C++ - 函数 C/C++ Table of contents 1. 2. 3. & 4. 5. 1 2 3 # include # define SIZE 50 int main ( void ) { float list [ SIZE ]; readlist (list, SIZE ); sort (list, SIZE ); average (list, SIZE ); bargragh

More information

r_09hr_practical_guide_kor.pdf

r_09hr_practical_guide_kor.pdf PRACTICAL GUIDE TO THE EDIROL R-09HR 3 4 PRACTICAL GUIDE TO THE EDIROL R-09HR 5 Situation 1 6 1 2 3 PRACTICAL GUIDE TO THE EDIROL R-09HR WAV MP3 WAV 24 bit/96 khz WAV 16 bit/44.1 khz MP3 128 kbps/44.1

More information

untitled

untitled Sartorius LMA200PM LMA200PM 8%100% 40120 GLP LMA200PM 2 3 3 4 6 9 16 18 24 26 28 28 29 30 30 32 LMA200PM LMA200PM LMA200PM 22kg LMA200PM LMA200PM LMA200PM LMA200PM 20 1 pin sartorius sartorius LMA200PM

More information

摘 要 文 德 甲 新 村 (Kampung Suria Mentakab), 位 于 彭 亨 中 部, 属 于 淡 馬 魯 市 所 管 辖 她 距 离 淡 马 鲁 市 区 约 11 公 里, 而 距 离 而 连 突 大 约 50 公 里 文 德 甲 新 村 路 口 外 就 是 文 德 甲 市 区,

摘 要 文 德 甲 新 村 (Kampung Suria Mentakab), 位 于 彭 亨 中 部, 属 于 淡 馬 魯 市 所 管 辖 她 距 离 淡 马 鲁 市 区 约 11 公 里, 而 距 离 而 连 突 大 约 50 公 里 文 德 甲 新 村 路 口 外 就 是 文 德 甲 市 区, UTAR NEW VILLAGE COMMUNITY PROJECT REPORT NAME OF NEW VILLAGE: KAMPUNG SURIA MENTAKAB PAHANG Project carried out by: Student Name Student ID Course Year / Semester 1. Tiang Min Yao 10ABB06950 Accounting

More information

VX2753mh-LED-1_UG_KRN.book

VX2753mh-LED-1_UG_KRN.book ViewSonic VX2753mh-LED LCD Display Model No. : VS13918 ...1...2 RoHS...3...4...4...5...5...6 LCD...7 OSD...7...8...10...15...16...17 LCD...18...19 ViewSonic VX2753mh-LED FCC FCC 15.. (1), (2). FCC 15 B..,,..

More information

<4D6963726F736F667420576F7264202D20C4CFBEA9D0C2B0D9A3A8363030363832A3A9A3BAC7C9BDB3BFAAB3F6BAC3D3F1C0B4A3ACB9D8D7A2D2B5CEF1BDE1B9B9B5F7D5FBA3BBCDB6D7CAC6C0BCB6A1B0BDF7C9F7CDC6BCF6A1B12E646F63>

<4D6963726F736F667420576F7264202D20C4CFBEA9D0C2B0D9A3A8363030363832A3A9A3BAC7C9BDB3BFAAB3F6BAC3D3F1C0B4A3ACB9D8D7A2D2B5CEF1BDE1B9B9B5F7D5FBA3BBCDB6D7CAC6C0BCB6A1B0BDF7C9F7CDC6BCF6A1B12E646F63> 巧 匠 开 出 好 玉 来, 关 注 业 务 结 构 调 整 公 司 调 研 南 京 新 百 (600682) 投 资 评 级 : 谨 慎 推 荐 2009-11-27 市 场 数 据 2009 年 11 月 26 日 当 前 价 格 ( 元 ) 9.46 52 周 价 格 区 间 ( 元 ) 4.48-10.59 总 市 值 ( 百 万 ) 3389.72 流 通 市 值 ( 百 万 ) 2835.22

More information

Table of Contents Design Concept 03 Copyrights & TradeMark 04 Special Notice 05 Notice to concerned 05 Installation and Registration Introduction 07 s

Table of Contents Design Concept 03 Copyrights & TradeMark 04 Special Notice 05 Notice to concerned 05 Installation and Registration Introduction 07 s MapAsia MapKing TM User Guide Full Function Version (Pocket PC and PC) For Microsoft Pocket PC/ Pocket PC 2002/2003 Microsoft Windows XP/2000/Me/98 Edition 2004 ( : ) 2002-2004, MapAsia.com Limited Table

More information

1 4 1.1 4 1.2..4 2..4 2.1..4 3.4 3.1 Java.5 3.1.1..5 3.1.2 5 3.1.3 6 4.6 4.1 6 4.2.6 5 7 5.1..8 5.1.1 8 5.1.2..8 5.1.3..8 5.1.4..9 5.2..9 6.10 6.1.10

1 4 1.1 4 1.2..4 2..4 2.1..4 3.4 3.1 Java.5 3.1.1..5 3.1.2 5 3.1.3 6 4.6 4.1 6 4.2.6 5 7 5.1..8 5.1.1 8 5.1.2..8 5.1.3..8 5.1.4..9 5.2..9 6.10 6.1.10 Java V1.0.1 2007 4 10 1 4 1.1 4 1.2..4 2..4 2.1..4 3.4 3.1 Java.5 3.1.1..5 3.1.2 5 3.1.3 6 4.6 4.1 6 4.2.6 5 7 5.1..8 5.1.1 8 5.1.2..8 5.1.3..8 5.1.4..9 5.2..9 6.10 6.1.10 6.2.10 6.3..10 6.4 11 7.12 7.1

More information

Contents

Contents PISO-PS400 (Version 3.1) PISO-PS400 1 Warranty All products manufactured by ICPDAS Inc. are warranted against defective materials for a period of one year from the date of delivery to the original purchaser.

More information

KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone,

KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone, KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone, respectively, and has been certified by the developer

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

untitled

untitled 0755 85286856 0755 82484849 路 4.5V ~5.5V 流 @VDD=5.0V,

More information

Chapter 2 GIGA-BYTE TECHNOLOGY CO., LTD. ("GBT") GBT GBT GBT

Chapter 2 GIGA-BYTE TECHNOLOGY CO., LTD. (GBT) GBT GBT GBT Chapter 2 GIGA-BYTE TECHNOLOGY CO., LTD. ("GBT") GBT GBT GBT 2004 5 31-1 - 1.... 3 1.1....3 1.2. GV-R80P256D/GV-R80P256V...3 2.... 4 2.1....4 2.2....5 2.3....6 3.... 8 3.1. Win XP...8 3.1.1....8 3.1.2.

More information

SA-DK2-U3Rユーザーズマニュアル

SA-DK2-U3Rユーザーズマニュアル USB3.0 SA-DK2-U3R 2007.0 2 3 4 5 6 7 8 System Info. Manual Rebuild Delete RAID RAID Alarm Rebuild Rate Auto compare Temp Management Load Default Elapse time Event Log 0 2 3 4 2 3 4 ESC 5

More information

GH1220 Hall Switch

GH1220 Hall Switch Unipolar Hall Switch - Medium Sensitivity Product Description The DH220 is a unipolar h all switch designed in CMOS technology. The IC internally includes a voltage regulator, Hall sensor with dynamic

More information

行业

行业 PCI-1710 1.1...2 1.1.1...2 1.1.2...2 1.1.3 FIFO( )...2 1.1.4...2 1.1.5...2 1.1.6 16 16...3 1.1.7...3 1.2...3 1.3...3 2.1...3 2.2...4 2.2.1...4 2.2.2...5 2.3...9 2.3.1...10 2.3.2... 11 2.3.3...12 2.3.4...12

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

untitled

untitled \ \ \ DOP11B 06/2011 16929837 / ZH SEW-EURODRIVE Driving the world 1 5 1.1 5 1.2 5 1.3 6 1.4 6 1.5 6 1.6 6 1.7 6 2 7 2.1 7 2.2 7 2.3 8 2.4 8 2.5 8 2.6 9 2.7 / 11 2.8 11 2.9 11 2.10 11 2.11 12 3 (DOP11B-10

More information

Leica S S 2

Leica S S 2 Leica S Leica S S 2 www.leica-microsystems.com (S ) ( ) S 3 (1) S 4 Leica S S ( ) 10 cm S S 5 ( ) Leica S ( ) S 6 ( ) Leica S ( ) S 7 2 3 4 5 8 Leica S 11 12 13 S 14 15 ( ) 17 18 19 20 21 22 23 Leica LED

More information

Huawei Technologies Co

Huawei Technologies Co Testbench Preliminary itator 1 TESTBENCH... 3 2 TESTBENCH... 3 2.1 Testbench... 3 2.2... 4 2.2.1 HDL... 4 2.2.2... 5 2.2.3 PLI... 5 2.3... 6 2.4... 6 2.4.1... 6 2.4.2... 7 3 TESTBENCH... 9 3.1 2-4... 9

More information

LSC操作说明

LSC操作说明 1 C H R I S T A L P H A 1-4 LSC 型 Part. No. 102041 A L P H A 2-4 LSC 型 Part. No. 10204 冷 冻 干 燥 机 操 作 说 明 新 研 制 的 LSC-8 控 制 器, 具 备 图 形 显 示 功 能, 能 以 数 据 表 形 式 显 示 参 数, 并 可 选 配 控 制 软 件 LSC-8 1/4 VGA 大 屏 幕

More information

untitled

untitled A, 3+A printf( ABCDEF ) 3+ printf( ABCDEF ) 2.1 C++ main main main) * ( ) ( ) [ ].* ->* ()[] [][] ** *& char (f)(int); ( ) (f) (f) f (int) f int char f char f(int) (f) char (*f)(int); (*f) (int) (

More information

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Ác Åé å Serial ATA ( Silicon Image SiI3114) S A T A (1) SATA (2)

More information