Microsoft Word - ha0359t

Size: px
Start display at page:

Download "Microsoft Word - ha0359t"

Transcription

1 文件編碼 :AN0359T 概述 BC66F8x0 是一款整合 MCU + 2.4GHz RF Transceiver 的 SIP, 透過 SPI 傳輸方式在 RF Transceiver 與主控 MCU 之間進行控制與資料的交換 由於是 RF Transceiver, 所以可進行無線的雙向傳輸, 可適用於多種家電 電腦週邊 玩具等的無線搖控 本範例介紹利用 BC66F8x0 Demo Board 及 Ddemo Code 的 API, 以便使用者修改 Demo Code 主程式進行應用方案的開發 BC66F8x0 Demo board 主要分成三部分 : 1. PC 端 GUI 應用程式 : 透過 USB 與 Demo Board 進行通訊 2. Main Board: 包含 USB 晶片 LCM Display 按鍵及電源處理 3. BC66F8x0 模組 :BC66F860 晶片及天線 BC66F8x0 Demo Board 方塊圖 1

2 BC66F8x0 功能描述 本範例功能分成 USB Mode 及 Stand Alone Mode USB Mode 透過 PC 的 USB 下 Command 給 BC66F8x0 做 RF 的調試及驗證 Init : 對 RF 做基本的設定 Continuous PTX : 連續發射 Continuous PRX : 連續接收 Carrier Signal : Carrier 連續發射 Standby-I : RF 進入 Standby I Mode Standby-II : RF 進入 Standby II Mode Power-Down : RF 進入 Power Down Mode BER Test : Rx Sensitivity Test ( 須搭配可傳送 PN9 Code 的 RF 訊號產生器 ) RF Transfer : RF Transfer Test ( 須 2 套 Demo Board) Stand Alone Mode 可切換成 Master 和 Slave 兩種 兩片板子透過 RF 傳輸互顯示按鍵及電位計電壓狀態 Note: 當兩片 Demo board 互傳資料時 1. 會自動配對 2. 底層 F/W 已經 Implement 自動跳頻機制 (FHSS) 可避免干擾 2

3 檔案說明 Project 名稱 BC66F8x0 Demo.pjtx File List 檔案名稱 main.c radio.c hal_bc.c hal_button.c hal_adc.c hal_lcm.c hal_i2c.c hal_mem.asm hal_spi.asm table.asm vector.asm 說明 demo code 的主程式 Tx/Rx 及頻率 hopping 處理程式 RF control 的相關副程式讀取 Button Status 讀取 ADC 的值 LCM display 處理程式 I 2 C Slave 處理程式 MCU memory 處理程式 RF SPI 處理程式 RF 初始表及 LCM 顯示字串 Table 表 MCU 中斷向量表 HT-IDE3000 編譯設定注意事項 編譯選擇 Holtek C Compiler V3/Assembler 配置選項 VDDIO/GPIO selection : VDDIO SPI : Enable SPI CSEN : Enable 編譯參數的選項要有以下選項 組合語言區分大小寫 將未初始化的全域變數, 全域 / 局部靜態變數默認值設為 0 3

4 參數說明 main.c 參數類型 參數名稱 說明 uint8 radio_transm_dat RF 傳輸 buffer uint8 radio_transm_period_counter RF 傳輸間隔時間 (ms) uint8 radio_pairing_temp_addr master/slave 配對的 address uint16 radio_link_timeout RF data loss 的時間計時 (ms) radio.c 參數類型 參數名稱 說明 uint8 radio_status_var radio 模式 (IDLE/TX_ACTIVE/RX_ACTIVE) uint8 radio_address radio TX/RX 的 address radio_operate_t radio_sts radio 的狀態旗標 typedef union { uint8 value; struct { uint8 max_rt : 1; /* 中斷旗標 */ uint8 tx_ds : 1; /* 中斷旗標 */ uint8 rx_dr : 1; /* 中斷旗標 */ uint8 sync_on : 1; /*channel 同步旗標 */ uint8 tx_active : 1; /*PTX 工作旗標 */ uint8 tx_success : 1; /*PRX 工作旗標 */ uint8 pairing_enable : 1; uint8 rx_power_high : 1; }bits; }radio_operate_t; uint8 Payloadwidth 讀出 RX FIFO 的資料長度 uint8 TxPayloadBuffer 要寫入 TX FIFO 的 buffer uint8 RxPayloadBuffer 讀出 RX FIFO 的 buffer uint8 radio_sync_period channel 同步時間計時 uint8 radio_timeout_counter radio TX/RX timer out 時間 hal_i2c.c 參數類型 參數名稱 說明 hal_i2c_operate_t i2c_operate_flag i2c 工作的相關旗標 typedef union { uint8 value; struct { uint8 trans_work : 1; /*I2C 工作旗標 */ const uint8 : 2; uint8 mode : 1; /*I2C R/W 旗標 */ uint8 first_byte : 1; uint8 slave_transm : 1; /*Slave 傳送資料旗標 */ uint8 slave_busy : 1; /*Slave 忙錄旗標 */ uint8 addr_match : 1; /*Slave address 旗標 */ } bits; } hal_i2c_operate_t; uint8 i2c_buffer_index i2c 讀寫 buffer 的 pointer uint8 i2ctxbuffer i2c 寫入的 buffer uint8 i2crxbuffer i2c 讀出的 buffer 4

