Microsoft Word - mcu-an z-10.doc

Size: px
Start display at page:

Download "Microsoft Word - mcu-an z-10.doc"

Transcription

1 富士通微电子 ( 上海 ) 有限公司应用笔记 MCU-AN Z-10 F²MC-8FX 家族 8 位微控制器 MB95200H/210H 系列 基本 FW 设置 应用笔记

2 变更履历 基本 FW 设置 V1.0 变更履历 日期作者修正记录 Lori.Li V1.0, 第一版 本文档由 40 页构成 1. 本文档记载的产品信息及规格说明如有变动, 恕不预先通知 如需最新产品信息和 / 或规格说明, 联系富士通销售代表或富士通授权经销商 2. 基于本文档记载信息或示意图的使用引起的对著作权 工业产权或第三方的其他权利的侵害, 富士通不承担任何责任 3. 未经富士通明文批准, 不得对本文档的记载内容进行转让 拷贝 4. 本文档所介绍的产品并不旨在以下用途 : 需要极高可靠性的设备, 诸如航空航天装置 海底中继器 核控制系统或维系生命的医用设施 5. 本文档介绍的部分产品可能是 外汇及外贸管理法 规定的战略物资 ( 或专门技术 ), 出口该产品或其中部分元件前, 应根据该法获得正式批准 版权 2008 富士通微电子 ( 上海 ) 有限公司版权所有 MCU-AN Z-10 第 2 页

3 目录 目录 变更履历目录 1 概要 2 初始化程序 变更履历... 2 目录... 2 概要... 2 初始化程序 初始化堆栈 SP 和 DP 设置... 2 中断向量 中断向量 3.1 中断级 中断处理函数原型 向量定义 默认中断处理 示例... 2 时钟控制器 时钟控制器 4.1 时钟控制器的概要 时钟控制器的框图 寄存器... 2 时钟模式选择 时钟模式选择 5.1 介绍 主要特征 主时钟 副时钟 主 CR 时钟 副 CR 时钟 时钟分频比... 2 待机模式选择 待机模式选择 6.1 主要特征 待机模式和时钟供给状态 时钟模式和待机模式的组合 休眠模式 介绍... 2 MCU-AN Z-10 第 3 页

4 目录 休眠模式下的操作 转换和解除 停止模式 介绍 停止模式下的操作 转换和解除 时基定时器模式 介绍 时基定时器模式下的操作 转换和解除 计时模式 介绍 计时模式下的操作 转换和解除 待机模式转换代码... 2 附加信息... 2 附录 附加信息 8 附录 8.1 图一览 样本代码 工程 1 名称 : Basic_Initialization 工程 2 名称 : Clock_Change 工程 3 名称 : Mode_Change... 2 MCU-AN Z-10 第 4 页

5 1 概要 基本 FW 设置 V1.0 第 1 章概要 本应用笔记介绍如何启动富士通 F 2 MC-8FX 家族 MB95200H/210H 系列的基本 FW 设置 本应用笔记介绍初始化程序 堆栈指针 (SP) 和直接寄存器组指针 (DP) 设置 时钟控制和待机控制 MCU-AN Z-10 第 5 页

6 2 初始化程序 基本 FW 设置 V1.0 第 2 章初始化程序 启动文件 startup.asm 是复位执行后的进入点 该文件包含编译器和器件操作的多个设置, 并且初始化堆栈和变量初始值 2.1 初始化堆栈 启动 MCU 时, 必须初始化堆栈, 并在堆栈区设置堆栈容量和区域 初始化样本代码 : //Sample code for initialization //definition to stack area.section STACK, STACK, ALIGN=1.RES.B STACK_TOP:.RES.B 2 注 : 以上代码从 start.asm 截取 详情参照附录 2.2 SP 和 DP 设置 SP 和 DP 是专用寄存器 堆栈指针 (SP) 是 16 位寄存器 该堆栈指针保持中断 / 子程序调用 入栈 / 出栈指令等的参考地址 复位后的初始值是 "0000H" DP 代表直接组指针 程序状态 (PS) 寄存器的 10~8 位的直接组指针 (DP) 用于指定直接寻址访问的地址区 初始化样本程序 : // set the stack pointer MOVW MOVW A, #STACK_TOP SP, A // Set Register bank Pointer 0 / set Direct bank Pointer 0 (0x80...0xFF) // The PS register consists of the register bank pointer (RP), direct // pointer (DP), and condition code register (CCR). MOVW A, PS MOVW A, #0x07FF // RP=0, DP=0, I=0 ANDW MOVW A PS, A 注 : 以上代码从 start.asm 截取 详情参照附录 MCU-AN Z-10 第 6 页

7 3 中断向量 基本 FW 设置 V1.0 第 3 章中断向量 启动基本 FW 设置时, 必须初始化中断向量 vector.c 是给用户提供的 C 文件 该 C 文件包含中断级和中断号声明及其默认中断处理程序, 也可初始化对应的中断控制寄存器 3.1 中断级 在文件 vector.c 中, 首先定义了中断级函数 void InitIrqLevels (void): void InitIrqLevels (void) ILR0 = 0Xff // IRQ0: external interrupt ch.4 --> 01 // IRQ1: external interrupt ch.5 --> 01 // IRQ2: external interrupt ch.2/ch.6 --> 01 // IRQ3: external interrupt ch.3/ch.7 --> 注 : 以上代码从 vector.c 截取 详情参照附录 该函数的功能是初始化中断控制寄存器 中断控制寄存器定义各中断通道的中断级 FF 代表最低的优先级 3.2 中断处理函数原型 中断处理程序的函数原型在中断级初始化后声明 : interrupt void DefaultIRQHandler (void) // Add your own prototypes here like above. 注 : 以上代码从 vector.c 截取 详情参照附录 3.3 中断向量定义 中断向量表与中断处理函数相对应 对于未使用的中断, 请使用默认中断处理程序 : #pragma intvect DefaultIRQHandler 0 //IRQ0: external interrupt ch.4 #pragma intvect DefaultIRQHandler 1 //IRQ1: external interrupt ch.5 #pragma intvect DefaultIRQHandler 2 //IRQ2: external interrupt ch.2/ch.6 #pragma intvect DefaultIRQHandler 3 //IRQ3: external interrupt ch.3/ch.7 注 : 以上代码从 vector.c 截取 详情参照附录 MCU-AN Z-10 第 7 页

8 3.4 默认中断处理程序 基本 FW 设置 V1.0 第 3 章中断向量 默认中断处理函数在 vector.c 文件的最后列出 该函数停止系统的运行 为了方便程序调试, 在此设置断点以检测未初始化的中断 默认中断处理程序的样本代码 : //default interrupt handler interrupt void DefaultIRQHandler (void) 注 : 以上代码从 vector.c 截取 详情参照附录 3.5 示例 DI (); While (1) wait_nop (); 在使用中断时需要修改中断向量表, 例如, 将外部中断 ch4 设置为 key_in, 请修改 vector.c 中的代码 #pragma intvect Key_in 1 // IRQ0: external interrupt ch4 注 : 以上代码从 vector.c 截取 详情参照附录 中断级定义 : // defines the interrupt levels void InitIrqLevels (void) ILR0=0xFC // IRQ0: external interrupt ch.4 --> Level 00 // IRQ1: external interrupt ch.5 --> 01 // IRQ2: external interrupt ch.2 ch.6 --> 01 // IRQ3: external interrupt ch.3 ch.7 --> // elide the following code 注 : 以上代码从 vector.c 截取 详情参照附录 在文件 main.c 中, 添加中断处理函数为 interrupt void Key_Int (void) //interrupt response function _interrupt void Key_int (void) // key_int external interrupt ch.4 // enter your interrupt handler function(s) here 注 : 以上代码从 vector.c 截取 详情参照附录 // disable interrupts // halt system MCU-AN Z-10 第 8 页

9 第 4 章时钟控制器 4 时钟控制器 本节介绍时钟控制器的功能和操作 4.1 时钟控制器的概要 F 2 MC-8FX 家族产品内置降低功耗的时钟控制器 该家族产品既有支持外部主时钟和外部副时钟的双外部时钟产品又有支持外部主时钟的单外部时钟产品 时钟控制器具有以下功能 : 使能 / 禁止时钟振荡 使能 / 禁止内部电路的时钟信号供给 选择时钟源 控制内部 CR 振荡器和分频电路 4.2 时钟控制器的框图 图 时钟控制器的框图 MCU-AN Z-10 第 9 页

