MergedFile

Size: px
Start display at page:

Download "MergedFile"

Transcription

1 模块 8

2 8.0 目标 本实验的目的是学习如何使用 TI 的 Launchpad 开发板将开关和 LED 连接到微控制器 1. 您将首先在面包板上构建电路并执行明确的测量, 以验证它们是否正常运行, 并提高您对它们如何工作的理解 2. 您将使用此知识设计自己的窗口入侵探测器警报系统 本实验所需组件 数量组件描述制造商型号 1 MSP-EXP432P401R LaunchPad TI MSP- EXP432P401R 小知识 : 实验中连接的开关将成为机器人上的撞击探测器 机器人将使用 LED 输出作为调试工具, 以便您可视化软件正在执行的操作 8.1 入门 从下面的软件工程起步 Red 2mA 5mm diffused LED Carbon 1/6W, 5%, 470 B3F tactile push button switches 浏览以下 4 个工程 : InputOutput (LaunchPad 上的开关和 LED 的输入 / 输出 ) GPIO ( 简单的输出到四个引脚 ) Switch ( 输入开关的软件驱动程序 ) Lab_Switches_LED ( 本实验的入门项目 ) 参考资料 B3F-1052.pdf Switch Datasheet HLMP-4700.pdf LED Datasheet MSP432P4xx Technical Reference Manual (SLAU356) Meet the MSP432 LaunchPad (SLAU596) MSP432 LaunchPad User s Guide (SLAU597) MSP432P401R Datasheet msp432p401m.pdf (SLAS826) 1 solderless breadboard 所需实验设备电压表示波器 ( 一个至少 10 khz 采样的通道 ) 逻辑分析仪 (4 个至少 10 khz 采样的通道 ) 阅读材料 Volume 1 Section 2.7, 4.1, 4.2.2, 4.3, and 4.6 Embedded Systems: Introduction to the MSP432 Microcontroller Volume 2 Section 2.4, and 2.6 Embedded Systems: Real-Time Interfacing to the MSP432 Microcontroller 2 Texas Instruments

3 8.2 系统设计要求 在本实验, 你将设计和测试一个窗口入侵探测器报警系统 如图 8.1 的框图所示, 我们的简易窗口入侵探测器报警系统有三个输入和一个输出 输入是三个开关, 用正逻辑实现, 见图 8.2 第一个开关输入称为 Activate, 用作布防 / 撤防控制 有两个窗口传感器, 称为 Window1 和 Window2 当 Activate 按下或为 true 时, 将激活安全系统 当 Activate 没有按下或为 false 时, 系统将被禁用, 这意味着无论窗口传感器的状态如何, 警报都将关闭 当窗口传感器被按下或为 true 时, 窗口处于安全位置 如果未按下任一窗口传感器, 则不安全 输出是一个名为 Alarm 的 LED, 它以正逻辑实现 您将以 5 Hz( 开启 100ms, 关闭 100ms) 闪烁 LED 以表示不安全状况 换一种说法, 当传感器 Window1 或 Window2 检测到入侵者时,LED 应快速闪烁 您将把这些开关和 LED 连接到面包板, 并根据表 8.1 中显示的真值表将它们连接到 MSP432 LaunchPad 开发板 Sensors Activate 2 bits 1 bit MSP432 Software 1-bit flashing Alarm Activate switch Window1 sensor Window2 sensor Alarm ( LED) 图 8.1. 窗口入侵探测器报警系统 OFF X X OFF ON Not Pressed Not Pressed Flash at 5 Hz ON Not Pressed Pressed Flash at 5 Hz ON Pressed Not Pressed Flash at 5 Hz ON Pressed Pressed OFF 表 8.1. 窗口入侵探测器报警系统真值表 图 8.2. MSP432 LaunchPad 和外部电路 3 Texas Instruments