5 函數列表 main.c 函數型態 函數名稱 說明 void timer0_init(void) 設定 timer 0 為 1ms 計時器 void DelayXmSec(uint8 xs) 250us 單位的延遲 radio.c 函數型態 函數名稱 說明 void radio_param_init(void) 初始化 radio 相關參數 void radio_timer_period_init(void) 設定 timer 2 為 channel 間隔時間計時器 void radio_rx_start(void) 啟動 radio 成 Rx 模式 void radio_rx_fifo_read(void) 讀取 RF 的 Rx FIFO uint8 radio_tx_data(uint8 len) 啟動 radio 成 Tx 模式,len = payload length void radio_new_tx_data(uint8 chmd) 啟動 RF 開始傳送一筆資料 void reload_tries_pr_channel_counter(void) 設定在一個 channel 上要 retry 的次數 void Radio_ISR(void) RF 的中斷處理程式 void radio_timer_period_isr(void) RF timer period 中斷處理程式 hal_bc.c 函數型態 函數名稱 說明 void hal_bc_spi_irq_init(void) 設定 MCU 的 SPI 連接 RF void hal_bc_init(void) RF 基本的初始化 void hal_bc_bank1init(void) RF bank 1 的初始化 void hal_bc_bank1register(uint8 idx) 寫入 RF bank 1 的暫存器 void hal_bc_activatefrature(void) 啟動 RF dynamic payload length/payload with ACK 等功能 void hal_bc_operationmode(uint8 mode) 設定 RF 的 TX/RX 模式 void hal_bc_powermode(uint8 mode) 設定 RF power up/power down void hal_bc_outputpower(uint8 power) 設定 RF 的輸出功率 void hal_bc_datarate(uint8 dr) 設定 RF 傳輸的速率 (250K/1M/2M) void hal_bc_rfchannel(uint8 ch) 設定 RF 的工作頻率 void hal_bc_setaddress(uint8 pipe,uint8 addr[]) 設定 TX/RX 的 address void hal_bc_auto_retr(uint8 retr,uint8 delay) 設定 TX Auto Retransmission Delay 及 counter void hal_bc_regsbanksw(uint8 b) 讀寫 bank0/bank1 暫存器的切換 void hal_bc_pulsece(void) RF 的 CE PIN 產生約 16us 的高脈波訊號 5

6 hal_spi.asm 函數型態 函數名稱 說明 uint8 Read_Register(uint8 addr) 讀取 RF bank 0 的暫存器 void Write_Register(uint8 addr,uint8 data) 寫入 RF bank 0 的暫存器 uint8 Read_Status(void) 讀取狀態暫存器 uint8 Reuse_Payload(void) reuse TX FIFO uint8 Flush_TxFIFO(void) 清除 TX FIFO uint8 Flush_RxFIFO(void) 清除 RX FIFO uint8 GetRxPayloadWidth(void) 讀取 RX payload 的長度 void Write_Activate(uint8 value) 寫入 RF Activate command void Write_ACK_Payload(uint8 width) 將 payload 資料寫入 TX FIFO (W_TX_PAYLOAD command) void Write_NACK_Payload(uint8 width) 將 payload 資料寫入 TX FIFO (W_TX_PAYLOAD_NOACK command) void Write_RxACK_Payload (uint8 pipe, uint8 width) 將 payload 資料寫入 TX FIFO (W_ACK_PAYLOAD command) void Read_Rx_Payload(uint8 width) 讀取 RF FIFO 資料 void WriteBank1Register(uint8 idx) 寫入 RF bank 1 暫存器 hal_i2c.c 函數型態 函數名稱 說明 void hal_i2c_init(void) 初始化 i2c 功能 void MultiFunction4_ISR(void) i2c 中斷處理程式 函數使用說明 RF Power-On 初始化 _clkoen = TRUE; /* 打開 16MHZ 的 clock 到 RF IC*/ hal_bc_spi_irq_initial(); /* 初始化 RF IC 的 SPI*/ hal_bc_bank1initial(); /* 初始化 RF IC bank1 暫存器 */ radio_param_initial(); /* 初始化 radion 所有參數 */ radio_timer_period_initial(); /* 初始化每個 channel 間隔時間計時 */ hal_bc_init() /* 初始化 RF bank 0 暫存器 */ a. hal_bc_init() 函數會讀取 _BC2422ConfigTable 表的資料對 RF IC 做初始化 b. 函數會清空 RF IC 內的 TX/RX FIFO 及所有中斷的狀態 c. Table 表的格式 high byte = register address, low byte = initial data _BC2422ConfigTable: DW CONFIG_REGS SHL 8) B ;EN_CRC=1,CRCO=2,PWR_UP=1,PTX DW (EN_AA_REGS SHL 8) B ;Enable Auto Acknowledgment DW (EN_RXADDR_REGS SHL 8) B ; 設定 RX active register DW SETUP_AW_REGS SHL 8) + 03H ;Address Widths = 5 byte DW SETUP_RETR_REGS SHL 8) B ;ReTransmit Delay=2336us ;ReTransmit Count=4 void hal_bc_operationmode(uint8 mode) /* 設定 RF 的工作模 */ hal_bc_operationmode(hal_ptx); /**< Primary TX operation */ hal_bc_operationmode(hal_prx); /**< Primary RX operation */ 6