10 4.3 寄存器 基本 FW 设置 V1.0 第 4 章时钟控制器 时钟控制器由 4 个寄存器构成 : 系统时钟控制寄存器 (SYCC) 待机控制寄存器 (STBC) 系统时钟控制寄存器 2 (SYCC2) 和振荡稳定等待时间设置寄存器 (WATR) 详情参照 MCU MB95200H/210H 系列硬件手册的第 6 章 图 显示的是系统时钟控制寄存器 (SYCC) 的配置 该寄存器用于控制机器时钟分频比选择 Address bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 Initial value 0007 H SRDY - DIV1 DIV0 0000X011 B R0/WX R0/WX R0/WX R0/WX R/WX R0/WX R/W R/W 图 系统时钟控制寄存器 (SYCC) 的配置 图 显示的是振荡稳定等待时间设置寄存器 (WATR) 的配置 该寄存器用于设置振荡稳定等待时间 Address bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 Initial value 0005 H SWT3 SWT2 SWT1 SWT0 MWT3 MWT2 MWT1 MWT B R/W R/W R/W R/W R/W R/W R/W R/W 图 振荡稳定等待时间设置寄存器 (WATR) 的配置 图 显示待机控制寄存器 (STBC) 的配置 该寄存器用于控制从运行状态到休眠模式 停止模式 时基定时器模式或计时模式的转换 该寄存器还设置停止 时基定时器和计时模式下的引脚状态, 并控制软件复位的发生 Address bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 Initial value 0008 H STP SLP SPL SRST TMD SCRDY MCRDY MRDY 00000XXX B R0/W R0/W R/W R0/W R0/W R/WX R/WX R/WX 图 待机控制寄存器 (STBC) 图 显示的是系统时钟控制寄存器 2 (SYCC2) 的配置 该寄存器用于显示和切换当前时钟模式, 控制副时钟 主时钟 副 CR 时钟 主 CR 时钟和主时钟振荡 Address bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 Initial value 000D H RCM1 RCM0 RCS1 RCS0 SOSCE MOSCE SCRE MCRE B R/WX R/WX R/W R/W R/W R/W R/W R/W 图 系统时钟控制寄存器 2 (SYCC2) 的配置 R/W: 可读 / 可写 ( 读值与写值相同 ) R/WX: 只读 ( 可读, 写操作无效 ) R0/WX: 未定义位 ( 读值为 0, 写值无效 ) R0/W: 只写 ( 可写, 读 0 ) MCU-AN Z-10 第 10 页

11 第 5 章时钟模式选择 5 时钟模式选择 5.1 介绍 可使用 4 个时钟 ( 主时钟 副时钟 主 CR 时钟和副 CR 时钟 ) 进行各种分频选择 ( 外部单时钟产品仅有 3 个时钟 ) 5.2 主要特征 5.3 主时钟 可选主时钟源 外部主时钟 ( 频率高达 32.5 MHz 且最大机器时钟频率为 MHz) 内部主 CR 时钟 (1/8/10/12.5 MHz) 可选副时钟源 外部副时钟 ( khz) 副 OSC 时钟 ( khz) 内部副 CR 时钟 ( 典型 100 khz, 最小 50 khz, 最大 200 khz) 内部时钟是主 CR 时钟 (8 MHz) 主时钟是外部主时钟 外部时钟的最大频率为 32.5 MHz, 最大机器时钟频率为 MHz 可修改 SYCC2_MOSCE 以使能主时钟 修改 SYCC2_RCS 以选择主时钟模式 修改 WATR 以改变振荡稳定等待时间并检测 STBC_MRDY 以表明主时钟振荡是否稳定 若将 WATR 设置为 0x0F, 振荡稳定等待时间则为 (2 14-2)/F CH, 约 4.10 ms 以下代码显示如何操作主时钟, 具体包括使能主时钟 转换为主时钟模式 更新振荡稳定等待时间 等待振荡稳定 // enable the Main clock oscillation SYCC2_MOSCE = 1; // Clock Mode Selection, select the main clock mode SYCC2_RCS0 = 0x01; SYCC2_RCS1 = 0x01; //update Oscillation Stabilization Wait Time //when Main Oscillation Clock F CH =4MHz WATR = 0X0F; // Oscillation Stabilization Wait Time mean // (2 14-2)/F CH About 4.10 ms While (!STBC_MRDY);//Indicates main clock oscillation being stable 注 : 以上代码从工程 Clock_Change 截取 详情参照附录 MCU-AN Z-10 第 11 页

12 5.4 副时钟 基本 FW 设置 V1.0 第 5 章时钟模式选择 副时钟是外部副时钟 外部副时钟的最大频率为 khz, 相应地副时钟频率为 khz 可更新 SYCC2_SOSCE 以使能副时钟 更新 SYCC2_RCS 以选择副时钟模式 更新 WATR 以改变振荡稳定等待时间 检测 SYCC_SRDY 以表明副时钟振荡是否稳定 若将 WATR 设置为 0xF0, 则振荡稳定等待时间为 (2 15-2)/F CL, 约 1.00 s 以下代码显示如何操作副时钟, 具体包括如何使能副时钟 转换到副时钟模式 修改振荡稳定等待时间和等待振荡稳定 // enable the sub-clock oscillation SYCC2_ SOSCE = 1; // Clock Mode Selection, select the sub-clock mode SYCC2_RCS0 = 0x01; SYCC2_RCS1 = 0x00; //Update the Oscillation Stabilization Wait Time // when sub Oscillation Clock F CL = khz WATR = 0xF0; //(2 15-2)/F CL About 1.00s while (!SYCC_SRDY); //Indicates sub-clock oscillation being stable 注 : 以上代码从工程 Clock_Change 截取 详情参照附录 MCU-AN Z-10 第 12 页

13 5.5 主 CR 时钟 基本 FW 设置 V1.0 第 5 章时钟模式选择 主 CR 时钟有 4 种内部主时钟频率选择 : 1 MHz 8 MHz 10 MHz 和 12.5 MHz 更新 NVR 可改变主 CR 时钟 可更新 SYCC2_MCRE 以使能主 CR 时钟 更新 SYCC2_RCS 以选择主 CR 时钟模式 检测 STBC_MCRDY 以表明主 CR 时钟振荡是否稳定 以下代码显示如何操作主 CR 时钟, 具体包含如何使能主 CR 时钟 转换到主 CR 时钟模式 更新振荡稳定等待时间和等待振荡稳定的 //change the main CR clock frequency MOV A, 0x0FE4; //READ CRTH for NVR trimming value protect AND A, #0x9F; //Just CLEAR CRTH [6:5] OR A, #0x60; //Main CR clock update to 8MHz //Can update the Main CR clock as below setting //0x00: 1MHz; 0x20: 12.5MHz; 0x40: 10MHz; 0x60: 8MHz MOV 0x0FE4, A; //WRITE CRTH to enable the update // enable the main CR clock oscillation SYCC2_ MCRE = 1; // Clock Mode Selection, select the main CR clock mode SYCC2_RCS0 = 0x00; SYCC2_RCS1 = 0x01; //update the Oscillation Stabilization Wait Time //F CRHS represents the main clock frequency //2 8 /F CRHS = Main CR oscillation Stabilization Wait Time while(!stbc_mcrdy);//indicates main CR clock oscillation being stable 注 : 以上代码是从 project1 start.asm 和工程 Clock_Change 截取的 详情参照附录 振荡稳定等待时间根据 CR 启动时序变化 主 CR 振荡稳定等待时间 = 2 8 /F CRHS. F CRHS 代表主 CR 时钟频率 MCU-AN Z-10 第 13 页