4 8.3 实验准备 开关接口 您最终将需要三个开关 但是, 您需要首先将一个开关连接到 TI LaunchPad 开发板 图 8.3 显示了将开关连接到微控制器的一种可能方法 当未按下开关时, 您可以使用内部或外部下拉电阻使引脚上的电压为零 Warning: 限制流入和流出端口引脚的电流小于 6 ma 构建开关接口的一个非常糟糕的方法是将开关的一侧置于 + 3.3V 而另一侧接地, 每当按下开关时都会导致 3.3V 接地短路 提示 : 使用 P5.0 将一个开关与内部上拉接口连接的示例代码 uint8_t sensor; int Program8_1(void){ Clock_Init48MHz(); // makes bus clock 48 MHz P5->SEL0 &= ~0x01; // configure P5.0 GPIO P5->SEL1 &= ~0x01; P5->DIR &= ~0x01; // make P5.0 in P5->REN = 0x01; // enable pull resistor on P5.0 P5->OUT &= ~0x01; // P5.0 pull-down while(1){ sensor = P5->IN&0x01; // read switch 图 8.3. 使用内部下拉将开关连接到 P5.0 的接口 当 Program8_1 运行时, 使用电压表测量未按下开关和按下开关时引脚上的电压 未按下开关时, 您应该获得 0 V, 按下开关时, 您应该获得 3.3V 读取输入后, 将引脚上的电压与软件中的值进行比较 使用调试器观察全局变量传感器 您最终将系统扩展为具有三个输入, 并且软件将读取三个开关的状态 我们有意给这个例子用一个开关, 知道你需要修改三个开关输入的硬件和软件 您将在项目中找到类似于 8_1 的 Program8_2, 但会激活 TExaS 逻辑分析器 (CircuitMaker) 为了标准化整个级别的时序, 我们将激活外部晶振并以 48 MHz 运行 4 Texas Instruments

5 8.3.2 LED 接口 使用其数据手册查找用于本实验的 LED 的所需 (Vf,If) 工作点 假设微控制器引脚为 3.3V, 则计算获得该工作点所需的电阻 选择接近该值的标准电阻值 ( 例如, 100,220,270,330,470,680,820 或 1000Ω) 确定将用于 LED 输出的引脚, 并绘制 LED 的接口电路, 类似于图 8.4 您必须重新绘制图 8.4, 将 LED 移动到开关未使用的引脚 运行修改后的 Program8_3 并单步执行, 直到 LED 亮起 测量电阻两端的电压和 LED 两端的电压 单步执行软件, 直到 LED 熄灭并再次测量两个电压 在电阻器上使用欧姆定律来计算通过电阻器的电流 电阻器电流也将等于 LED 电流 将 LED 的实际 (Vf,If) 工作点与设计期间计算的预期值进行比较 当软件停止且微控制器的输出为高电平时, 测量微控制器引脚上的电压 将此测量电压与 3.3V 的预期值进行比较 提示 : 使用此程序测试 LED 接口 void LED_Init(void){ P5->SEL0 &= ~0x01; // configure P5.0 GPIO P5->SEL1 &= ~0x01; P5->DIR = 0x01; // make P5.0 output void LED_On(void){ P5->OUT = 0x01; // turn on void LED_Off(void){ P5->OUT &= ~0x01; // turn off 图 8.4. 将 LED 输出连接到 P5.4 的示例接口 (CircuitMaker) 当软件输出一个高电平 ( 假设为 3.3 V 输出 ) 时, 根据您构建的电路估算 LED 的电流和 LED 两端的电压 但是, 在测量实际 LED 电流和电压时, 您需要单步执行, 因为如果运行, 引脚将每秒振荡大约一百万次, 并且 LED 看起来会变暗 修改 Program8_3, 使微控制器将相应的引脚作为输出 例如, 如果你将 LED 连接到 P5.4, 你必须编辑它, 因此 Port5 bit 4 是一个输出, 主循环振荡第 4 位 我们有意使用与上一个示例中输入相同的引脚编写 Program8_3, 因为您知道需要修改此程序以输出到连接 LED 的特定端口引脚 程序应该只需打开和关闭 LED 请注意,Program8_3 中的 LED 操作被写为软件驱动程序, 这是一组便于 LED 操作的函数 此外, 看看 LED 功能如何构成抽象, 将它的作用 (LED 初始化 / 开 / 关 / 切换 ) 与其工作原理分开 (P5 引脚 0) void LED_Toggle(void){ P5->OUT ^= 0x01; // change int Program8_3(void){ Clock_Init48MHz(); // makes bus clock 48 MHz LED_Init(); // activate output for LED while(1){ LED_On(); LED_Off(); LED 切换 接下来, 您将开发并测试闪烁 LED 5 次 / 秒的软件 基本上, 您需要去写 Wait1ms() 函数 在下一个实验中, 我们将使用 SysTick 计时器进行延时 但是在这个实验中, 你可以使用两个嵌套的 for 循环 软件循环对于时间延迟非常不准 5 Texas Instruments

6 确 因此, 在这个实验里, 延迟可以是任何值, 使得 LED 每秒闪烁 4 到 6 次 使用秒表, 逻辑分析仪或示波器验证 LED 是否以所需速率闪烁 图 8.5 显示了在 Logic Analyzer 处于活动状态时运行的程序 8.4 要激活逻辑分析仪以显示端口 5, 请执行 TExaS_Init(LOGICANALYZER_P5); 8.4 窗口探测器报警系统 硬件实现 我们将使用 MSP432 上的四个引脚来实现报警系统 建议您不要使用已连接硬件的引脚 选择您想要使用的四个引脚, 并绘制硬件电路图, 如图 8.6 所示 图 8.5. TExaS 逻辑分析仪运行程序 8.4, 显示 P5.0 以 5 Hz 切换 提示 : 使用此程序测试 LED 闪烁 int Program8_4(void) Clock_Init48MHz(); // makes bus clock 48 MHz TExaS_Init(LOGICANALYZER_P5); LED_Init(); // activate output for LED while(1){ LED_Toggle(); Clock_Delay1ms(100); // approximately 100 ms 图 8.6 硬件原理图接口输入和输出引脚 6 Texas Instruments

7 8.4.2 软件实现 这个伪代码描述了这个系统的基本方法, 并将其绘制成图 8.7 中的流程图 1. 将 LED 引脚作为输出并使三个开关引脚作为输入 2. 系统启动时 LED 熄灭 3. 等待 100 ms 4. 着眼于这三个开关 ; 如果 Activate 被按下, 一个或两个 Window1 和 Window2 没有被按下, 则切换 LED 一次, 否则关闭 LED 5. 一遍又一遍地重复步骤 3-5 察三个输入和一个输出 首先, 使用 step over debugger 命令验证正确的功能行为 然后, 你可以启动程序并测试系统全速运行 您可以使用示波器或逻辑分析仪来验证 LED 以 5 Hz 的频率闪烁, 当按下 Activate 并且未按下一个或两个 Window1 和 Window2 时 8.5 疑难解答 无法编程 LaunchPad: 检查 LaunchPad 开发板上的电缆, 跳线 检查 Windows 驱动程序以查看操作系统是否识别该板 在此计算机上尝试另一个 LaunchPad 在另一台计算机上试用此 LaunchPad LED 没有打开 : 检查 LED 的极性 重复测量, 参见第 节 与 LED 串联的电阻应介于 220 和 2000 欧姆之间 如果 LED 上有 2 到 3V 且 LED 很暗, 则它会断开 ( 开路 ) 或反向 Switches 不工作 : 许多开关有 4 个引脚, 您可能会混淆开关所连接的引脚 使用欧姆表测量开关上的电阻, 以确定按下和非按下的条件 调试器允许您可视化端口寄存器 ; 因此, 最好使用调试器检查初始化是否正确配置了方向和下拉模式 图 8.7. 系统可能的软件算法绘制为流程图 本实验的结构让您分别构建和测试每个子系统 在这个部分, 我们结合开关和 LED 接口来实现窗口入侵探测器报警系统 要测试整个系统, 首先应该单步执行软件, 以验证它是否按照表 8.1 中列出的八种情况的预期运行 使用调试器同时观 7 Texas Instruments

8 8.6 请思考 在这节中, 我们列出了完成本实验后要考虑的思考问题 这些问题旨在测试您对本实验中概念的理解 怎么让 LED 更亮? 如果你反向插入 LED 会发生什么? 如果颠倒 LED 和电阻会发生什么? 即, 将微控制器输出连接到 LED 的 + 侧, 并将 LED 的 - 侧连接到电阻器的一端, 将电阻器的另一端连接到地 它还能用吗? 为什么? 每次你按下开关, 开关就会打开 / 关闭 / 打开大约 1-2 毫秒 同样的, 当开关被释放时, 开关会关闭 / 打开 / 关闭 这个实验实际上对开关进行了去抖 主程序中的哪些操作会导致软件忽略触摸和释放时发生的开关弹跳? 去抖意味着软件仅响应开关触摸事件一次, 而不是在开关反弹时多次响应 8.7 其它挑战 在这节中, 我们列出了您可以做的其他活动, 以进一步探索此模块的概念 您可以扩展安全系统或提出完全不同的东西 例如 : 添加第二个 LED 以指示系统是否已激活 添加绿色 LED 指示一切正常 将这个实验实现为一个有限状态机 添加更多开关并实现数字门锁 ( 用户按特定顺序点击键, 并通过 LED 模拟锁 ) 实现一个起搏器需求, 用户按下开关来模拟心房传感器, 并且通过 LED 模拟心室起搏 修改下面挑战函数, 以便系统移除开关弹跳并正确计算按下开关的次数 8.8 接来是哪些模块? 在这节中, 我们列出了基于模块中所学概念的未来模块 模块 9) 使用 SysTick 实现延时, 调暗 LED 模块 10) 使用开关为机器人添加碰撞传感器模块 13) 使用周期性中断在后台运行任务模块 14) 使用中断触发来识别已按下的开关 8.9 您应该已经学会 在这节中, 我们回顾了在这个模块中应该学习的重要概念是 : 使用欧姆表 电压表和逻辑分析仪 使用 CircuitMaker 之类的程序绘制电路 使用面包板构建电路 编程方向寄存器 使用数字端口执行输入 / 输出, 将函数编写为软件驱动程序 通过下拉连接一个正逻辑开关 连接一个正逻辑低电流 LED 使用 for 循环创建软件延迟 使用软件延迟切换 LED int Challenge(void){ uint32_t Count=0; Clock_Init48MHz(); // makes bus clock 48 MHz Switch_Init(); // activate input from switch while(1){ while(switch_input()==0){; // wait for touch Count++; // number of times switch is touched while(switch_input()!=0){; // wait for release 8 Texas Instruments

9 IMPORTANT NOTICE FOR TI DESIGN INFORMATION AND RESOURCES Texas Instruments Incorporated ( TI ) technical, application or other design advice, services or information, including, but not limited to, reference designs and materials relating to evaluation modules, (collectively, TI Resources ) are intended to assist designers who are developing applications that incorporate TI products; by downloading, accessing or using any particular TI Resource in any way, you (individually or, if you are acting on behalf of a company, your company) agree to use it solely for this purpose and subject to the terms of this Notice. TI s provision of TI Resources does not expand or otherwise alter TI s applicable published warranties or warranty disclaimers for TI products, and no additional obligations or liabilities arise from TI providing such TI Resources. TI reserves the right to make corrections, enhancements, improvements and other changes to its TI Resources. You understand and agree that you remain responsible for using your independent analysis, evaluation and judgment in designing your applications and that you have full and exclusive responsibility to assure the safety of your applications and compliance of your applications (and of all TI products used in or for your applications) with all applicable regulations, laws and other applicable requirements. You represent that, with respect to your applications, you have all the necessary expertise to create and implement safeguards that (1) anticipate dangerous consequences of failures, (2) monitor failures and their consequences, and (3) lessen the likelihood of failures that might cause harm and take appropriate actions. You agree that prior to using or distributing any applications that include TI products, you will thoroughly test such applications and the functionality of such TI products as used in such applications. TI has not conducted any testing other than that specifically described in the published documentation for a particular TI Resource. You are authorized to use, copy and modify any individual TI Resource only in connection with the development of applications that include the TI product(s) identified in such TI Resource. NO OTHER LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE TO ANY OTHER TI INTELLECTUAL PROPERTY RIGHT, AND NO LICENSE TO ANY TECHNOLOGY OR INTELLECTUAL PROPERTY RIGHT OF TI OR ANY THIRD PARTY IS GRANTED HEREIN, including but not limited to any patent right, copyright, mask work right, or other intellectual property right relating to any combination, machine, or process in which TI products or services are used. Information regarding or referencing third-party products or services does not constitute a license to use such products or services, or a warranty or endorsement thereof. Use of TI Resources may require a license from a third party under the patents or other intellectual property of the third party, or a license from TI under the patents or other intellectual property of TI. TI RESOURCES ARE PROVIDED AS IS AND WITH ALL FAULTS. TI DISCLAIMS ALL OTHER WARRANTIES OR REPRESENTATIONS, EXPRESS OR IMPLIED, REGARDING TI RESOURCES OR USE THEREOF, INCLUDING BUT NOT LIMITED TO ACCURACY OR COMPLETENESS, TITLE, ANY EPIDEMIC FAILURE WARRANTY AND ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT OF ANY THIRD PARTY INTELLECTUAL PROPERTY RIGHTS. TI SHALL NOT BE LIABLE FOR AND SHALL NOT DEFEND OR INDEMNIFY YOU AGAINST ANY CLAIM, INCLUDING BUT NOT LIMITED TO ANY INFRINGEMENT CLAIM THAT RELATES TO OR IS BASED ON ANY COMBINATION OF PRODUCTS EVEN IF DESCRIBED IN TI RESOURCES OR OTHERWISE. IN NO EVENT SHALL TI BE LIABLE FOR ANY ACTUAL, DIRECT, SPECIAL, COLLATERAL, INDIRECT, PUNITIVE, INCIDENTAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES IN CONNECTION WITH OR ARISING OUT OF TI RESOURCES OR USE THEREOF, AND REGARDLESS OF WHETHER TI HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. You agree to fully indemnify TI and its representatives against any damages, costs, losses, and/or liabilities arising out of your noncompliance with the terms and provisions of this Notice. This Notice applies to TI Resources. Additional terms apply to the use and purchase of certain types of materials, TI products and services. These include; without limitation, TI s standard terms for semiconductor products evaluation modules, and samples ( Mailing Address: Texas Instruments, Post Office Box , Dallas, Texas Copyright 2018, Texas Instruments Incorporated

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

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

More information

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

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

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

More information

自然辩证法索引

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

More information

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

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

More information

2

2 2 3 1 2 3 9 bk 8 7 4 5 6 bn bm bl 1 2 3 4 5 6 7 8 9 p bk bl bm bn bo bo bp bq bq bp 1 2 8 . 1 2 3 4 5 6 bs 7 br 8 bq 9 bp bk bo bn bm bl 1 2 3 4 5 6 7 8 9 cm cl ck bt bk bl bm bn bo bp bq br bs bt

More information

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

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

More information

Microsoft Word - Xinhua Far East_Methodology_gb_2003.doc

Microsoft Word - Xinhua Far East_Methodology_gb_2003.doc 新 华 远 东 中 国 资 信 评 级 新 华 财 经 有 限 公 司 上 海 远 东 资 信 评 估 有 限 公 司 新 华 远 东 中 国 资 信 评 级 2003 年 电 子 邮 箱 评 级 总 监 联 系 电 话 rating@xfn.com 钟 汶 权 CFA 852-3102 3612 8621-5306-1122 目 的 新 华 财 经 有 限 公 司 与 上 海 远 东 资 信 评

More information

* * 2

* * 2 * * 2 3 4 6 p 1234567 bl bm bn bo bp bq bk 9 8 cl ck bt bs br 1 0 2 3 4 5 6 7 8 9 bk bl bm bn bo bp bq br bs p bt ck 8 2 4 6 cl cm cn co co cn cm 10 . co cn cm cl ck bt bs 1 2 34567 8 9 bk bl bm bn

More information

LH_Series_Rev2014.pdf

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

More information

发行说明, 7.0.1 版

发行说明, 7.0.1 版 发 行 说 明 Websense Web Security Websense Web Filter 7.0.1 版 本 版 本 的 新 特 点 Websense Web Security 和 Websense Web Filter 的 7.0.1 版 本 均 已 本 地 化 为 以 下 语 言 : 法 语 德 语 意 大 利 语 日 语 葡 萄 牙 语 简 体 中 文 西 班 牙 语 繁 体 中 文

More information

2014 年 前 言 房 地 产 投 资 信 托 基 金 (Real Estate Investment Trusts,REITs) 在 海 外 早 已 发 展 成 熟, 而 香 港 政 府 去 年 也 进 一 步 准 备 放 宽 房 托 限 制, 相 比 之 下, 中 国 已 经 改 革 开 放

2014 年 前 言 房 地 产 投 资 信 托 基 金 (Real Estate Investment Trusts,REITs) 在 海 外 早 已 发 展 成 熟, 而 香 港 政 府 去 年 也 进 一 步 准 备 放 宽 房 托 限 制, 相 比 之 下, 中 国 已 经 改 革 开 放 研 究 报 告 REITs 中 国 路 2014 年 2014 年 前 言 房 地 产 投 资 信 托 基 金 (Real Estate Investment Trusts,REITs) 在 海 外 早 已 发 展 成 熟, 而 香 港 政 府 去 年 也 进 一 步 准 备 放 宽 房 托 限 制, 相 比 之 下, 中 国 已 经 改 革 开 放 三 十 年, 对 房 托 发 展 至 今 还 未

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

Microsoft Word - A_Daily20151103

Microsoft Word - A_Daily20151103 陳 鳳 珠, Ellie Chan 高 曉 慶, Stanley Kao 申 萬 宏 源 研 究 ( 香 港 ) 有 限 公 司 申 萬 宏 源 A 股 日 評 - Shenwan Hongyuan A-Share Daily Notes ellie.chan@swhyhk.com stanley.kao@swhyhk.com 2015 年 11 月 3 日 星 期 二 (852) 2509-8431

More information

Microsoft Word - A_Daily20160229

Microsoft Word - A_Daily20160229 高 曉 慶, Stanley Kao 陳 漢 輝, Freddy Chan 申 萬 宏 源 研 究 ( 香 港 ) 有 限 公 司 申 萬 宏 源 A 股 每 日 資 訊 - Shenwan Hongyuan A-Share Daily Notes stanley.kao@swhyhk.com freddy.hf.chan@swhyhk.com 2016 年 2 月 29 日 星 期 一 (852)

More information

Microsoft Word - A_Daily20160329

Microsoft Word - A_Daily20160329 高 曉 慶, Stanley Kao 陳 漢 輝, Freddy Chan 申 萬 宏 源 研 究 ( 香 港 ) 有 限 公 司 申 萬 宏 源 A 股 每 日 資 訊 - Shenwan Hongyuan A-Share Daily Notes stanley.kao@swhyhk.com freddy.hf.chan@swhyhk.com 2016 年 3 月 29 日 星 期 二 (852)

More information

(Microsoft PowerPoint - 2015A UPEC IR ppt \(cn\) \(NDR\)4.8 [\317\340\310\335\304\243\312\275])

(Microsoft PowerPoint - 2015A UPEC IR ppt \(cn\) \(NDR\)4.8 [\317\340\310\335\304\243\312\275]) 股 票 代 號 :1216 TT 2015 全 年 度 業 績 發 佈 (2016.4.11 更 新 ) Disclaimers The information contained in this presentation is intended solely for your personal reference. Such information is subject to change without

More information

AI-AUTO-011 Saflex® Advanced PVB - Color Interlayer (Chinese)

AI-AUTO-011 Saflex® Advanced PVB - Color Interlayer (Chinese) Saflex Saflex (PVB) / Saflex B Saflex PVB 96% Saflex PVB Saflex PVB Saflex Saflex PVB * RB47 367700 x x x x x RB47 377800 / x x x x x RB47 547800 x x x x x RB47 147800 x x x x x RB47 156100 x x x x RB47

More information

Applied Biosystems StepOne™ Real-Time PCR System User Bulletin: StepOne™ System Updates (PN A / SN 117UB20-01)

Applied Biosystems StepOne™ Real-Time PCR System User Bulletin: StepOne™ System Updates (PN A / SN 117UB20-01) Applied Biosystems StepOne Real-Time PCR System ЪßÕ ³Ê Applied Biosystems StepOne Real-Time PCR System StepOne 2007 3............................................................... 2...............................................................

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

PCPDbooklet_high-res.pdf

PCPDbooklet_high-res.pdf MISSION STATEMENT To secure the protection of privacy of the individual with respect to personal data through promotion, monitoring and supervision of compliance with the Ordinance. WHO WE ARE personal

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

<4D6963726F736F667420576F7264202D20B6BCB0EE5FB1B8B0B85F5B323031305DB8BD32323934A1AA32353136BAC52DB5D8CCFABDA8D6FEB9A4B3CCD2BBC7D0CFD5B8BDBCD3CFD5CCF5BFEE2E646F63>

<4D6963726F736F667420576F7264202D20B6BCB0EE5FB1B8B0B85F5B323031305DB8BD32323934A1AA32353136BAC52DB5D8CCFABDA8D6FEB9A4B3CCD2BBC7D0CFD5B8BDBCD3CFD5CCF5BFEE2E646F63> 都 邦 财 产 保 险 股 份 有 限 公 司 地 铁 建 筑 工 程 一 切 险 附 加 险 条 款 ( 保 监 会 备 案 编 号 : 都 邦 ( 备 案 )[2010] 附 2294-2516 号 ) 地 铁 工 程 保 险 附 加 险 条 款 适 用 于 各 类 工 程 保 险, 包 括 扩 展 类 限 制 类 和 规 范 类 三 大 类 别, 共 223 个 附 加 险 条 款, 其 中

More information

6 4 6 5 5 2 2 3 1 2 3 1 6 6 6 6 5 5 5 2 2 4 126% * * GOLD COAST OFFICE. Cnr 2681 Gold Coast Highway and Elizabeth Avenue, Broadbeach Queensland 4218 PHONE 07 5531 8188 www.emandar.com.au Whilst every

More information

HKG_ICSS_FTO_sogobrilingual_100_19Feb2016_31837_tnc

HKG_ICSS_FTO_sogobrilingual_100_19Feb2016_31837_tnc Terms and conditions: 1. The extra 5 Membership Rewards points promotion at SOGO ( the Promotion Offer ) is valid for spending only at SOGO Department Store at Causeway Bay and Tsim Sha Tsui within the

More information

601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999 2010 20082008 2000 197

601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999 2010 20082008 2000 197 BANK OF CHINA LIMITED 3988 2010 8 26 ** ** *** # Alberto TOGNI # # # * # 1 601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999

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

一 財 團 法 人 世 聯 倉 運 文 教 基 金 會 2016 CTW 物 流 論 文 獎 徵 選 辦 法 一 申 請 資 格 凡 全 國 各 界 之 物 流 人 才 於 當 年 度 或 前 一 年 度 所 完 成 且 未 經 公 開 出 版 ( 研 討 會 發 表 碩 博 士 論 文 視 作 未 經 公 開 出 版 ) 之 中 文 研 究 論 文 皆 可 報 名 參 加 ; 惟 同 篇 論 文 應

More information

L360/L363

L360/L363 NPD5195-00 TC Seiko Epson Corporation Epson Epson 2014 Seiko Epson Corporation.All rights reserved. 2 EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Epson Corporation PRINT Image Matching PRINT

More information

Microsoft PowerPoint - IAS 21 - IFRS宣導會.pptx

Microsoft PowerPoint - IAS 21 - IFRS宣導會.pptx IAS 21 Nov 19, 2010 Agenda Page 1 1 2 4 3 11 4 17 5 IFRS 23 Section 1 Section 1 WHY IAS 21? IAS 21 2 Section 1 Determination Functional Currency Presentation Currency First Time Adoption IFRS IAS 21 2

More information

Microsoft Word - SH090330.doc

Microsoft Word - SH090330.doc 2009 年 3 月 30 日 環 球 指 數 上 周 收 市 價 一 星 期 變 化 百 分 率 四 星 期 變 化 百 分 率 恆 生 指 數 14,119.50 +1285.99 +10.02% +1307.93 +10.21% 國 企 指 數 8,481.22 +985.26 +13.14% +1578.38 +22.87% 上 海 綜 合 指 數 2,374.44 +93.35 +4.09%

More information

SA2RGA Chinese user manual

SA2RGA Chinese user manual www.philips.com/welcome SA2RGA02 SA2RGA04 SA2RGA08 ZH-HK sa2rga_um_02_20zht.indd 1 2/24/10 12:06:56 PM 1 2 2 4 2 RAGA 6 6 3 7 7 7 7 8 RAGA 9 RAGA 9 9 18 FM ( ) 18 18 18 18 19 RAGA 19 10 20 11 22 22 12

More information

AD Y

AD Y FUJITSU Semiconductor FRAM FUJITSU SEMICONDUCTOR LIMITED , FRAM 1969, 47, FRAM Ferroelectric Random Access Memory 1995FRAM, 18, 45, 200 , FRAMIC,, RFID,,, FRAM,,,,,, Ferroelectric Random Access Memory

More information

Easyprint 产品手册 Compact CM Compact IM

Easyprint 产品手册 Compact CM Compact IM Easyprint 产品手册 Compact CM Compact IM P Compact CM Compact IM Easyprint A/S 2018. Easyprint A/S End User License Agreement You have acquired a device ( DEVICE ) that includes software licensed by Easyprint

More information

QQGQ2.E Power Supplies, Information Technology Equipment Including Ele... 1/10

QQGQ2.E Power Supplies, Information Technology Equipment Including Ele... 1/10 QQGQ2.E232014 - Power Supplies, Information Technology Equipment Including Ele... 1/10 QQGQ2.E232014 Power Supplies, Information Technology Equipment Including Electrical Business Equipment - Component

More information

Layout 1

Layout 1 Celebrating The First Decade 风 雨 十 年 铸 就 辉 煌 Brooklands new Media Premier Corporate Publishers 布 鲁 克 蓝 新 媒 体 公 司 出 版 并 与 新 华 通 讯 社 协 诚 合 作 A Brooklands New Media Publication In Association With Xinhua

More information

XP-225 Series

XP-225 Series NPD5089-01 TC Seiko Epson Corporation Epson Epson 2014 Seiko Epson Corporation.All rights reserved. 2 EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Epson Corporation PRINT Image Matching PRINT

More information

:5-6

:5-6 License Agreement for Bible Texts These Scriptures: May not be altered or modified in any form. They must remain in their original context. May not be sold or offered for sale in any form. May not be used

More information

Epson Perfection V39

Epson Perfection V39 NPD5155-01 TC Seiko Epson Corporation Epson Epson 2014 Seiko Epson Corporation.All rights reserved. 2 EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Epson Corporation Microsoft, Windows, and Windows

More information

The presentation is prepared by BH Global Corporation Limited. (the Company ) and is intended solely for your personal reference and is strictly confi

The presentation is prepared by BH Global Corporation Limited. (the Company ) and is intended solely for your personal reference and is strictly confi 2016 2017 3 14 The presentation is prepared by BH Global Corporation Limited. (the Company ) and is intended solely for your personal reference and is strictly confidential. The information contained in

More information

2

2 2 3 . 4 5 6 1 2 3 bk bl bm 9 8 7 6 4 5 bn bo bp 1 2 3 p 4 5 6 7 8 9 bk bl 0 bm bn bo bp 7 . *. *. 8 .. 1. 9 . 1. 2.. 1. 2. 10 1. 11 . 3 1 2 u 12 . 13 . 1 2 USB 1 2 u p 14 . 15 16 . p p 0 p. p 17 1. 2.

More information

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

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

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

MergedFile

MergedFile 模块 6 6.0 目标 本实验的目的是连接用于探索机器人世界的循线传感器, 参见图 1 1. 你将学习 C 语言中的函数, 条件, 循环和运算 2. 你将使用 GPIO 执行输入和输出 3. 你将了解光如何转换为电压, 以及电压如何转换为二进制 4. 你将连接循线传感器到微控制器 小知识 : 通用输入输出 (GPIO) 是在微控制器上执行 I / O 的最简单, 最普遍的方法 你在本实验中连接的传感器将允许机器人探索其世界

More information

目 录 I. 出 口 单 证 业 务... 3 1. 正 本 提 单 签 发... 3 2. 提 单 更 改 ( 提 单 已 经 签 发 )... 3 3.Seaway bill 提 单 签 发... 4 4. 电 放... 4 5. 第 三 地 / 目 的 港 签 单... 4 6. 船 证 明.

目 录 I. 出 口 单 证 业 务... 3 1. 正 本 提 单 签 发... 3 2. 提 单 更 改 ( 提 单 已 经 签 发 )... 3 3.Seaway bill 提 单 签 发... 4 4. 电 放... 4 5. 第 三 地 / 目 的 港 签 单... 4 6. 船 证 明. Counter Business Quick Reference (Xiamen) ( 厦 门 前 台 业 务 快 速 指 南 ) Last Updated on Nov. 1st, 2015 目 录 I. 出 口 单 证 业 务... 3 1. 正 本 提 单 签 发... 3 2. 提 单 更 改 ( 提 单 已 经 签 发 )... 3 3.Seaway bill 提 单 签 发... 4 4.

More information

經濟部智慧財產局

經濟部智慧財產局 經 濟 部 智 慧 財 產 局 我 國 著 作 權 合 理 使 用 實 務 見 解 之 研 究 期 末 報 告 書 執 行 單 位 益 思 科 技 法 律 事 務 所 中 華 民 國 一 一 年 十 二 月 八 日 I 我 國 著 作 權 合 理 使 用 實 務 見 解 之 研 究 期 末 報 告 書 計 畫 主 持 人 賴 文 智 : 益 思 科 技 法 律 事 務 所 所 長 臺 灣 大 學 法

More information

专 业 为 本 客 户 为 先 北 京 康 信 知 识 产 权 代 理 有 限 责 任 公 司 是 一 家 经 相 关 主 管 部 门 批 准, 具 有 国 内 外 专 利 商 标 代 理 资 格, 能 够 提 供 全 方 位 知 识 产 权 代 理 服 务 的 法 律 服 务 机 构 公 司 成

专 业 为 本 客 户 为 先 北 京 康 信 知 识 产 权 代 理 有 限 责 任 公 司 是 一 家 经 相 关 主 管 部 门 批 准, 具 有 国 内 外 专 利 商 标 代 理 资 格, 能 够 提 供 全 方 位 知 识 产 权 代 理 服 务 的 法 律 服 务 机 构 公 司 成 康 信 知 识 产 权 杂 志 中 文 版 2012 年 第 1 期 总 第 65 期 我 国 商 标 申 请 审 查 周 期 缩 至 10 个 月 凝 智 聚 力 顺 势 作 为 康 信 2012 年 会 圆 满 结 束 中 美 两 国 外 观 设 计 专 利 制 度 比 较 欧 洲 专 利 局 上 调 专 利 申 请 相 关 费 用 专 利 布 局 海 外 如 何 做 到 " 事 半 功 倍 "

More information

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc 聖 保 羅 男 女 中 學 學 年 中 一 入 學 申 請 申 請 須 知 申 請 程 序 : 請 將 下 列 文 件 交 回 本 校 ( 麥 當 勞 道 33 號 ( 請 以 A4 紙 張 雙 面 影 印, 並 用 魚 尾 夾 夾 起 : 填 妥 申 請 表 並 貼 上 近 照 小 學 五 年 級 上 下 學 期 成 績 表 影 印 本 課 外 活 動 表 現 及 服 務 的 證 明 文 件 及

More information

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

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

More information

公平交易法損害賠償制度之功能與詮釋

公平交易法損害賠償制度之功能與詮釋 2 2001 12 1 1 2 < > 29 1 1999 3 2 < > 44 354 1991 4 5 1986 6 3 517-522 1993 < > 2000 < > 6 1 1998 4 2001 12 7 86-90 1994 < > 58 1997 4 8 < N > 60 4 105-1061985 9 6 27-34 6 100-101< > 44 19-211991 6 2001

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

Autodesk Product Design Suite Standard 系统统需求 典型用户户和工作流 Autodesk Product Design Suite Standard 版本为为负责创建非凡凡产品的设计师师和工程师提供供基本方案设计和和制图工具, 以获得令人惊叹叹的产品

Autodesk Product Design Suite Standard 系统统需求 典型用户户和工作流 Autodesk Product Design Suite Standard 版本为为负责创建非凡凡产品的设计师师和工程师提供供基本方案设计和和制图工具, 以获得令人惊叹叹的产品 Autodesk Product Design Suite Standard 20122 系统统需求 典型用户户和工作流 Autodesk Product Design Suite Standard 版本为为负责创建非凡凡产品的设计师师和工程师提供供基本方案设计和和制图工具, 以获得令人惊叹叹的产品设计 Autodesk Product Design Suite Standard 版本包包括以下软件产产品

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

ATA2536T

ATA2536T ATA2536T 低 压 IR 接 收 器 ASSP DATASHEET 特 性 高 集 成 度 器 件 : 除 管 脚 二 极 管 外, 无 外 接 部 件 电 压 范 围 : 2.7V~5.5V 采 用 自 动 化 灵 敏 度 适 应 (AGC) 技 术 和 自 动 化 强 信 号 适 应 (ATC) 技 术, 具 有 极 高 的 灵 敏 度 采 用 电 源 电 压 自 适 应 技 术 强 大

More information

目 錄 使 用 者 介 面... 3 檔 案 頁 籤... 3 配 置... 4 狀 態 列... 4 功 能 區... 5 說 明... 5 文 件... 7 修 訂 雲 形... 7 標 註... 8 文 字... 9 幾 何 中 心 點 的 物 件 鎖 點... 10 等 角 製 圖 格 線.

目 錄 使 用 者 介 面... 3 檔 案 頁 籤... 3 配 置... 4 狀 態 列... 4 功 能 區... 5 說 明... 5 文 件... 7 修 訂 雲 形... 7 標 註... 8 文 字... 9 幾 何 中 心 點 的 物 件 鎖 點... 10 等 角 製 圖 格 線. AutoCAD 2016 新 功 能 預 覽 指 南 編 譯 版 本 :Y150327, 內 容 僅 供 學 習 參 考, 所 有 訊 息 請 以 官 方 資 訊 為 準, 更 多 資 訊 請 下 載 原 文 PDF 檔 或 觀 賞 Youtube 頻 道 的 示 範 影 片 Design every detail with Autodesk AutoCAD software, one of the

More information

2

2 40 2 3 4 5 ^ ^ 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 PLEASE AFFIX STAMP HERE Diabetes Hongkong Unit 1802, 18/F., Tung Hip Commercial Bldg., 244-252 Des Voeux Rd C, HK. Diabetes Hongkong membership

More information

2

2 2 3 4 5 6 7 8 bq bs bt br cmcnco cp cq cl ck 6 7 8 9 2 1 3 5 4 bn bk bl bm bo bp 1 2 3 p 4 5 6 7 8 9 bk bl 0 bm bn bo bp bq br bs bt ck cl cm 0 cn co cp p cq . cm cl ck bt bs br 1 2 3 4 5 6 7 8 9 bk bl

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

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

Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1-1MRS755673

Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1-1MRS755673 Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1 - Contents MicroSCADA Pro Portal Marketing and sales Ordering MicroSCADA Pro Partners Club 2005 ABB - 2 - MicroSCADA Pro - Portal Imagine that

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

供 应 倍 增, 需 求 倍 增? 引 言 与 本 报 告 共 同 发 布 的 2020 年 办 公 楼 市 场 城 市 报 告 上 海 : 打 造 中 国 的 国 际 化 城 市 描 绘 了 一 幅 关 于 上 海 办 公 楼 市 场 未 来 发 展 的 宏 观 蓝 图 本 报 告 将 深 入 挖

供 应 倍 增, 需 求 倍 增? 引 言 与 本 报 告 共 同 发 布 的 2020 年 办 公 楼 市 场 城 市 报 告 上 海 : 打 造 中 国 的 国 际 化 城 市 描 绘 了 一 幅 关 于 上 海 办 公 楼 市 场 未 来 发 展 的 宏 观 蓝 图 本 报 告 将 深 入 挖 2020 年 上 海 办 公 楼 市 场 展 望 : 供 应 倍 增, 需 求 倍 增? 2020 年 办 公 楼 市 场 城 市 报 告 2014 年 3 月 供 应 倍 增, 需 求 倍 增? 引 言 与 本 报 告 共 同 发 布 的 2020 年 办 公 楼 市 场 城 市 报 告 上 海 : 打 造 中 国 的 国 际 化 城 市 描 绘 了 一 幅 关 于 上 海 办 公 楼 市 场 未

More information

教區禮儀委員會

教區禮儀委員會 2003 1 20 ... 1... 2... 3 1.1 (1963)...3 1.2 (1992)...4...5...6...7...8 1.3.1 (1983)...9 1.3.2...10... 12 2.1...12 2.2...13 2.3...14 2.4...15... 16 3.1...16 3.2...17 3.3...18 3.4...19 3.5.1...20 3.5.2...21...

More information

Microsoft Word - 0000000673_4.doc

Microsoft Word - 0000000673_4.doc 香 港 特 別 行 政 區 政 府 知 識 產 權 署 商 標 註 冊 處 Trade Marks Registry, Intellectual Property Department The Government of the Hong Kong Special Administrative Region 在 註 冊 申 請 詳 情 公 布 後 要 求 修 訂 貨 品 / 服 務 說 明 商 標

More information

SC-127.doc

SC-127.doc (accountability) e.g. AMSE CODE The Code contains mandatory requirements, specific prohibitions, and mandatory guidance for construction activities. The Code does not address all aspects of these activities

More information

MergedFile

MergedFile 模块 3 3.0 目标 本实验的目标是介绍 Cortex M 架构 1. 您将学习有关寄存器 RAM 和 flash ROM 的知识 2. 您将编写一个含有输入和输出参数的汇编函数, 其中包含条件执行和数值 运算 3. 您将学习利用单步运行 断点和查看窗口进行调试 4. 您将使用一种名为黑匣子函数的自动测试方法来验证您的算法是否正确 小知识 : 我们将用 C 语言编写机器人的软件代码 然而编译器将会把

More information

2. 贵 阳 沙 文 工 业 园 汉 方 药 业 新 工 厂 资 本 性 支 出 费 用 高 估 : 根 据 我 们 的 访 谈 得 知, 在 2014 财 年, 截 至 2014 年 6 月 30 日, 该 项 目 仅 完 工 约 30% 因 此, 仅 有 人 民 币 2.7-3 千 万 元 (

2. 贵 阳 沙 文 工 业 园 汉 方 药 业 新 工 厂 资 本 性 支 出 费 用 高 估 : 根 据 我 们 的 访 谈 得 知, 在 2014 财 年, 截 至 2014 年 6 月 30 日, 该 项 目 仅 完 工 约 30% 因 此, 仅 有 人 民 币 2.7-3 千 万 元 ( 公 司 名 称 : 华 瀚 健 康 产 业 控 股 有 限 公 司 HK 00587 行 业 : 健 康 产 业 推 荐 评 级 : 强 烈 卖 出 价 格 ( 截 止 22/09/2016): HKD 0.55 总 市 值 : HKD 40.7 亿 日 均 交 易 量 : 388 万 股 (3 个 月 平 均 值 ) 目 标 价 : HKD 0.00 华 瀚 健 康 产 业 控 股 有 限 公 司

More information

Microsoft Word - Appendices (Chi) revised August 2014

Microsoft Word - Appendices (Chi) revised August 2014 附 錄 識 別 親 密 伴 侶 暴 力 事 件 附 錄 I ( 第 1 頁, 共 5 頁 ) 親 密 伴 侶 暴 力 事 件 對 受 害 人 的 影 響 1. 自 卑 及 缺 乏 自 信 在 施 虐 者 持 續 斥 責 下, 受 害 人 會 慢 慢 接 受 負 面 評 語, 並 開 始 相 信 自 己 必 須 依 賴 施 虐 者 才 能 生 存 隨 着 時 間 過 去, 受 害 人 的 自 尊 和

More information

* 1 * *1 *2 2

* 1 * *1 *2 2 * 1 * 2 1 2 *1 *2 2 3 1 2 7 bo 8 9 6 5 4 3 bn bm bl bk 1 2 3 * 4 5 6 7 8 9 bk bl p bq bp bm * bn bo bp bq * br br 8 . bs br bq bp bo 1234567 bo bnbm bl 8 9 bk 1 2 3 4 5 6 7 8 9 bk b bl bm bn bo bp

More information

Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower thresh

Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower thresh SWOT 5 Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower threshold. All of these lead to aggravate drastically

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

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

216 年 8 月 市 场 概 述 216 年 月 日, 通 州 出 台 了 商 住 限 购 新 政, 规 定 新 建 商 业 办 公 项 目 应 当 按 照 规 划 用 途 销 售, 并 只 能 出 售 给 企 事 业 单 位 或 社 会 组 织, 且 上 述 单 位 购 买 后 再 出 售 时,

216 年 8 月 市 场 概 述 216 年 月 日, 通 州 出 台 了 商 住 限 购 新 政, 规 定 新 建 商 业 办 公 项 目 应 当 按 照 规 划 用 途 销 售, 并 只 能 出 售 给 企 事 业 单 位 或 社 会 组 织, 且 上 述 单 位 购 买 后 再 出 售 时, Savills World Research Beijing 市 场 简 报 销 售 及 投 资 216 年 8 月 概 述 总 体 来 看, 本 季 度 北 京 物 业 市 场 投 资 热 度 不 减 图 片 : 空 港 国 际, 顺 义 区 大 宗 整 售 市 场 本 季 度 见 证 两 宗 整 售 交 易, 成 交 总 金 额 达 48. 亿 元 人 民 币 截 至 目 前,216 年 大 宗

More information

untitled

untitled and Due Diligence M&A in China Prelude and Due Diligence A Case For Proper A Gentleman s Agreement? 1 Respect for the Rule of Law in China mandatory under law? CRITICAL DOCUMENTS is driven by deal structure:

More information

* RRB *

* RRB * *9000000000RRB0010040* *9000000000RRB0020040* *9000000000RRB0030040* *9000000000RRB0040040* *9000000000RRC0010050* *9000000000RRC0020050* *9000000000RRC0030050* *9000000000RRC0040050* *9000000000RRC0050050*

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

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

换向阀 线圈系列 CO1 产品手册

换向阀 线圈系列 CO1 产品手册 系列 CO1 产品手册 2 Rexroth Pneumatics 系列 CO1 线圈宽度 30 mm A 型 3 线圈宽度 22 mm B 型 5 线圈宽度 15 mm 类型 C, 线圈组 7 线圈宽度 15 mm M8, 线圈组 9 补充性产品, 系列 CO1 线圈 online Rexroth Pneumatics 3 线圈宽度 30 mm A 型 标准化电路接口 EN 175301-803,

More information

凡 事 之 始 是 工 作 至 关 重 要 的 一 部 分 柏 拉 图

凡 事 之 始 是 工 作 至 关 重 要 的 一 部 分 柏 拉 图 幼 儿 培 育 署 婴 幼 儿 培 育 框 架 凡 事 之 始 是 工 作 至 关 重 要 的 一 部 分 柏 拉 图 婴 幼 儿 培 育 框 架 婴 幼 儿 培 育 框 架 2013 Early Childhood Development Agency Republic of Singapore All rights reserved. No part of this book may be reproduced

More information

NOISE CANCELLING HEADPHONES 700

NOISE CANCELLING HEADPHONES 700 NOISE CANCELLING HEADPHONES 700 1. 2. 3. 4. 5. 6. 7. / 8. / Bose 2 3 UL CSA VDE CCC 3 FCC 15 B / Bose Corporation FCC 15 RSS (1) (2) FCC CAN ICES-3 (B)/NMB-3(B) Bose Corporation 2014/53/EU www.bose.com/compliance

More information

FILTRON 1. DC AC AC 220V 50HZ 2. 1 1 1 3. / / / / 4. 1) 2 3 4 5 6 5. 6. 7. 8. 9. / 10. 1. 2. 3. 4. 5. 6. 7. DC AC FILTRON DC AC FILTRON DC 12V 12VDC D

FILTRON 1. DC AC AC 220V 50HZ 2. 1 1 1 3. / / / / 4. 1) 2 3 4 5 6 5. 6. 7. 8. 9. / 10. 1. 2. 3. 4. 5. 6. 7. DC AC FILTRON DC AC FILTRON DC 12V 12VDC D 2006 4 27 1 JY FILTRON 1. DC AC AC 220V 50HZ 2. 1 1 1 3. / / / / 4. 1) 2 3 4 5 6 5. 6. 7. 8. 9. / 10. 1. 2. 3. 4. 5. 6. 7. DC AC FILTRON DC AC FILTRON DC 12V 12VDC DC FILTRON AC 24VAC 24VAC AC 24VAC AC

More information

市 场 综 述 三 季 度, 上 海 投 资 市 场 交 易 量 持 续 攀 升, 共 有 八 宗 主 要 交 易 达 成, 交 易 金 额 共 计 人 民 币 160 亿 元, 环 比 增 长 59% 投 资 者 尤 其 是 国 际 投 资 者, 逐 渐 增 购 租 金 收 入 稳 定 的 核 心

市 场 综 述 三 季 度, 上 海 投 资 市 场 交 易 量 持 续 攀 升, 共 有 八 宗 主 要 交 易 达 成, 交 易 金 额 共 计 人 民 币 160 亿 元, 环 比 增 长 59% 投 资 者 尤 其 是 国 际 投 资 者, 逐 渐 增 购 租 金 收 入 稳 定 的 核 心 Savills World Research Shanghai 市场简报 投资 2015年10月 图片 企业天地1号 2号楼 概述 国际投资者调整投资策略 逐渐增加核心资产收购 不再局限于资产增值投资机会 三季度共达成八宗主要成交 交 易总额约人民币160亿元 环比增长 59% 国际投资者的重心逐渐转向核 心资产 十幅土地高价成交 成交楼面价均 超每平方米人民币20,000元 平均溢价 率为49.5%

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

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

Microsoft PowerPoint - TTCN-Introduction-v5.ppt

Microsoft PowerPoint - TTCN-Introduction-v5.ppt Conformance Testing and TTCN 工研院無線通訊技術部林牧台 / Morton Lin 03-5912360 mtlin@itri.org.tw 1 Outline Introduction and Terminology Conformance Testing Process 3GPP conformance testing and test cases A real world

More information

使用 Adobe® Extension Manager CS4

使用 Adobe® Extension Manager CS4 ADOBE EXTENSION MANAGER CS4 2008 Adobe Systems Incorporated. Windows Mac OS Adobe Extension Manager 2.0 Adobe Systems Incorporated : Adobe Systems Incorporated Adobe Systems Incorporated Adobe, the Adobe

More information

這 是 醫 生 在 小 兒 的 初 步 診 斷 的 判 語 這 樣 的 一 段 話, 令 我 望 子 成 龍 的 美 夢 碎 了 醣 豆 豆 大 夢 想 十 一 年 前 的 資 訊 沒 有 今 天 的 發 達, 互 聯 網 還 是 一 個 很 奢 侈 的 東 西, 加 上 黏 多 醣 症 這 個 罕

這 是 醫 生 在 小 兒 的 初 步 診 斷 的 判 語 這 樣 的 一 段 話, 令 我 望 子 成 龍 的 美 夢 碎 了 醣 豆 豆 大 夢 想 十 一 年 前 的 資 訊 沒 有 今 天 的 發 達, 互 聯 網 還 是 一 個 很 奢 侈 的 東 西, 加 上 黏 多 醣 症 這 個 罕 這 是 醫 生 在 小 兒 的 初 步 診 斷 的 判 語 這 樣 的 一 段 話, 令 我 望 子 成 龍 的 美 夢 碎 了 醣 豆 豆 大 夢 想 十 一 年 前 的 資 訊 沒 有 今 天 的 發 達, 互 聯 網 還 是 一 個 很 奢 侈 的 東 西, 加 上 黏 多 醣 症 這 個 罕 有 的 遺 傳 病, 醫 生 對 於 它 的 認 識 也 不 太 深, 何 況 我 這 個 平 凡

More information

EPSON Easy Interactive Tools Ver.4.2 Operation Guide

EPSON Easy Interactive Tools Ver.4.2 Operation Guide Esy Interctive Tools Ver.4.2 Esy Interctive Tools Ver.4.2 Esy Interctive Tools Esy Interctive Tools () s 11 s 10 () s () 10 s 16 s 18 s 26 PowerPoint s 27 Esy Interctive Tools EsyMP Multi PC Projection

More information

附 件 六 附 件 七 附 件 八 费 用 报 表 67 专 用 帐 户 调 节 表 68 支 付 报 告 72 附 件 九 : 登 录 世 行 网 址 申 请 表 82 附 件 十 < 关 于 印 发 «世 界 银 行 贷 款 项 目 会 计 核 算 办 法» 的 通 知 >( 财 际 字 [20

附 件 六 附 件 七 附 件 八 费 用 报 表 67 专 用 帐 户 调 节 表 68 支 付 报 告 72 附 件 九 : 登 录 世 行 网 址 申 请 表 82 附 件 十 < 关 于 印 发 «世 界 银 行 贷 款 项 目 会 计 核 算 办 法» 的 通 知 >( 财 际 字 [20 世 界 银 行 贷 款 项 目 财 务 管 理 与 支 付 手 册 目 录 页 码 一 财 务 管 理 4 1. 世 界 银 行 对 项 目 财 务 管 理 的 要 求 4 2. 项 目 财 务 报 告 5 3. 项 目 审 计 安 排 与 相 关 处 理 6 4. 世 界 银 行 新 金 融 产 品 8 5. 项 目 财 务 软 件 8 二 贷 款 支 付 10 1. 世 界 银 行 与 世 界

More information

01CP-WX3030WNetc_CO_ENG.indd

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

More information

會訊2014.indd

會訊2014.indd The Association of Licentiates of Medical Council of Hong Kong Newsletter September 2014 二 零 一 四 年 九 月 第 六 十 四 期 和 平 保 普 選, 努 力 為 香 港 甘 肅 省 七 天 之 旅 熱 鬧 的 七 一 散 文 二 詩 醫 委 會 專 業 資 格 引 用 指 引 日 本 旅 遊 雜 感 風

More information

untitled

untitled VOL 18 NO 4 (Supplement 1) Oct - Dec 2011 ISSN 1727-2874 The Pharmaceutical Society of Hong Kong The Practising Pharmacists Association of Hong Kong The Society of Hospital Pharmacists of Hong Kong HK$80.00

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

V6800/V6600 3D

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

More information

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

CANVIO_AEROCAST_CS_EN.indd

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

More information

StorageTek Virtual Storage Manager GUI - 安全指南

StorageTek Virtual Storage Manager GUI - 安全指南 StorageTek Virtual Storage Manager GUI 安 全 指 南 发 行 版 1.0 E72350-01 2015 年 4 月 StorageTek Virtual Storage Manager GUI 安 全 指 南 E72350-01 版 权 所 有 2015, Oracle 和 / 或 其 附 属 公 司 保 留 所 有 权 利 本 软 件 和 相 关 文 档 是

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

X LEF.indd

X LEF.indd Xbox 360 www.xbox.com/support Xbox Xbox Game Software / / 1 2 / / / / / / / / www.xbox.com/support 1 www.xbox.com/support ( URL Internet ) Microsoft Corporation ( ) Microsoft Microsoft 2010 Microsoft Corporation.

More information