7 void hal_bc_powermode(uint8 mode) hal_bc_powermode(hal_pwr_down); /**< Device power-down */ hal_bc_powermode(hal_pwr_up); /**< Device power-up */ * 在做 power-up/power-down 時, 請注意 _clkoen control 的設定 void hal_bc_outputpower(uint8 power) /* 設定 RF 輸出功率 */ power level0~3 共有 4 階 hal_bc_outputpower(0); /**< Output power set to min */ hal_bc_outputpower(3); /**< Output power set to max */ void hal_bc_datarate(uint8 dr) /* 設定 RF 傳輸速率 */ hal_bc_datarate(hal_250kbps); /**< Datarate set to 250 kbps*/ hal_bc_datarate(hal_1mbps); /**< Datarate set to 1 Mbps */ hal_bc_datarate(hal_2mbps); /**< Datarate set to 2 Mbps */ void hal_bc_rfchannel(uint8 ch) /* 設定 RF 工作頻率 */ 工作頻率 ch = 2400MHZ~2527MHZ(0~127) void hal_bc_setaddress(uint8 pipe, uint8 addr[]) /* 設定 RF 封包傳輸的地址 */ a. TX/RX 的 address 長度可以是 3~5byte, 由暫存器 SETUP_AW (Setup of Address Widths, address=0x03) 設定 b. TX/RX0/RX1 address 長度可以是 3~5byte, 而 RX2~5 只能設定 1byte,byte1~4 會共用 RX1 的 Address = 0x8295E5DC6E; radio_address[0] = 0x6E; radio_address[1] = 0xDC; radio_address[2] = 0xE5; radio_address[3] = 0x95; radio_address[4] = 0x82; hal_bc_setaddress(hal_tx_addr,radio_address); hal_bc_setaddress(hal_rx_pipe0,radio_address); /**< Refer to TX address*/ /**< Refer to RX0 address*/ 7