14 5.6 副 CR 时钟 基本 FW 设置 V1.0 第 5 章时钟模式选择 副 CR 时钟是内部单时钟 该时钟的典型时钟频率为 100 khz 最小频率为 50 khz 最大频率为 200 khz 可更新 SYCC2_SCRE 以使能副 CR 时钟 更新 SYCC2_RCS 以选择副 CR 时钟模式 检测 STBC_SCRDY 以表明副 CR 时钟振荡是否稳定 以下代码显示如何操作副 CR 时钟, 具体包含如何使能副 CR 时钟 改变副 CR 时钟模式 更新振荡稳定等待时间和等待振荡稳定 // enable the Sub-CR Clock oscillation SYCC2_ SCRE = 1; // Clock Mode Selection, select the Sub-CR Clock mode SYCC2_RCS0 = 0x00; SYCC2_RCS1 = 0x00; //update the Oscillation Stabilization Wait Time //F CRHS represents the main clock frequency //2 4 /F CRL = Sub-CR oscillation Stabilization Wait Time while (!STBC_SCRDY); //Indicates sub-cr clock oscillation being stable 注 : 上记代码从工程 Clock_Change 中截取 详情参照附录 振荡稳定等待时间根据 CR 启动时序变化 主 CR 振荡稳定等待时间 = 2 4 /F CRL. F CRL 代表副 CR 时钟频率 5.7 时钟分频比 机器时钟由源时钟根据分频比生成 可通过设置 SYCC_DIV 分频源时钟 若设置 SYCC_DIV 为 0x11, 则 16 分频源时钟 以下代码显示如何设置时钟分频比 : //source clock can be main clock divided by 2, sub-clock divided by 2, //sub-cr clock divided by 2 or main CR clock no div SYCC_DIV = 0x00; // Source clock (No division) // SYCC_DIV = 0x01 mean Source clock/4 // SYCC_DIV = 0x02 mean Source clock/8 // SYCC_DIV = 0x03 mean Source clock/16 注 : 以上代码从工程 Clock_Change 截取 详情参照附录 MCU-AN Z-10 第 14 页

15 6 待机模式选择 基本 FW 设置 V1.0 第 6 章待机模式选择 待机模式包含 4 种模式 : 休眠模式 时基定时器模式 计时模式和停止模式 时钟控制器选择允许或禁止时钟振荡和根据待机模式为内部电路供给时钟 除时基定时器模式和计时模式以外, 待机模式的设置可与时钟模式无关 6.1 主要特征 低功耗模式 ( 待机模式 ) 停止模式 休眠模式 计时模式 时基定时器模式 初始模式 正常工作状态 6.2 待机模式和时钟供给状态 待机模式休眠模式时基定时器模式 计时模式 停止模式 时钟供给状态 停止为 CPU 供给时钟 其结果是 CPU 停止运行但其他外设功能继续运行 停止为其他电路提供时钟, 仅为时基定时器和计时预分频器提供时钟信号 其结果为除时基定时器 计时预分频器 外部中断和低压检测复位 ( 选项 ) 以外的其他功能都停止运行 时基定时器模式是主时钟模式和主 CR 时钟模式的唯一待机模式 停止主时钟振荡, 停止为其他电路提供时钟但为计时预分频器提供时钟信号 其结果为除计时预分频器 外部中断和低压检测复位 ( 选项 ) 以外的功能都停止运行 计时模式是副时钟模式和副 CR 时钟模式的唯一待机模式 停止主时钟振荡 副时钟振荡和全部时钟信号的供给 其结果为除外部中断和低压检测复位 ( 选项 ) 以外的全部功能都停止 图 待机模式和时钟供给状态 MCU-AN Z-10 第 15 页

16 6.3 时钟模式和待机模式的组合 基本 FW 设置 V1.0 第 6 章待机模式选择 图 列出了时钟模式和待机模式组合及其相应的内部电路工作状态 详情参照 MCU MB95200H/210H 系列硬件手册的第 6 章 图 待机模式和时钟模式的组合和内部工作状态注 : 到时钟模式的转换完成后再设置待机模式 MCU-AN Z-10 第 16 页

17 第 6 章待机模式选择 6.4 休眠模式 介绍 休眠模式下,CPU 和软件监视定时器停止工作 休眠模式下的操作 休眠模式下,CPU 和软件监视定时器的工作时钟停止运行 在该模式下,CPU 停止但转换到休眠模式前的寄存器和 RAM 的内容将被保留 除监视定时器以外的外设资源继续运行 转换和解除 在待机控制寄存器的休眠位 (STBC: SLP) 写 "1" 可使器件进入休眠模式 以下代码是从运行状态转换到休眠模式时 STBC 的设置 : STBC_SLP = 1; // Causes transition to sleep mode 注 : 上记代码从工程 Mode_Change 截取 请参照附录 器件因复位或外设功能的中断而解除休眠模式 6.5 停止模式 介绍 停止模式下, 主时钟停止工作 停止模式下的操作 停止模式下, 主时钟 主 CR 时钟和副时钟停止工作 在该模式下, 器件停止除外部中断和低压检测复位以外的全部功能, 但转换到停止模式前的寄存器和 RAM 的内容将被保留 转换和解除 在待机控制寄存器的停止位 (STBC: STP) 写 "1" 可使器件进入停止模式 此时, 待机控制寄存器的引脚状态设置位 (STBC: SPL) 为 "0" 时, 外部引脚的状态被保留 ; 该位为 "1" 时, 外部引脚的状态变为高阻状态 以下代码显示如何转换到停止模式 : STBC_STP = 1; //Causes transition to stop mode 注 : 上记代码从工程 Mode_Change 截取 请参照附录 复位或外部中断使器件退出停止模式 退出停止模式后, 若有必要, 初始化各外设资源 MCU-AN Z-10 第 17 页

18 第 6 章待机模式选择 6.6 时基定时器模式 介绍 时基定时器模式下, 仅主时钟振荡 副时钟振荡 时基定时器和计时预分频器运行 在该模式下,CPU 和外设资源的工作时钟停止运行 时基定时器模式下的操作 在时基定时器模式下, 主时钟仅供给时基定时器 器件停止除时基定时器 外部振荡和电压检测复位以外的全部功能, 但转换到时基定时器模式前的寄存器和 RAM 的内容将被保留 转换和解除 转换到时基定时器模式 : 将 SYCC2_RCS 设置为 0x02 或 0x03 并在待机控制寄存器的计时位 (STBC: TMD) 写 "1" 以下代码显示如何转换到时基定时器模式 : SYCC2_RCS0 = 0x00; SYCC2_RCS1 = 0x01; STBC_TMD = 1; // Causes the device to enter timebase timer mode 注 : 以上代码从工程 Clock_Change 截取 详情参照附录 退出时基定时器模式 : 复位 时基定时器中断或外部中断可使器件退出时基定时器模式 退出时基定时器模式后, 若有必要, 初始化各外设资源 MCU-AN Z-10 第 18 页

19 第 6 章待机模式选择 6.7 计时模式 介绍 计时模式下, 仅副时钟 副 CR 时钟和计时预分频器工作 在该模式下,CPU 和外设资源的工作时钟停止运行 计时模式下的操作 在计时模式下,CPU 和外设资源的工作时钟停止运行 器件停止除计时预分频器 外部中断和低压检测复位以外的全部功能, 但转换到计时模式前的寄存器和 RAM 的内容将被保留 转换和解除 转换到计时模式 : 将 SYCC2_RCS 设置为 0x00 或 0x01 并在待机控制寄存器的计时位 (STBC: TMD) 写 "1" 时钟模式为副时钟模式或副 CR 时钟模式时, 器件才可进入计时模式 SYCC2_RCS0 = 0x00; SYCC2_RCS1 = 0x00; STBC_TMD = 1; // Causes the device to enter watch mode 注 : 以上代码从工程 Mode_Change 截取 详情参照附录 退出计时模式 : 复位 计时中断或外部中断可使器件退出计时模式 退出计时模式后, 若有必要, 初始化各外设资源 MCU-AN Z-10 第 19 页

20 6.8 待机模式转换代码 基本 FW 设置 V1.0 第 6 章待机模式选择 以下代码可实现待机模式间的转换, 例如停止模式 计时模式 可将切换模式更新为所希望的模式 //The following code can realize the transition of the standby mode from //one to another mode, such as a stop mode, a watch mode //The following software is for demonstration purpose only #define switchmode normal //set transition to some standby modes // Can define the switchmode to Stop, Sleep, Watch or Timebase void main (void) MCU_initialization(); while(1) // choice standby mode what you want transition to switch (switchmode) case normal: case stop: STBC_STP = 1; case sleep: STBC_SLP = 1; 注 : 以上代码从工程 Mode_Change 截取 详情参照附录 //normal to stop mode //normal to sleep mode case watch: SYCC2_SOSCE = 1; //Enable Sub Clock SYCC2_RCS0 = 0x01; //Select Sub Clock SYCC2_RCS1 = 0x00; //Select Sub Clock WATR = 0xF0; //About 1.00s Wait Time while (!SYCC_SRDY); //Wait Clock stable STBC_TMD = 1; //normal to watch mode case Timebase: SYCC2_MOSCE = 1; //Enable Main Clock default: SYCC2_RCS0 = 0x01; //Select Main Clock SYCC2_RCS1 = 0x01; //Select Main Clock WATR = 0X0F; // About 4.10ms Wait Time while (!STBC_MRDY); //Wait Clock stable STBC_TMD = 1; //normal to timebase time mode MCU-AN Z-10 第 20 页

21 第 7 章附加信息 7 附加信息 关于富士通微电子更多的产品信息, 请访问以下网站 : MCU-AN Z-10 第 21 页

22 第 8 章附录 8 附录 8.1 图一览 图 时钟控制器的框图... 2 图 系统时钟控制寄存器 (SYCC) 的配置... 2 图 振荡稳定等待时间设置寄存器 (WATR) 的配置... 2 图 待机控制寄存器 (STBC)... 2 图 系统时钟控制寄存器 2 (SYCC2) 的配置... 2 图 待机模式和时钟供给状态... 2 图 待机模式和时钟模式的组合和内部工作状态... 2 MCU-AN Z-10 第 22 页

23 第 8 章附录 8.2 样本代码 工程 1 名称 : Basic_Initialization 名称 : 功能 : 初始化 MCU Start.asm ;========================================================================== ; F 2 MC-8FX Family SOFTUNE C Compiler sample startup routine, ; ALL RIGHTS RESERVED, COPYRIGHT (C) FUJITSU LIMITED 2008 ; LICENSED MATERIAL - PROGRAM PROPERTY OF FUJITSU LIMITED ;========================================================================== ; Sample code for initialization.program start.title start ; variable define declaration ; #define HWD_DISABLE ; if define this, Hard Watchdog will disable. ; external declaration of symbols.export start.import _main.import LMEMTOMEM.IMPORT LMEMCLEAR.IMPORT _RAM_INIT.IMPORT _ROM_INIT.IMPORT _RAM_DIRINIT.IMPORT _ROM_DIRINIT ; definition to stack area.section STACK, STACK, ALIGN=1.RES.B STACK_TOP:.RES.B 2 ; definition to start address of data, const and code section MCU-AN Z-10 第 23 页

24 第 8 章附录.SECTION DIRDATA, DIR, ALIGN=1.SECTION DIRINIT, DIR, ALIGN=1.SECTION DATA, DATA, ALIGN=1.SECTION INIT, DATA, ALIGN=1 ; The Mode Byte is defined at the beginning of the start.asm.section RESVECT, CONST, LOCATE=H'FFFD.DATA.B 0.DATA.W start //code area.section CODE, CODE, ALIGN=1 start: ; set stack pointer MOVW A, #STACK_TOP MOVW SP, A ; Set Register bank Pointer 0 MOVW A, PS MOVW A, #0x07FF // RP=0, DP=0, I=0 ANDW A MOVW PS, A ; Set ILM to the lowest level (3) MOVW A, PS MOVW A, #0x0030 ORW A MOVW PS, A ; copy initial value *CONST (ROM) section to *INIT(RAM) section #macro ICOPY src_addr, dest_addr, src_section MOVW EP, #\src_addr MOVW A, #\dest_addr MCU-AN Z-10 第 24 页

25 第 8 章附录 MOVW A, #SIZEOF(\src_section) CALL LMEMTOMEM #endm ICOPY _ROM_INIT, _RAM_INIT, INIT ICOPY _ROM_DIRINIT, _RAM_DIRINIT, DIRINIT ; zero clear of *VAR section #macro FILL0 src_section MOVW A, #\src_section MOVW A, #SIZEOF (\src_section) CALL LMEMCLEAR #endm FILL0 DIRDATA FILL0 DATA ; call main routine CALL _main End: JMP end ; Hard Watchdog #ifdef HWD_DISABLE.SECTION WDT, CONST, LOCATE=H'FFBE.DATA.W 0xA596 #endif ; reset vector.section RESET, CONST, LOCATE=0xFFFC.DATA.B 0xFF.DATA.B 0.DATA.H start.end start MCU-AN Z-10 第 25 页

26 名称 : vector.c 功能 : 中断级 ( 优先级 ) 设置和中断向量定义 基本 FW 设置 V1.0 第 8 章附录 ;************************************************************************* ; ALL RIGHTS RESERVED, COPYRIGHT (C) FUJITSU LIMITED 2008 ; LICENSED MATERIAL - PROGRAM PROPERTY OF FUJITSU LIMITED /************************************************************************* NAME: vector.c FUNCTION: Interrupt level (priority) setting Interrupt vector definition *************************************************************************/ #include "mb95200.h" ; //This function pre-sets all interrupt control registers. It can be used //to set all interrupt priorities in static applications. If this file // contains assignments to dedicated resources, verify that the appropriate //controller is used. // void InitIrqLevels (void) ILR0 = 0xFC; // IRQ0: external interrupt ch.4 --> Level 00 // IRQ1: external interrupt ch.5 --> 01 // IRQ2: external interrupt ch.2/ch.6 --> 01 // IRQ3: external interrupt ch.3/ ch.7--> 01 ILR1 = 0xFF; // IRQ4: UART/SIO ch.0 // IRQ5: 8/16-bit timer ch.0 (lower) // IRQ6: 8/16-bit timer ch.0 (upper) // IRQ7: LIN-UART (reception) ILR2 = 0xFF; // IRQ8: LIN-UART (transmission) // IRQ9: 8/16-bit PPG ch.1 (lower) / UART/SIO ch.1 // IRQ10: 8/16-bit PPG ch.1 (upper) / I 2 C ch.1 // IRQ11: 16-bit reload timer ch.0 ILR3 = 0xFF; // IRQ12: 8/16-bit PPG ch.0 (upper) // IRQ13: 8/16-bit PPG ch.0 (lower) // IRQ14: 8/16-bit timer ch1 (upper) // IRQ15: 16-bit PPG ch.0 + ch.2 ILR4 = 0xFF; // IRQ16: 16-bit reload timer ch.1 / I 2 C ch.0 // IRQ17: 16-bit PPG ch.1 // IRQ18: 10-biat A/D-converter // IRQ19: Timebase timer ILR5 = 0xFF; // IRQ20: Watch timer / counter MCU-AN Z-10 第 26 页

27 基本 FW 设置 V1.0 第 8 章附录 // IRQ21: external interrupt ch 8-11 // IRQ22: 8/16-bit timer ch1 (lower) / external //interrupt ch // IRQ23: Flash Custom ch.1 // // Prototypes // Add your own prototypes here. Each vector definition needed is a //prototype. Either do it here or include a header file containing them. // //extern unsigned int delay_timer; interrupt void DefaultIRQHandler (void); interrupt void Key_int (void); // //Vector definition //Use the following statements to define vectors. //All resources related to the vectors are predefined. //Remaining software interrupts can be added here as well. // #pragma intvect Key_int 0 //IRQ0: external interrupt ch.4 #pragma intvect DefaultIRQHandler 1 //IRQ1: external interrupt ch.5 #pragma intvect DefaultIRQHandler 2 //IRQ2: external interrupt ch.2 ch.6 #pragma intvect DefaultIRQHandler 3 //IRQ3: external interrupt ch.3 ch.7 #pragma intvect DefaultIRQHandler 5 //IRQ5: 8/16-bit timer ch.0 (lower) #pragma intvect DefaultIRQHandler 6 //IRQ6: 8/16-bit timer ch.0 (upper) #pragma intvect DefaultIRQHandler 7 //IRQ7: LIN-UART (reception) #pragma intvect DefaultIRQHandler 8 //IRQ8: LIN-UART (transmission) #pragma intvect DefaultIRQHandler 14 //IRQ14: 8/16-bit timer ch1 (upper) #pragma intvect DefaultIRQHandler 18 //IRQ18: 10-biat A/D-converter #pragma intvect DefaultIRQHandler 19 //IRQ19: Timebase timer #pragma intvect DefaultIRQHandler 20 //IRQ20:Watchtimer/ counter #pragma intvect DefaultIRQHandler 22 //IRQ22: 8/16-bit timer ch.1 //(lower)/interrupt ch #pragma intvect DefaultIRQHandler 23 //IRQ23: Flash / Custom ch.1 interrupt void DefaultIRQHandler (void) DI (); While (1) wait_nop (); // disable interrupts // halt the system MCU-AN Z-10 第 27 页