8 uint8 radio_tx_data(uint8 len) /* RF 進入傳輸模式 (PTX) */ a. 首先將要傳送的資料搬到 TxPayloadBuffer 在呼叫 radio_tx_data() 的副程式 b. 呼叫 radio_tx_data() 後 radio_status_var = TX_ACTIVE 模式 c. 當 radio_status_var 再次等於 IDLE 模式 表示已經停止傳送資料, 這時可以檢查 radio_sts.bits.tx_success 旗標,0: 表示傳送失敗 1: 表示傳送成功 /* 將資料 copy 到 TxPayloadBuffer */ memorycopy((txpayloadbuffer,radio_transm_data,4); radio_tx_data(4); /* 呼叫發射程式, 長度 =4 byte*/ while(radio_status_var!= RADIO_IDLE); /* 等待資料傳送完畢 */ if(radio_sts.bits.tx_success) /* 判斷傳送是否成功 */ { 傳送成功 } Else { 傳送失敗 } RF 進入接收模式 (PRX) a. 首先呼叫 radio_rx_start() 進入接收模式 b. 再來呼叫 radio_rx_fifo_read() 檢查是否有收到資料, 如果有收到資料會將資料放在 RxPayloadBuffer[] 中 radio_rx_start(); /** 啟動 RX 模式 */ radio_rx_fifo_read(); /** 檢查 RX FIFO */ if(payloadwidth) /* 檢查是否有資料 */ { memorycopy((uint8 *)radio_transm_data,(uint8 *)RxPayloadBuffer,payloadwidth); /* 將資料 copy 出來 */ } void Write_ACK_Payload(uint8 width) /* 寫入一筆資料到 RF 的 FIFO */ a. 這個函數會隨著暫存器 EN_AA(Enable Auto Acknowledgment, 0x01) 的設定而定 EN_AA = 1 則會接收 ACK 訊號,EN_AA = 0 是不會接收 ACK 訊號 b. 呼叫此函數時需先將發射資料放於 TxPayloadBuffer 中 /* 將資料 copy 到 TxPayloadBuffer */ memorycopy((txpayloadbuffer,radio_transm_data,8); Write_ACK_Payload(8); /* 將資料寫入 TX FIFO */ Auto Acknowledgment Enable Cycles 8

9 void Write_NACK_Payload(uint8 width) /* 寫入一筆資料到 RF 的 FIFO */ a. 這個函數必須啟動 Feature Register(0x1D) 的 EN_DYN_ACK 時才有用 b. 這個函數會不會隨著暫存器 EN_AA(Enable Auto Acknowledgment, 0x01) 的設定而定 一律不會接收 ACK 訊號 c. 呼叫此函數時需先將發射資料放於 TxPayloadBuffer 中 /* 將資料 copy 到 TxPayloadBuffer */ memorycopy((txpayloadbuffer,radio_transm_data,8); Write_NACK_Payload(8); /* 將資料寫入 TX FIFO */ void Write_RxACK_Payload(uint8 pipe, uint8 width) / * 寫入一筆資料到 RF 的 FIFO */ a. 此函數屬於 PRX 模式在 ACK 時一起將資料傳送給 TX b. 這個函數必須啟動 Feature Register(0x1D) 的 EN_ACK_PAY 時才有用 c. 參數中的 pipe 所指定的是 6 組接收 address 中的其中一組 d. 呼叫此函數時需先將發射資料放於 TxPayloadBuffer 中 /* 將資料 copy 到 TxPayloadBuffer */ memorycopy((txpayloadbuffer,radio_transm_data,8); Write_RXACK_Payload(8); /* 將資料寫入 TX FIFO */ 在 PRX 中的 PAY 既是用 Write_RXACK_Payload 所寫入的資料 9

10 時序圖 Transmitting One Packet with NO_ACK On Transmitting One Packet with ACK On 10

Cost_Effective C Handbook

Cost_Effective C Handbook BC66F8x0 RF Transceiver Demo Code Description 文件编码 :AN0359S 概述 BC66F8x0 是一款集成 MCU + 2.4GHz RF Transceiver 的 SIP, 通过 SPI 传输方式在 RF Transceiver 与主控 MCU 之间进行控制与数据的交换 由于是 RF Transceiver, 所以可进行 无线的双向传输, 可适用于多种家电

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

bingdian001.com

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

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

untitled

untitled XZL024 http://item.taobao.com/item.htm?id=6321822194 1 1 1.1 1.2 1.3 1.4 2 2.1 2.2 2.3 3 USBee Suite 3.1 3.2 3.3 3.4 4 RS232 RS485 RS422 CAN http://item.taobao.com/item.htm?id=6321822194 2 1 XZL024 PC

More information

MICROCHIP EVM Board : APP APP001 PICmicro Microchip APP001 40pin PDIP PICmicro Design Tips Character LCM Temperature Sensor Application I/O Pi

MICROCHIP EVM Board : APP APP001 PICmicro Microchip APP001 40pin PDIP PICmicro Design Tips Character LCM Temperature Sensor Application I/O Pi MICROCHIP EVM Board : APP001 1-1. APP001 PICmicro Microchip APP001 40pin PDIP PICmicro Design Tips Character LCM Temperature Sensor Application I/O Pin 16 I/O Extension Interface 1-2. APP001 Block_A Block_B

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

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

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

Microsoft Word - Delta Controller ASCII_RTU_TC

Microsoft Word - Delta Controller ASCII_RTU_TC Delta Controller ASCII/RTU ( 適用台達變頻器 伺服驅動器 PLC 溫度控制器 ) 人機預設值通訊速率 :9600, 7, None, 2 (ASCII); 9600, 8, None, 2 (RTU) 控制器站號 :1 控制區 / 狀態區 :None/None 控制器接線的說明 Delta Servo a. RS-232(DOP-A/AE/AS, DOP-B 系列適用 )

More information

邏輯分析儀的概念與原理-展示版

邏輯分析儀的概念與原理-展示版 PC Base Standalone LA-100 Q&A - - - - - - - SCOPE - - LA - - ( Embedded ) ( Skew ) - Data In External CLK Internal CLK Display Buffer ASIC CPU Memory Trigger Level - - Clock BUS Timing State - ( Timing

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

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor 1 4.1.1.1 (Load) 14 1.1 1 4.1.1.2 (Save) 14 1.1.1 1 4.1.2 (Buffer) 16 1.1.2 1 4.1.3 (Device) 16 1.1.3 1 4.1.3.1 (Select Device) 16 2 4.1.3.2 (Device Info) 16 2.1 2 4.1.3.3 (Adapter) 17 2.1.1 CD-ROM 2 4.1.4

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

Microsoft Word - CMU200 WCDMA 手機測試步驟.doc

Microsoft Word - CMU200 WCDMA 手機測試步驟.doc 所有測試基於 3GPP TS34.121 CMU200 WCDMA 手機測試步驟 CMU200 測試前的設置 1. 按 Reset 鍵初始化 CMU200 2. 按 Menu Select 鍵, 選擇 WCDMA FDD Signaling 3. 按 BS Signal 軟鍵 ( 螢幕下部 X 軸 ), 進入 Node-B Settings, 選擇 Level Reference, 設置 Output

More information

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

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

WLAN 2

WLAN 2 1 WLAN 2 IEEE 802.11 HomeRF GSM/ GPRS CDMA 3 ( ) (Infrared) (Laser) (Microwave) (DSSS) (FHSS) (HomeRF) (Bluetooth) 4 ( ) IrDA (Direct-Beam IR, DB/ IR) (Diffuse IR, DF/ IR) (Ominidirectional IR, Omini/

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

775i65PE_BIOS_CN.p65

775i65PE_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date [ 14:00:09] [Wed 10/20/2004] BIOS Version : 775i65PE BIOS P1.00 Processor Type : Intel (R) CPU 3.20 GHz Processor Speed : 3200

More information

Microsoft Word - LD5515_5V1.5A-DB-01 Demo Board Manual

Microsoft Word - LD5515_5V1.5A-DB-01 Demo Board Manual Subject LD5515 Demo Board Model Name (5V/1.5A) Key Features Built-In Pump Express TM Operation Flyback topology with PSR Control Constant Voltage Constant Current High Efficiency with QR Operation (Meet

More information

untitled

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

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

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

2015年莆田一青会射箭资格赛.xls

2015年莆田一青会射箭资格赛.xls 70(1) 70(2) 10's X's 70(1) 70(2) 10's X's 70(1) 70(2) 10's X's 70(1) 70(2) 10's X's 10's X's 10's X's 10's X's 1/4 1/2 1 659 7 6 [25,21,27,27,26] 7 [24,26,28,26] 6 [27,29,28] 2 656 9 6 [25,28,28,28,27]

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

初始化A7121

初始化A7121 Document Title 433MHz Band Reference Code for Direct mode (100Kbps, 100KIF) Revision History Rev. No. History Issue Date Remark 0.0 Preliminary Nov. 7, 2012 Important Notice: AMICCOM reserves the right

More information

Application Note Format

Application Note Format USB 說 2 - AD PWM Office: 6F, No. 12, Innovation 1st. RD., Science-Based Industrial Park, Hsin-Chu City, Taiwan, R.O.C Tel: +886-3-6661766 ext.1672 Fax: +886-3-6661765 Etoms Electronics Corp. Publication

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

初始化A7121

初始化A7121 Document Title A7106 reference code for FIFO mode Revision History Rev. No. History Issue Date Remark 0.1 Preliminary Sep. 15, 2010 Important Notice: AMICCOM reserves the right to make changes to its products

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

版本说明书

版本说明书 i CHGM-36M * CHGM-36C * CHGM-130M CHGM-130C CHGM-120M * CHGM-120C * CHGC-120M CHGC-120C CHGC-300M CHGC-300C CHGM-530M-1 CHGM-530C-1 CHGM-600C CHGM-600M-1 * CHGM-600M CHGC-30M CHGC-30C CHGM-230 CHGM-230C

More information

FM1935X智能非接触读写器芯片

FM1935X智能非接触读写器芯片 FM3316/3315 MCU 2017.06 FM3316/3315 MCU 2.21 (http://www.fmsh.com/) FM3316/3315 MCU 2.22 ... 3 1... 4 2... 5 2.1... 5 2.2... 5 2.3... 6 2.3.1... 6 2.3.2... 6 2.4... 9 2.5... 10 2.5.1 LQFP64... 10 2.5.2

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

行业

行业 PCI-1711/1711L 1.1...2 1.1.1...2 1.1.2...2 1.1.3 FIFO...2 1.1.4...2 1.1.5 16 16...3 1.2...3 2.1...3 2.2...3 2.2.1... 2.2.2...8 2.3...10 2.3.1...10 2.3.2... 11 2.3.3...12 2.3.4...13 2.4.5...14 3.1...16

More information

FM1935X智能非接触读写器芯片

FM1935X智能非接触读写器芯片 FM33A0xx MCU 2017. 05 2.0 1 (http://www.fmsh.com/) 2.0 2 ... 3 1... 4 1.1... 4 1.2... 4 1.3... 5 1.3.1... 5 1.3.2... 5 1.4... 8 1.4.1 LQFP100... 8 1.4.2 LQFP80... 9 1.4.3... 9 2... 15 2.1 LQFP100... 15

More information

第十章 3G手机的电路原理分析及维修实例

第十章    3G手机的电路原理分析及维修实例 10 1 1 PAD PCBA MIC RF Power *#06# *#06# PE 100 PCS 1 2 10 2 1 2 1 PIN 10.2 1 1 10.2 1 10.1 1 10.2 2 10.2 2 OK 10.2 3 10.2 3 2 A 1 A ( ) 2 1PCS 1PCS A 10.2 4 2 10.2 4 OK 10.2 5 10.2 5 PIN 3 DOME 1 DOME

More information

P4Dual-915GL_BIOS_CN.p65

P4Dual-915GL_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date Total Memory DIMM 1 DIMM 2 [ 14:00:09] [Wed 01/05/2005] BIOS Version : P4Dual-915GL BIOS P1.00 Processor Type : Intel (R) Pentium

More information

Microsoft PowerPoint - C_Structure.ppt

Microsoft PowerPoint - C_Structure.ppt 結構與其他資料型態 Janet Huang 5-1 結構的宣告 struct 結構名稱 struct 結構名稱變數 1, 變數 2,, 變數 m; struct 結構名稱 變數 1, 變數 2,, 變數 m; student; student; 5-2 1 結構變數初值的設定 struct 結構名稱 struct 結構名稱變數 = 初值 1, 初值 2,, 初值 n student="janet","1350901",100,95

More information

USB - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - DES Module FSM CONTROLLER 8 6 8 Key ROM 8 8 Data_in RAM Data_out RAM 8 USB Board - 8 - - 9 - - 10 - - 11 - - 12 - USB device INF Windows INF Device Function

More information

投影片 1

投影片 1 2 理 1 2-1 CPU 2-2 CPU 理 2-3 CPU 類 2 什 CPU CPU Central Processing Unit ( 理 ), 理 (Processor), CPU 料 ( 例 ) 邏 ( 例 ),, 若 了 CPU, 3 什 CPU CPU 了, 行, 利 CPU 力 來 行 4 什 CPU 5 2-2-1 CPU CPU 了 (CU, Control Unit) / 邏

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

初始化A7121

初始化A7121 Document Title 433MHz Band Reference Code for FIFO mode (250Kbps) Revision History Rev. No. History Issue Date Remark 0.0 Preliminary Nov. 7, 2012 Important Notice: AMICCOM reserves the right to make changes

More information

SL2511 SR Plus 操作手冊_單面.doc

SL2511 SR Plus 操作手冊_單面.doc IEEE 802.11b SL-2511 SR Plus SENAO INTERNATIONAL CO., LTD www.senao.com - 1 - - 2 - .5 1-1...5 1-2...6 1-3...6 1-4...7.9 2-1...9 2-2 IE...11 SL-2511 SR Plus....13 3-1...13 3-2...14 3-3...15 3-4...16-3

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

行业

行业 PCI-1716/1716L 1.1...2 1.1.1...2 1.1.2 / /SD*/BU*...2 1.1.3 FIFO( )...2 1.1.4...2 1.1.5 16 16...3 1.1.6...3 1.1.7 ID...3 1.2...3 2.1...3 2.2...4 2.2.1...4 2.2.2...6 2.3... 11 2.3.1... 11 2.3.2...12 2.3.3...13

More information

C PICC C++ C++ C C #include<pic.h> C static volatile unsigned char 0x01; static volatile unsigned char 0x02; static volatile unsigned cha

C PICC C++ C++ C C #include<pic.h> C static volatile unsigned char 0x01; static volatile unsigned char 0x02; static volatile unsigned cha CYPOK CYPOK 1 UltraEdit Project-->Install Language Tool: Language Suite----->hi-tech picc Tool Name ---->PICC Compiler Executable ---->c:hi-picinpicc.exe ( Command-line Project-->New Project-->File Name--->myc

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

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

1 Project New Project 1 2 Windows 1 3 N C test Windows uv2 KEIL uvision2 1 2 New Project Ateml AT89C AT89C51 3 KEIL Demo C C File

1 Project New Project 1 2 Windows 1 3 N C test Windows uv2 KEIL uvision2 1 2 New Project Ateml AT89C AT89C51 3 KEIL Demo C C File 51 C 51 51 C C C C C C * 2003-3-30 pnzwzw@163.com C C C C KEIL uvision2 MCS51 PLM C VC++ 51 KEIL51 KEIL51 KEIL51 KEIL 2K DEMO C KEIL KEIL51 P 1 1 1 1-1 - 1 Project New Project 1 2 Windows 1 3 N C test

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

33 8 No.8Vol.33 JOURNALOF NEIJIANG NORMAL UNIVERSITY MHz-RFID 1, 1, 2, 1, 1 1, * (1., ; 2., ) : 433 MHz, STM MHz, 433MHz,,.,,.

33 8 No.8Vol.33 JOURNALOF NEIJIANG NORMAL UNIVERSITY MHz-RFID 1, 1, 2, 1, 1 1, * (1., ; 2., ) : 433 MHz, STM MHz, 433MHz,,.,,. 33 8 No8Vol33 JOURNALOF NEIJIANG NORMAL UNIVERSITY 53 433MHz-RFID 1 1 2 1 1 1 * (1, 362000; 2, 362000) : 433 MHz, STM32 433MHz, 433MHz,,,,, : ; ; ; DOI:1013603/jcnki51-1621/z201808009 :TP277 :A :1671-1785(2018)08-0053-06,,

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

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

51 C 51 isp 10 C PCB C C C C KEIL

51 C 51 isp 10   C   PCB C C C C KEIL http://wwwispdowncom 51 C " + + " 51 AT89S51 In-System-Programming ISP 10 io 244 CPLD ATMEL PIC CPLD/FPGA ARM9 ISP http://wwwispdowncom/showoneproductasp?productid=15 51 C C C C C ispdown http://wwwispdowncom

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

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

KL DSC DEMO 使用说明

KL DSC DEMO 使用说明 :0755-82556825 83239613 : (0755)83239613 : http://www.kingbirdnet.com EMAIL Good989@163.com 1 1 KB3000 DTU... 3 1.1... 3 1.2... 3 1.3... 3 1.4... 3 2... 4 2.1 GSM/GPRS... 4 2.2... 4 2.3... 5 2.4... 6 2.5...

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

2 : ; :

2 : ; : 4 CH 1 2 : ; : 1 2 2 3 3 4 4 5 5 6 1 6 2 8 3 11 6 13 1 13 2 14 14 1 15 2 16 3 17 4 18 5 22 6 23 7 24 7 CF 32 8 46 9 : 80GB HD 48 3 3 1 : 4 / / 4 9 2 CHANNEL 1 : 1 3 CHANNEL 2 : 2 4 CHANNEL 3 : 3 5 CHANNEL

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

安全防范

安全防范 8989 Be Right TM Sigma 900 5/03 2003 ...1...4...8 1.1...8 1.2...9 1.2.1...9 1.2.2...12 1.3...12 1.4...12 1.4.1...12 1.4.2...13 1.4.3...14 1.5...15 1.6...16 1.7...16 1.7.1...17 1.7.2...17 1.7.3...18 1.7.4

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

1 CPU

1 CPU 2000 Tel 82316285 82317634 Mail liuxd@buaa.edu.cn 1 CPU 2 CPU 7 72 A B 85 15 3 1/2 M301 2~17 : 3/4 1/2 323 IBM PC 1. 2. 3. 1. 2. 3. 1.1 Hardware Software 1.2 M3 M2 M1 1.2 M3 M1 M2 M2 M1 M1 M1 1.2 M3 M1

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

ARM Cortex-M3 (STM32F) STMicroelectronics ( ST) STM32F103 Core: ARM 32-bit Cortex -M3 CPU 72 MHz, 90 DMIPS with 1.25 DMIPS/MHz Single-cycle multiplica

ARM Cortex-M3 (STM32F) STMicroelectronics ( ST) STM32F103 Core: ARM 32-bit Cortex -M3 CPU 72 MHz, 90 DMIPS with 1.25 DMIPS/MHz Single-cycle multiplica CP Chip Power ARM Cortex-M3 (STM32F) ARM Cortex-M3 (STM32F) STMicroelectronics ( ST) STM32F103 Core: ARM 32-bit Cortex -M3 CPU 72 MHz, 90 DMIPS with 1.25 DMIPS/MHz Single-cycle multiplication and hardware

More information

SAPIDO GR-1733 無線寬頻分享器

SAPIDO GR-1733 無線寬頻分享器 1 版 權 聲 明... 4 產 品 保 固 說 明... 4 保 固 期 限... 4 維 修 辦 法... 5 服 務 條 款... 5 注 意 事 項... 6 低 功 率 電 波 輻 射 性 電 機 管 理 辦 法... 6 CE 標 誌 聲 明... 6 無 線 功 能 注 意 事 項... 6 1 產 品 特 點 介 紹... 7 1.1 LED 指 示 燈 功 能 說 明... 8 1.2

More information

LCD模組之應用

LCD模組之應用 液晶顯示幕 LCD 模組之應用 第十三章 2018/11/30 例說 89S51-C 語言 13-1 本章內容 2018/11/30 例說 89S51-C 語言 13-2 1 液晶顯示幕 LCD 之日常應用 3 https://s.yimg.com/hg/pimg2/ae/60/p099374833664-item-2330xf2x0600x0600-m.jpg 液晶顯示幕 LCD 之日常應用 4

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

a b c d e f g C2 C1 2

a b c d e f g C2 C1 2 a b c d e f g C2 C1 2 IN1 IN2 0 2 to 1 Mux 1 IN1 IN2 0 2 to 1 Mux 1 Sel= 0 M0 High C2 C1 Sel= 1 M0 Low C2 C1 1 to 2 decoder M1 Low 1 to 2 decoder M1 High 3 BCD 1Hz clk 64Hz BCD 4 4 0 1 2 to 1 Mux sel 4

More information

CA-C750К

CA-C750К 1 3 3 4 PC 4 USB 5 5 6 8 9 11 mediasync Manager?...13 mediasync Manager 15 25 38 39 41 41 DRM...44 Image Manager...44 47 49 49 50 50 51 51 51 52 / 52 A-B 53 MP3 53 /FM 54 FM 55 FM 55 BMP56 56 57 57 58

More information

2001/07/13 DST4600A DST4600A

2001/07/13 DST4600A DST4600A 2001/07/13 DST4600A 1... 1 1.1... 1 2 DST4600A... 1 2.1... 1 2.1.1... 1 2.1.2... 2 2.1.3... 2 2.1.4... 2 2.1.5... 3 2.1.6... 3 2.1.7... 3 2.1.8... 3 2.1.9... 4 2.1.10... 4 2.2... 4 2.2.1... 4 2.2.2...

More information

untitled

untitled DOP www.deltaww.com DOP (RS232/RS485/ RS422) DOP USB SD 30 100 PLC Best Performance Huma Beautiful Display Beneficial Feature 1 DOP LED 65536 2D n Machine Interface s 2 DOP-B DOP-B 4.3 inches Wide B03S211

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

ebook20-8

ebook20-8 8 Catalyst 5000 7 V L A N C a t a l y s t V L A N V L A N 8.1 VLAN VTP V L A N A VLAN VLAN 10 VLAN 20 VLAN 10 VLAN 20 B VLAN VLAN 10 VLAN 20 VLAN 10 C VLAN VLAN 10 VLAN 20 VLAN 10 VLAN 20 8-1 VLAN 8 Catalyst

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

技 术 支 持 电 话 1.800.283.5936 1.801.974.3760 传 真 1.801.977.0087 电 子 邮 件 网 址 CONVERGE PRO 880/880T/840T/8i, CON

技 术 支 持 电 话 1.800.283.5936 1.801.974.3760 传 真 1.801.977.0087 电 子 邮 件 网 址  CONVERGE PRO 880/880T/840T/8i, CON CONVERGE PRO 880 880T 840T 8i TH20 CONVERGE SR 1212 专 业 会 议 系 统 安 装 和 操 作 手 册 技 术 支 持 电 话 1.800.283.5936 1.801.974.3760 传 真 1.801.977.0087 电 子 邮 件 tech.support@clearone.com 网 址 www.clearone.com CONVERGE

More information

LK110_ck

LK110_ck Ck 电子琴 LK110CK1A Ck-1 1. 2. 1. 2. 3. (+) ( ) Ck-2 1. 2. 3. * 1. 2. 3. Ck-3 Ck-4 LCD LCD LCD LCD LCD LCD 15 * * / MIDI Ck-5 100 50 100 100 100 1 2 MIDI MIDI Ck-6 ... Ck-1... Ck-6... Ck-8... Ck-9... Ck-10...

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

45,000 40,000 30,000 24,794 30,587 15,000 7,573 9,970 13,589 18,849 0 IT 9, % 15.3% IC 3.2% 32.3% 17.9% 9.9% 21.4%

45,000 40,000 30,000 24,794 30,587 15,000 7,573 9,970 13,589 18,849 0 IT 9, % 15.3% IC 3.2% 32.3% 17.9% 9.9% 21.4% IT IT IT 280,000 IT IT 7.8% 519,320 IT IT IT30,587 23.4% IT 4-66 - 45,000 40,000 30,000 24,794 30,587 15,000 7,573 9,970 13,589 18,849 0 IT 9,877 32.3% 15.3% IC 3.2% 32.3% 17.9% 9.9% 21.4% - 67 - 15 500,000

More information

TRILITHIC 860DSP / 860DSPi 860 DSP 1. SSR & RSVP +20dBmV +80dBuV -20dBmV~~+20dBmV dBmV +110dBuV -40dBmV~~+50dBmV 3. TEL: (020) FAX: (0

TRILITHIC 860DSP / 860DSPi 860 DSP 1. SSR & RSVP +20dBmV +80dBuV -20dBmV~~+20dBmV dBmV +110dBuV -40dBmV~~+50dBmV 3. TEL: (020) FAX: (0 TRILITHIC 860DSP / 860DSPi 860 DSP & 860 DSPi 2006 11 TEL: (020) 8359 2585 FAX: (020) 8762 7750 www.gzlingyu.com.cn 1 TRILITHIC 860DSP / 860DSPi 860 DSP 1. SSR & RSVP +20dBmV +80dBuV -20dBmV~~+20dBmV 2.

More information

1

1 磁軌式讀卡機 1288 系列 使用手冊 Version 1.0 1 2 3 4 5 6 7 8 9 10 11 12 1288 MSR Micro controller : With Decoder Open Visual COM port to read data (UART Interface) From 1288 Or direct control 1288 by sending Command

More information

宏电文档

宏电文档 GPRS DDN 〇〇 1. GPRS (General Packet Radio Service) GSM GSM GPRS GSM TDMA (BSS) GPRS GPRS GPRS DDN GSM/GPRS SMS CSD USSD GPRS (DTU) (Machine To Machine M2M) GPRS DDN H7112 GPRS DTU (Tel): +86-755-83890580

More information

Tastensymbole / utton icons / Icônes de touches / Simboli dei tasti / Símbolos de las teclas / Toetssymbolen / Símbolos dos botões / Символы кнопок /

Tastensymbole / utton icons / Icônes de touches / Simboli dei tasti / Símbolos de las teclas / Toetssymbolen / Símbolos dos botões / Символы кнопок / SR 2000 IEM SR 2050 IEM 使用说明 Tastensymbole / utton icons / Icônes de touches / Simboli dei tasti / Símbolos de las teclas / Toetssymbolen / Símbolos dos botões / Символы кнопок / 按键图标 Taste STANDY / STANDY

More information

xx ZZZ SDLA 串 行 数 据 链 路 分 析 在 线 帮 助 *P077021601* 077-0216-01 ZZZ SDLA 串 行 数 据 链 路 分 析 在 线 帮 助 www.tektronix.com 077-0216-01 Copyright Tektronix. 保 留 所 有 权 利 许 可 软 件 产 品 由 Tektronix 其 子 公 司 或 提 供 商 所 有,

More information

初始化A7121

初始化A7121 Document Title 470~510MHz Band Reference Code for FIFO mode (10Kbps) Revision History Rev. No. History Issue Date Remark 0.0 Preliminary Jan. 5, 2011 Important Notice: AMICCOM reserves the right to make

More information

沒有投影片標題

沒有投影片標題 EE110300 Lecture 11 (Wireless Communications Systems) Dr. Tsai Contents Dr. Tsai 2 Dr. Tsai ( ) (RF) (Antenna) m(t) m(t) Dr. Tsai 4 90 50 40 30 20 10 0 ( ) 10 Dr. Tsai 5 300 330 0 30 60 270 90 240 210

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

投影片 1

投影片 1 資料庫管理程式 ( 補充教材 -Part2) 使用 ADO.NET 連結資料庫 ( 自行撰寫程式碼 以實現新增 刪除 修改等功能 ) Private Sub InsertButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles InsertButton.Click ' 宣告相關的 Connection

More information

Ch03_嵌入式作業系統建置_01

Ch03_嵌入式作業系統建置_01 Chapter 3 CPU Motorola DragonBall ( Palm PDA) MIPS ( CPU) Hitachi SH (Sega DreamCast CPU) ARM StrongARM CPU CPU RISC (reduced instruction set computer ) CISC (complex instruction set computer ) DSP(digital

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

1-1 SH79F6431 A. 2( ) 9~15V ( 12V) U2 U3 3.3V SH79F B. 1(VCC/GND) SH79F6431 C. VDDIO SH79F6431 P4 P5 P0.6 P0.7 VDDIO VDDIO=5V D. 2 V 1.0

1-1 SH79F6431 A. 2( ) 9~15V ( 12V) U2 U3 3.3V SH79F B. 1(VCC/GND) SH79F6431 C. VDDIO SH79F6431 P4 P5 P0.6 P0.7 VDDIO VDDIO=5V D. 2 V 1.0 SH79F6431 1. SH79F6431 1T 8051 FLASH SH79F JET51 Keil µ vision JTAG 1.1. SH79F6431 LQFP64 1.2. (Target Board) SH79F6431 1 V 1.0 1-1 SH79F6431 A. 2( ) 9~15V ( 12V) U2 U3 3.3V SH79F6431 1 2 1 B. 1(VCC/GND)

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

untitled

untitled CPU!! 00-11-8 Liping zhang, Tsinghua 1 : ADD(r1, r, r) CMPLEC(r, 5, r0) MUL(r1, r, r) SUB(r1, r, r5) ADD r, ( ) r CMP. CMP r.. t t + 1 t + t + t + t + 5 t + 6 IF( ) ADD CMP MUL SUB RF NOP ADD CMP MUL SUB

More information

... 2 SK SK Command KA 9000 COM... 9 SK / SK / Autolock SK

... 2 SK SK Command KA 9000 COM... 9 SK / SK / Autolock SK SK 9000 ... 2 SK 9000... 4... 4... 5 SK 9000... 7... 9 Command KA 9000 COM... 9 SK 9000... 10 / SK 9000... 10 / Autolock... 12... 13... 14 SK 9000... 17... 18... 19... 19... 20 SK 9000... 20 ZH RU PT NL

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

, 7, Windows,,,, : ,,,, ;,, ( CIP) /,,. : ;, ( 21 ) ISBN : -. TP CIP ( 2005) 1

, 7, Windows,,,, : ,,,, ;,, ( CIP) /,,. : ;, ( 21 ) ISBN : -. TP CIP ( 2005) 1 21 , 7, Windows,,,, : 010-62782989 13501256678 13801310933,,,, ;,, ( CIP) /,,. : ;, 2005. 11 ( 21 ) ISBN 7-81082 - 634-4... - : -. TP316-44 CIP ( 2005) 123583 : : : : 100084 : 010-62776969 : 100044 : 010-51686414

More information