28 名称 : Main.c 功能 : 用按键作为外部中断的输入 基本 FW 设置 V1.0 第 8 章附录 /* THIS SAMPLE CODE IS PROVIDED AS IS AND IS SUBJECT TO ALTERATIONS.*/ /*FUJITSU MICROELECTRONICS ACCEPTS NO RESPONSIBILITY OR LIABILITY FOR ANY*/ /*ERRORS OR ELIGIBILITY FOR ANY PURPOSES. */ /* (C) Fujitsu Microelectronics (Shanghai) Co., LTD. */ /* Date: Version: 1V0 Author: Lori */ /* /************************************************************************* NAME: MAIN.C FUNCTION: The following code can realize initialization the MCU The following software is for demonstration purpose only *************************************************************************/ #include "mb95200.h" #define switchmode stop void vsysinit (void) //elide code InitIrqLevels (); EI (); interrupt void Key_int (void) //elide key functions //set transition to some standby modes //include vsysinit(), interrupt and other functions void main (void) vsysinit (); while (1) //enter other test codes MCU-AN Z-10 第 28 页

29 第 8 章附录 工程 2 名称 : Clock_Change 名称 : Main.c 功能 : 选择时钟 时钟模式和时钟分频率 /* THIS SAMPLE CODE IS PROVIDED AS IS AND IS SUBJECT TO ALTERATIONS.*/ /*FUJITSU MICROELECTRONICS ACCEPTS NO RESPONSIBILITY OR LIABILITY FOR ANY*/ /*ERRORS OR ELIGIBILITY FOR ANY PURPOSES. */ /* (C) Fujitsu Microelectronics (Shanghai) Co., LTD. */ /* Date: Version: 1V0 Author: Lori */ /* /************************************************************************* //The following code can realize choose the clock and clock mode //The following software is for demonstration purposes only /************************************************************************** NAME: MAIN.C FUNCTION: Change the system clock and lighten three LED LED flicker frequency different in different clock **************************************************************************/ #include "mb95200.h" #define MAIN #define SUB #define MAIN_CR #define SUB_CR 0x00 0x01 0x02 0x03 unsigned char switchclock = MAIN; unsigned char toggle_status = 0; unsigned char i; //select the start clock //LED change bit /************************************************************************* NAME: FUNCTION: MCU initialization Initialization the IO port, system clock, interrupt level *************************************************************************/ void MCU_initialization() DI(); SYSC = 0x03; /*IO port*/ PDR0_P05=1; DDR0_P05=1; PDR6_P63=1; PDR6_P64=1; DDR6_P63=1; DDR6_P64=1; //Enable output //Enable output //Enable output MCU-AN Z-10 第 29 页

30 第 8 章附录 /*external interrupt*/ EIC30=0x55; //INT06 INT07 enable falling edge MCU-AN Z-10 第 30 页

31 第 8 章附录 /* initialise Interrupt level register and IRQ vector table*/ InitIrqLevels(); EI(); /************************************************************************* NAME: led_display() FUNCTION: Set three LED light cycle one by one *************************************************************************/ void led_display() switch(toggle_status) case 0: //lighten the PDR0_P05 (LED2) PDR0_P05=0; PDR6_P64=1; PDR6_P63=1; toggle_status=1; case 1: //lighten the PDR6_P64 (LED3) PDR0_P05=1; PDR6_P64=0; PDR6_P63=1; toggle_status=2; case 2: //lighten the PDR6_P63 (LED4) PDR0_P05=1; PDR6_P64=1; PDR6_P63=0; toggle_status=0; MCU-AN Z-10 第 31 页

32 第 8 章附录 /************************************************************************* NAME: FUNCTION: vdelay Delay the fix time *************************************************************************/ void vdelay (unsigned int uicount) while(uicount--) asm ("\tnop"); /************************************************************************* NAME: FUNCTION: interrupt void external_int06(void) Change the clock *************************************************************************/ interrupt void external_int06 (void) EIC30_EIR0=0; switch (++switchclock) case MAIN: case SUB: SYCC2=0x34; //update Oscillation Stabilization Wait Time WATR = 0x03; //Indicates main-clock oscillation being stable while (!STBC_MRDY); SYCC2=0x18; //Update the Oscillation Stabilization Wait Time WATR = 0x30; //Indicates sub-clock oscillation being stable while (!SYCC_SRDY); case MAIN_CR: SYCC2=0x21; //Indicates main CR clock oscillation being stable while (!STBC_MCRDY); MCU-AN Z-10 第 32 页

33 case SUB_CR: default: SYCC2=0x02; 基本 FW 设置 V1.0 第 8 章附录 //Indicates sub-cr clock oscillation being stable while (!STBC_SCRDY); switchclock = MAIN; SYCC2=0x34; //update Oscillation Stabilization Wait Time WATR = 0X03; //Indicates main-clock oscillation being stable while (!STBC_MRDY); /************************************************************************* NAME: main () FUNCTION: lighten three LED *************************************************************************/ void main() MCU_initialization(); while(1) vdelay(10); led_display(); //delay the time //lighten three LED MCU-AN Z-10 第 33 页

34 名称 : vector.c 功能 : 中断级设置和中断向量定义 基本 FW 设置 V1.0 第 8 章附录 //======================================================================== //ALL RIGHTS RESERVED, COPYRIGHT (C) FUJITSU LIMITED 2008 // LICENSED MATERIAL - PROGRAM PROPERTY OF FUJITSU LIMITED /************************************************************************** NAME: vector.c FUNCTION: Interrupt level (priority) setting Interrupt vector definition **************************************************************************/ #include "mb95200.h" // //This function pre-sets all interrupt control registers. It can be used //to set all interrupt priorities in static applications. If this file //contains assignments to dedicated resources, verify that the appropriate //controller is used. // void InitIrqLevels (void) ILR0 = 0x1F; // // IRQ0: external interrupt ch.4 // IRQ1: external interrupt ch.5 // IRQ2: external interrupt ch.2/ch.6 // IRQ3: external interrupt ch.3/ch.7 // // Prototypes //Add your own prototypes here. Each vector definition needed is a //prototype. Either do it here or include a header file containing them. // interrupt void DefaultIRQHandler (void); interrupt void external_int06 (void); // //Vector definition //Use the following statements to define vectors. //All resources related to the vectors are predefined. //Remaining software interrupts can be added here as well. // #pragma intvect DefaultIRQHandler 0 //IRQ0: external interrupt ch.4 #pragma intvect DefaultIRQHandler 1 //IRQ1: external interrupt ch.5 #pragma intvect external_int06 2 // //IRQ2: external interrupt ch.2 ch.6 MCU-AN Z-10 第 34 页

35 第 8 章附录 interrupt void DefaultIRQHandler (void) DI (); // disable interrupts while (1) wait_nop (); // halt the system MCU-AN Z-10 第 35 页

36 第 8 章附录 工程 3 名称 : Mode_Change 名称 : Main.c 功能 : 待机模式转换 /* THIS SAMPLE CODE IS PROVIDED AS IS AND IS SUBJECT TO ALTERATIONS.*/ /*FUJITSU MICROELECTRONICS ACCEPTS NO RESPONSIBILITY OR LIABILITY FOR ANY*/ /*ERRORS OR ELIGIBILITY FOR ANY PURPOSES. */ /* (C) Fujitsu Microelectronics (Shanghai) Co., LTD. */ /* Date: Version: 1V0 Author: Lori */ /* /************************************************************************* //The following code can realization transition from normal mode to other //mode, such as stop mode, watch mode //The following software is for demonstration purposes only //You can update the switchmode to the mode what you want /************************************************************************** NAME: FUNCTION: MAIN.C Change the mode and lighten three LED to one fix light Change the mode and LED light fixed **************************************************************************/ #include "mb95200.h" #define normal #define stop #define sleep 0x00 0x01 0x02 #define Timebase 0x03 #define watch 0x04 unsigned char switchmode = normal; unsigned char toggle_status = 0; unsigned char i; //Select the start mode //LED change bit /************************************************************************* NAME: FUNCTION: MCU initialization Initialization the IO port, system clock, interrupt level *************************************************************************/ void MCU_initialization() DI(); /*system clock*/ SYSC = 0x03; SYCC2 = 0x34; /*IO port*/ PDR0_P05=1; DDR0_P05=1; PDR6_P63=1; PDR6_P64=1; DDR6_P63=1; DDR6_P64=1; //Enable output //Enable output //Enable output MCU-AN Z-10 第 36 页

37 第 8 章附录 /*external interrupt*/ EIC30=0x55; //INT06 enable falling edge /*initialise Interrupt level register and IRQ vector table*/ InitIrqLevels(); EI(); /************************************************************************* NAME: led_display() FUNCTION: Set three LED light cycle one by one *************************************************************************/ void led_display() switch(toggle_status) case 0: //Lighten the PDR0_P05 (LED2) PDR0_P05=0; PDR6_P64=1; PDR6_P63=1; toggle_status=1; case 1: //Lighten the PDR6_P64 (LED3) PDR0_P05=1; PDR6_P64=0; PDR6_P63=1; toggle_status=2; case 2: //Lighten the PDR6_P63 (LED4) PDR0_P05=1; PDR6_P64=1; PDR6_P63=0; toggle_status=0; MCU-AN Z-10 第 37 页

38 第 8 章附录 /************************************************************************* NAME: vdelay FUNCTION: Delay the fix time *************************************************************************/ void vdelay (unsigned int uicount) while(uicount--) asm ("\tnop"); /************************************************************************* NAME: interrupt void external_int06(void) FUNCTION: Change the mode *************************************************************************/ interrupt void external_int06(void) EIC30_EIR0=0; if(switchmode <= 3) switchmode++; if(switchmode >= 4) switchmode = 1; /************************************************************************* NAME: interrupt void external_int07(void) FUNCTION: Reset the mode to normal *************************************************************************/ interrupt void external_int07(void) EIC30_EIR1 = 0; switchmode = normal; MCU-AN Z-10 第 38 页

39 第 8 章附录 /************************************************************************* NAME: main () FUNCTION: Lighten three LED, when change the mode, only one LED light *************************************************************************/ void main() MCU_initialization(); while(1) switch (switchmode) case normal: case stop: STBC_STP = 1; case sleep: STBC_SLP = 1; //Normal to stop mode //Normal to sleep mode case watch: SYCC2_SOSCE = 1; //Enable Sub Clock SYCC2_RCS0 = 0x01; //Select Sub Clock SYCC2_RCS1 = 0x00; WATR = 0xF0; //About 1.00s Wait Time while (!SYCC_SRDY); //Wait Clock stable STBC_TMD = 1; //normal to watch mode case Timebase:SYCC2_MOSCE = 1; //Enable Main Clock default: vdelay(2000); led_display(); SYCC2_RCS0 = 0x01; //Select Main Clock SYCC2_RCS1 = 0x01; WATR = 0X0F; // About 4.10 ms Wait Time while (!STBC_MRDY); //Wait Clock stable STBC_TMD = 1; //normal to timebase time mode //delay the time //lighten three LED MCU-AN Z-10 第 39 页

40 名称 : 功能 : vector.c 中断级设置和中断向量定义 基本 FW 设置 V1.0 第 8 章附录 //======================================================================== //ALL RIGHTS RESERVED, COPYRIGHT (C) FUJITSU LIMITED 2008 // LICENSED MATERIAL - PROGRAM PROPERTY OF FUJITSU LIMITED /************************************************************************** NAME: vector.c FUNCTION: Interrupt level (priority) setting Interrupt vector definition **************************************************************************/ #include "mb95200.h" // //This function pre-sets all interrupt control registers. It can be used //to set all interrupt priorities in static applications. If this file //contains assignments to dedicated resources, verify that the appropriate //controller is used. // void InitIrqLevels (void) ILR0 = 0x1F; // // IRQ0: external interrupt ch.4 // IRQ1: external interrupt ch.5 // IRQ2: external interrupt ch.2/ch.6 // IRQ3: external interrupt ch.3/ch.7 // //Prototypes //Add your own prototypes here. Each vector definition needed is a //prototype. Either do it here or include a header file containing them. // interrupt void DefaultIRQHandler (void); interrupt void external_int06 (void); interrupt void external_int07 (void); // //Vector definition //Use the following statements to define vectors. //All resources related to the vectors are predefined. //Remaining software interrupts can be added here as well. // #pragma intvect DefaultIRQHandler 0 //IRQ0: external interrupt ch.4 #pragma intvect DefaultIRQHandler 1 //IRQ1: external interrupt ch.5 MCU-AN Z-10 第 40 页

41 第 8 章附录 #pragma intvect external_int06 2 //IRQ2: external interrupt ch.2/ch.6 #pragma intvect external_int07 3 //IRQ3: external interrupt ch.3/ch.7 // interrupt void DefaultIRQHandler (void) DI (); // disable interrupts while (1) wait_nop (); // halt the system -- END -- MCU-AN Z-10 第 41 页

Microsoft Word - mcu-an z-10.doc

Microsoft Word - mcu-an z-10.doc 富士通微电子 ( 上海 ) 有限公司应用笔记 MCU-AN-500009-Z-10 F²MC-8FX 家族 8 位微控制器 MB95200H/210H 系列 DBG 引脚的使用方法 应用笔记 变更履历 变更履历 日期作者修改记录 2008-03-18 Raven Peng V1.0, 第 1 版 本文档由 12 页构成 1. 本文档记载的产品信息及规格说明如有变动, 恕不预先通知 如需最新产品信息和

More information

F²MC-8FX家族 8位微型控制器 MB95200H/210H系列 基本固件设置

F²MC-8FX家族 8位微型控制器 MB95200H/210H系列 基本固件设置 AN205271 F²MC-8FX 家族 8 位微型控制器 MB95200H/210H 系列基本固件设置 本文档介绍了如何对 Cypress F 2 MC-8FX 家族 MB95200H/210H 系列进行固件设置 本文档同时介绍了初始化程序, 堆栈指针 (SP), 直接存储区指针 (DP), 时钟控制以及待机控制 目录 1 概要... 1 2 初始化程序... 2 2.1 初始化堆栈... 2 2.2

More information

Microsoft Word - mcu-an z-10.doc

Microsoft Word - mcu-an z-10.doc 富士通微电子 ( 上海 ) 有限公司应用笔记 MCU-AN-500007-Z-10 F²MC-8FX 家族 8 位微控制器 MB95200H/210H 系列 外部中断 应用笔记 变更履历 变更履历 日期作者修正记录 2008-03-20 Levi Zhang V1.0, 第一版 本手册共 22 页 1. 本文档记载的产品信息及规格说明如有变动, 恕不预先通知 如需最新产品信息和 / 或规格说明, 联系富士通销售代表或富士通授权分销商

More information

Microsoft Word - mcu-an z-10.doc

Microsoft Word - mcu-an z-10.doc 富士通微电子 ( 上海 ) 有限公司应用笔记 MCU-AN-500004-Z-10 F²MC-8FX 家族 8 位微控制器 MB95200H/210H 系列 8/16 位多功能定时器 应用笔记 变更履历 变更履历 日期作者修正记录 2008-03-20 Levi Zhang V1.0, 第一版 本手册共 40 页 1. 本文档记载的产品信息及规格说明如有变动, 恕不预先通知 如需最新产品信息和 /

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

Microsoft Word - mcu-an z-10.doc

Microsoft Word - mcu-an z-10.doc 富士通微电子 ( 上海 ) 有限公司应用笔记 MCU-AN-500015-Z-10 F²MC-8FX 家族 8 位微控制器 MB95200H/210H 系列 闪存操作 应用笔记 变更履历 变更履历 日期作者修正记录 2008-03-20 Jacky Zhou V1.0, 第一版 本手册共 33 页 1. 本文档记载的产品信息及规格说明如有变动, 恕不预先通知 如需最新产品信息和 / 或规格说明, 联系富士通销售代表或富士通授权经销商

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

Microsoft Word - mcu-an z-11.doc

Microsoft Word - mcu-an z-11.doc 富士通微控制器 ( 上海 ) 有限公司应用笔记 MCU-AN-500005-Z-11 F²MC-8FX 家族 8 位微控制器 MB95200H/210H 系列 A/D 转换器 应用笔记 变更履历 变更履历 日期作者修改记录 2008-03-20 Benjamin Yang V1.0, 第 1 版 2008-07-15 Benjamin Yang V1.1, 修订版 本文档由 30 页构成 1. 本文档记载的产品信息及规格说明如有变动,

More information

F²MC-8L/16LX/FR FAMILY

F²MC-8L/16LX/FR FAMILY 富士通半导体 ( 上海 ) 有限公司应用笔记 MCU-AN-500074-Z-13 F²MC-8FX 家族 8 位微型控制器 全系列 低功耗策略 应用笔记 修改记录 修改记录 版本日期作者修改记录 1.0 2009-12-07 Edison, Zhang 初稿 1.1 2009-01-08 Jacky, Zhou 增加细节描述 1.2 2009-01-12 Jacky, Zhou 增加 3.3.4

More information

目 录

目 录 1 Quick51...1 1.1 SmartSOPC Quick51...1 1.2 Quick51...1 1.3 Quick51...2 2 Keil C51 Quick51...4 2.1 Keil C51...4 2.2 Keil C51...4 2.3 1 Keil C51...4 2.4 Flash Magic...9 2.5 ISP...9 2.6...10 2.7 Keil C51...12

More information

学习MSP430单片机推荐参考书

学习MSP430单片机推荐参考书 MSP430 16 MSP430 C MSP430 C MSP430 FLASH 16 1 CPU 16 ALU 16 PC SP SR R4~R15 2 3 00-FFH 100-1FFH 4 5 1 2 51 24 27 6 1 2 3 4 5 6 4 12 SR SP SR CPU SR CPU C Z N GIE CPUOff CPU OscOff SCG0 SCG1 CPU EXIT SP

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

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

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

PIC16F F MPLAB 08 16F LED 15 LED

PIC16F F MPLAB 08 16F LED 15 LED PIC16F877 PIC16F877 03 16F877 05 06 MPLAB 08 16F877 13 LED 15 LED 17 20 24 2 PIC16F877 PIC16F877 DIP VDD VSS CLOCK CPU :,AND,OR,XOR ROM: CPU ROM RAM: CPU,CPU I/O:CPU, CPU,, 16F877 RAM 512 128 Bank Bank

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

bingdian001.com

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

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

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

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

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

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

<4D F736F F D A F E45BDA8C1A2B9A4B3CCBFAAB7A2BBB7BEB3CFEABDE22E646F63>

<4D F736F F D A F E45BDA8C1A2B9A4B3CCBFAAB7A2BBB7BEB3CFEABDE22E646F63> 步骤如下 : FUJITSU SOFTUNE 建立工程开发环境详解 Project Setup Project 点击 : C compiler 在 Linker 选项下面设定 Rom/RAM 设置输出数据格式 点击 :OK 建立好了工程后, 然后添加文件 :: 点击 :biult all 编译时, 显示如下报错信息 : E4333L: Not specified ROM address (INIT)

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

HCS08微控制器上有关内存分配的几个问题.doc

HCS08微控制器上有关内存分配的几个问题.doc HCS08 shylion@gmail.com HCS08 Tiny Small shylion@gmail.com HCS08...- 1-1.1. HCS08...- 2-1.1...- 2-1.2 RAM...- 5-1.3 FLASH...- 5-1.4 Vectors...- 6-1.2....- 7-1.3. HCS08 Tiny Small...- 9-1.4. heap segment...12

More information

untitled

untitled 8086/8088 CIP /. 2004.8 ISBN 7-03-014239-X.... TP313 CIP 2004 086019 16 100717 http://www.sciencep.com * 2004 8 2004 8 1 5 500 787 1092 1/16 16 1/2 391 000 1 2 ii 1 2 CAI CAI 3 To the teacher To the student

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

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

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

1.1 ML_ONOFF = 1 Q 3 Q 8 C 0.3V M 2 L 1 ML_ONOFF = 0 Q 3 Q 8 C 1. + R31 VCC R21 10K ML_ONOFF R15 0:off 1:on 1K Green Light VCC=5V L1 Q VDD=12V C

1.1 ML_ONOFF = 1 Q 3 Q 8 C 0.3V M 2 L 1 ML_ONOFF = 0 Q 3 Q 8 C 1. + R31 VCC R21 10K ML_ONOFF R15 0:off 1:on 1K Green Light VCC=5V L1 Q VDD=12V C AUTOMATIC TROLLEY H K Hwang K K Chen J-S Lin S-C Wang M-L Li C-C Lin W-B Lin Dept. Of Electrical Engineering Far East College ABSTRACT This paper proposes an automatic trolley which can move automatically

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

F²MC-8L/16LX/FR FAMILY

F²MC-8L/16LX/FR FAMILY 富士通半导体 ( 上海 ) 有限公司应用笔记 MCU-AN-500017-Z-12 F²MC-8FX 家族 8 位微型控制器 MB95200 系列 如何在目标板上编程 应用笔记 修改记录 修改记录 版本日期作者修改记录 1.0. 2009-2-10 Benjamin. Yang 初稿 1.1. 2009-2-11 Benjamin. Yang 修改 1.2 2010-1-11 Ivan. Xiao

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

6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C C C51 C51 ANSI C MCS-51 C51 ANSI C C C51 bit Byte bit sbit

6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C C C51 C51 ANSI C MCS-51 C51 ANSI C C C51 bit Byte bit sbit 6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C51 6.1 C51 6.1.1 C51 C51 ANSI C MCS-51 C51 ANSI C C51 6.1 6.1 C51 bit Byte bit sbit 1 0 1 unsigned char 8 1 0 255 Signed char 8 11 128

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

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

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

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

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

Microsoft Word - ChineseSATII .doc

Microsoft Word - ChineseSATII .doc 中 文 SAT II 冯 瑶 一 什 么 是 SAT II 中 文 (SAT Subject Test in Chinese with Listening)? SAT Subject Test 是 美 国 大 学 理 事 会 (College Board) 为 美 国 高 中 生 举 办 的 全 国 性 专 科 标 准 测 试 考 生 的 成 绩 是 美 国 大 学 录 取 新 生 的 重 要 依

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

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

DPJJX1.DOC

DPJJX1.DOC 8051 111 2K 1 2 3 ' ' 1 CPU RAM ROM / A/D D/A PC CPU 40 68 10 20 8 51 PIII 8051 2 MCS51 8051 8031 89C51 8051 8031 89C51? MCS51 INTEL INTEL 8031 8051 8751 8032 8052 8752 8051 8051 8051 MCS51 8031 8031

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

untitled

untitled MODBUS 1 MODBUS...1 1...4 1.1...4 1.2...4 1.3...4 1.4... 2...5 2.1...5 2.2...5 3...6 3.1 OPENSERIAL...6 3.2 CLOSESERIAL...8 3.3 RDMULTIBIT...8 3.4 RDMULTIWORD...9 3.5 WRTONEBIT...11 3.6 WRTONEWORD...12

More information

Microsoft Word - 11.doc

Microsoft Word - 11.doc 除 錯 技 巧 您 將 於 本 章 學 到 以 下 各 項 : 如 何 在 Visual C++ 2010 的 除 錯 工 具 控 制 下 執 行 程 式? 如 何 逐 步 地 執 行 程 式 的 敘 述? 如 何 監 看 或 改 變 程 式 中 的 變 數 值? 如 何 監 看 程 式 中 計 算 式 的 值? 何 謂 Call Stack? 何 謂 診 斷 器 (assertion)? 如 何

More information

Microsoft Word - mcu-an z-10.doc

Microsoft Word - mcu-an z-10.doc 富士通微电子 ( 上海 ) 有限公司应用笔记 MCU-AN-500001-Z-10 F²MC-8FX 家族 8 位微控制器 MB95200H/210H 系列 快速入门指南 应用笔记 变更履历 变更履历 日期作者修正记录 2008-03-20 Ivan Xiao V1.0, 第 1 版 本文档由 3 页构成 1. 本文档记载的产品信息及规格说明如有变动, 恕不预先通知 如需最新产品信息和 / 或规格说明,

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

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

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

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

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

ARM JTAG实时仿真器安装使用指南

ARM JTAG实时仿真器安装使用指南 ARM JTAG Version 1.31 2003. 11. 12 ARM JTAG ARM JTAG.3 ARM 2.1.4 2.2.4 ARM JTAG 3.1 18 3.2 18 3.2.1 Multi-ICE Server.18 3.2.2 ADS..21 ARM JTAG 4.1 Multi-ICE Server 33 4.1.1 Multi-ICE Server..... 33 4.1.2

More information

Microsoft Word - mcu-an z-11.doc

Microsoft Word - mcu-an z-11.doc 富士通微电子 ( 上海 ) 有限公司应用笔记 MCU-AN-500001-Z-11 F²MC-8FX 家族 8 位微控制器 MB95200H/210H 系列 快速入门指南 应用笔记 变更履历 变更履历 日期作者修改记录 2008-03-20 Ivan Xiao V1.0, 第 1 版 2008-07-21 Ivan Xiao V1.1, 修改图 2.1.3-3 表 2.2.4-1 图 2.1.3-1

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

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

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM Oracle Solaris Studio 12.2 DLight 2010 9 2 2 3 DLight 3 3 6 13 CPU 16 18 21 I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AMP Apache MySQL

More information

INTRODUCTION TO COM.DOC

INTRODUCTION TO COM.DOC How About COM & ActiveX Control With Visual C++ 6.0 Author: Curtis CHOU mahler@ms16.hinet.net This document can be freely release and distribute without modify. ACTIVEX CONTROLS... 3 ACTIVEX... 3 MFC ACTIVEX

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

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

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

RAID RAID 0 RAID 1 RAID 5 RAID * ( -1)* ( /2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( )

RAID RAID 0 RAID 1 RAID 5 RAID * ( -1)* ( /2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( ) RAID RAID 0 RAID 1 RAID 5 RAID 10 2 2 3 4 * (-1)* (/2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( ) ( ) ( ) Windows USB 1 SATA A. SATASATAIntel SATA (SATA3

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

Microsoft Word - MAN2011A_CH_RTT.doc

Microsoft Word - MAN2011A_CH_RTT.doc 基于 SAM7X EK 和 IAR EWARM 文档编号 文档版本 Rev. A 文档摘要 基于 AT91SAM7X EK 开发板的代码解读,RTT 代码解读 关键词 AT91SAM7X256 SAM7X EK IAR EWARM J LINK RTT 创建日期 2010 06 08 创建人员 Cust126 审核人员 Robin 文档类型 公开发布 / 开发板配套文件 版权信息 Mcuzone 原创文档,

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

Panaboard Overlayer help

Panaboard Overlayer help Panaboard Overlayer Image Capture Software for Electronic Whiteboard (Panaboard) ... 3... 5... 6... 13...14 Panaboard Overlayer 1. 2. 3. 4. 4-1. 4-2. [ / ] ( ) 4-3. 5. 6. 6-1. 6-2. [ / ] ( ) 7. Panaboard

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

Microsoft Word - ~ doc

Microsoft Word - ~ doc EEPROM 功能使用方法 1 适用产品 : 1.1 SM39R16A2/ SM39R12A2/ SM39R08A2 1.2 SM39R4051/ SM39R2051 1.3 SM39R04G1/ SM39R02G1 2 EEPROM 功能概述 : 2.1 使用 code flash 仿真为 Internal EEPROM, 在程序执行时, 可将 code flash 作为 data flash 储存数据使用

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

2005.book

2005.book ...4... 4... 7...10... 10... 10... 10... 10... 11... 11 PCC... 11 TB170... 12 /... 12...13... 13 BP150 / BP151 / BP152 / BP155... 14...15... 15... 15... 15... 15... 15... 15... 16 PS465 / PS477... 17 PS692

More information

Timer

Timer PSoC Creator 组 件 数 据 手 册 定 时 器 2.50 特 性 支 持 PSoC 3 和 PSoC5 LP 中 的 固 定 功 能 (FF - Fixed Function) 实 现 8 16 24 或 32 位 定 时 器 可 选 捕 获 输 入 使 能 触 发 和 复 位 输 入, 用 于 与 其 他 组 件 同 步 连 续 或 单 次 触 发 模 式 概 述 定 时 器 组 件

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

uc/os 1

uc/os 1 uc/os 1 uc/os-ii Source Code ANSI C, uc/os-ii 8/16/32 bits microprocessor Preemptive real-time Task 64 Stack Size ROMable (C compiler, assembler and linker/locator) uc/os-ii Mailboxes, Queues, Semaphores,

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

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

int *p int a 0x00C7 0x00C7 0x00C int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++;

int *p int a 0x00C7 0x00C7 0x00C int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++; Memory & Pointer trio@seu.edu.cn 2.1 2.1.1 1 int *p int a 0x00C7 0x00C7 0x00C7 2.1.2 2 int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++; 2.1.3 1. 2. 3. 3 int A,

More information

: ( ),,

: ( ),, Case Discussion: ( ), RN, ScD, MPH : 24,,,,,,, ( ) ) ( ), : ( ),, randomized controlled trial (RCT). minimization program,,,, : : ; Apgar score > 7 ;, : ; ; ; ; (BT180/min; 2, 83,50 (60.2%).,

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

untitled

untitled (100V 120V 220V 230V) i ii ! (Return Lead) iii iv 1....... 1 1-1.... 1 1-2.... 2 2..... 4 3..... 3-1.... 3-2.... 3-3....... 4..... 9 5......... 5-1.LCD..... 5-2.... 5-3.... 5-4.... 6..... 6-1.... 6-2....

More information

Microsoft Word - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

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

P3B-F Pentium III/II/Celeron TM

P3B-F Pentium III/II/Celeron TM P3B-F Pentium III/II/Celeron TM 1999 2 3 4 5 6 7 8 9 10 11 12 1 2 3 4 5 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 13 R PS2 KBMS USB COM1 COM2 JTPWR ATXPWR PWR_FAN CPU_FAN Row 0 1 2 3 4 5 6 7 DSW JP20

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

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

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

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

EMC® VNX® Series VNX8000™ Block 安装指南

EMC® VNX® Series VNX8000™ Block 安装指南 EMC VNX Series VNX8000 Block 安 装 指 南 300-999-791 REV 05 版 权 所 有 2014-2015 EMC Corporation 保 留 所 有 权 利 中 国 印 刷 发 布 日 期 : 2015 年 2 月 EMC 确 信 本 出 版 物 在 发 布 之 日 内 容 准 确 无 误 本 出 版 物 中 的 信 息 可 随 时 更 改 而 不 另

More information

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP Serial ATA ( Sil3132)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 10 (5) S A T A... 12 Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS

More information

System Design and Setup of a Robot to Pass over Steps Abstract In the research, one special type of robots that can pass over steps is designed and se

System Design and Setup of a Robot to Pass over Steps Abstract In the research, one special type of robots that can pass over steps is designed and se 8051 8051 System Design and Setup of a Robot to Pass over Steps Abstract In the research, one special type of robots that can pass over steps is designed and setup. This type of robot uses two kinds of

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming Media, Transaction, Bulk dat

RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming Media, Transaction, Bulk dat Realtime Application QOS Monitoring (RAQMON) Dan Romascanu dromasca@avaya.com 1 RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming

More information

Microsoft Word - IRFWX-A124_A_SM59D03G2_SM59D04G2_PCA_ APN_SC_.doc

Microsoft Word - IRFWX-A124_A_SM59D03G2_SM59D04G2_PCA_ APN_SC_.doc 可程序计数数组 (PCA) 功能使用方法 1 适用产品 :SM59D04G2,SM59D03G2 2 应用说明 : PCA 共有五组, 每组皆可工作于以下七种模式 : 捕获模式 - 正缘捕获模式 (Positive edge capture mode) 捕获模式 - 负缘捕获模式 (Negative edge capture mode) 捕获模式 - 正缘及负缘捕获模式 (Both positive

More information

untitled

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

More information

自然辩证法索引

自然辩证法索引 自 然 与 科 学 技 术 哲 学 名 词 索 引 上 海 交 通 大 学 可 信 任 数 字 技 术 实 验 室 制 Copyright 2009 Trust Digital Technology Laboratory, Shanghai Jiao Tong University. Permission is hereby granted, free of charge, to any person

More information

2.5 idlocs PIC idloc idloc 0x1234 ; 0x config idloc HEX errorlevel errorlevel Error (Warning) Message HEX 3-14 errorlevel

2.5 idlocs PIC idloc idloc 0x1234 ; 0x config idloc HEX errorlevel errorlevel Error (Warning) Message HEX 3-14 errorlevel 3.2.3 MPASM PIC 35 35 #include include #include MPASM include PIC MPLAB C:\Program Files\MPLAB IDE\MCHIP_Tools PIC.inc 3-01 #include ; PIC16F877A #include math.asm ; 3-01 MPASM MPLAB

More information

untitled

untitled www.mcudriver.cn 1.1 / 1) WinAVR20070525 2) Source Insight 3) ISP 4) PonyProg ISP 5) USB 6) 1.2. MCU ATMEGA16 1.3. AVR8 1.4 LED0~LED7 1 1.5 #include // Program 1.1 LED.C #define uchar unsigned

More information