Nuvoton ChipCorder One-Pin triggering Control Implementation Guide

Size: px
Start display at page:

Download "Nuvoton ChipCorder One-Pin triggering Control Implementation Guide"

Transcription

1 Nuvoton ChipCorder One-Pin triggering Control Implementation Guide Use only one GPIO pin to control a ChipCorder device - 1 -

2 2012 by Nuvoton Technology Corporation. All trademarks and registered trademarks of products and companies mentioned in this document belong to their respective owners. The information contained in this document is the exclusive intellectual property of Nuvoton Technology Corporation and shall not be reproduced without permission from Nuvoton. Nuvoton provides this document for reference purposes only in the design of ISD ChipCorder microcontroller-based systems. Nuvoton assumes no responsibility for errors or omissions. All data and specifications are subject to change without notice. For additional information, please contact: Nuvoton Technology Corporation at Important Notice Nuvoton products are not designed, intended, authorized or warranted for use as components in systems or equipment intended for surgical implantation, atomic energy control instruments, airplane or spaceship instruments, transportation instruments, traffic signal instruments, combustion control instruments, or for other applications intended to support or sustain life. Furthermore, Nuvoton products are not intended for applications wherein failure of Nuvoton products could result in or lead to a situation wherein personal injury, death or severe property or environmental damage could occur. Nuvoton customers using or selling these products for use in such applications do so at their own risk and agree to fully indemnify Nuvoton for any damages resulting from such improper use or sales

3 1. Introduction This documents aims to describe how to use only one GPIO pin to control a Nuvoton ChipCorder device. That is, by utilizing the Nuvoton ChipCorder s special features such as Voice Macro, GPIO triggering and Fast-Debounce, with a single GPIO pin a simple yet powerful and flexible control can be achieved so that the master MCU can select to play a random Voice Macro (VM) or Voice Prompt (VP), by sending a sequence of pulses following the timing specification defined in this document. This document applies on ISD15D00, ISD3800, ISD2100 and ISD2360 series devices. 2. Implementation The one-pin control of a Nuvoton ISD ChipCorder device is achieved by the cooperation of two parties: 1) the Voice Macro time machine running inside of the device after a trigger event occurs, 2) a sequence of GPIO triggers which is controlled by the master MCU. The two parties both need to run or control the event on one common time line. The underlying idea is to let the trigger happen at the right time when device is waiting for possible execution branch. Once triggered, the device internal Voice Macro machine starts to run: fetch and then execute the VM script command data from the flash memory. During the execution, it has to pause and give a time window for detecting if there is more trigger is yet to come. If another trigger is detected in this window, then the device will branch to execute another VM which is associated with this new trigger thanks to the GPIO trigger s preemptive execution nature; otherwise the device will stop the waiting and resume the execution and run to the end. On the other hand, the master MCU needs to generate the triggering edge on the IO line inside the VM waiting window following the spec which is defined in section 2.2, so that the two parties can work together and ensure the desired VM get triggered and executed. The following sections further describe the implementation details. 2.1 GPIO Trigger and Voice Macro - Fast de-bounce The one-pin control solution is only recommended for device which has fast de-bounce feature, so that the good system responsiveness can be achieved. After reset, by default the fast de-bounce is disabled and the de-bounce time is 20ms. Writing one to the fast de-bounce bit enables the fast de-bounce feature which requires only 8ns signal holding time. Refer to table 2-1 for fast de-bounce bit control configuration. The fast de-bounce requires clean triggering signal. Usually for fast de-bounce the triggering signal level transition should only be controlled by on board MCU through an IO port, not by button pressing

4 ISD2100 Register 0x17 bit5 - - x ISD2360 Register 0x17 bit5 - - x ISD15D00, ISD3800 Register 0x30 bit x - - Default: 0x81. 1: enable. 0: disable Default: 0x00 1: enable. 0: disable Default: 0xD1 1: enable. 0: disable Table 2-1 Fast De-bounce control configuration - Falling edge trigger To simplify the implementation, this guide uses falling edge trigger. The sample VPE project distributed along with this document also only uses the falling edge trigger. - Wakeup VM and GPIO associated VM Once a triggering event is detected in PD state, the device will first execute the Wakeup VM, and then execute the VM associated with the triggering pin. If the GPIO trigger happens in PU state, then the device will skip the Wakeup VM and only execute the GPIO associated VM. The implementation here assumes that the very first initial trigger always happens in PD state, and only uses the GPIO0 pin to generate the trigger. The index for GPIO0 associated VM is stored in R0. So after the first trigger, the device will always execute Wakeup VM and then the VM@R0, see Voice Macro Execution Flow Chat in Figure GPIO trigger preemption Voice Macro s execution is preemptive. That is, after triggered and during the VM execution, if another trigger event occurs, the device will stop the current VM execution and start to execute the VM associated with the new trigger. Because of this preemptive feature, it made possible that a sequence of triggering events happened on the same IO pin can let device jumping through VMs and eventually landing on the desired VM and only let that VM execute to finish. The trick is after the trigger, the command script changes the index stored in R0; so next trigger on the very same IO line will cause the VM pointed by new index preempt the current VM; and so on. Thus a chain of VM execution can be established. For detailed Voice Macro execution flow, please refer to figure GPIO Trigger Timing Control The critical part is inside of each VM a window frame should be given and the possible jumping trigger, which moves the execution along the chain, can only happen in this window. Inside that window, the device pauses VM execution, stays idle waiting for trigger. Once this waiting period is over, the device will resume the execution and play the real sound effect associated with that trigger

5 This way actually changes how the VM is associated. Instead of the association between the VM and the physical GPIO pin, the new association is established between VM and the number of triggers. In other words, to let the device play the right sound, the on board MCU should issue the right amount of triggers, or pulses. The timing of trigger, and also the pulse s width will be further explained below Voice Macro Description - Voice Macro Execution Flow Figure 2-1 shows the one-pin control Voice Macro execution flow. Please note that the first VM after Wakeup VM should be used for common initialization; and all the following VMs can be configured as task VMs, which means besides the index moving, the later part of the VM can do the real playback task. For more details on VM configuration, please refer to the sample project. GPRIO0 Trigger Detected when PD Execute Wakeup VM Execute Execute new Execute new Inside of the VM Inside of the new VM Enable Fast-Debounce... Change GPIO0 trigger VM index Change GPIO0 trigger VM index Wait a while ( play silence for 96ms or longer, then Wait_INT) Triggered during waiting? yes Wait a while ( play silence for 96ms or longer, then Wait_INT) Triggered during waiting? yes no no Continue executing current VM; Re-initialize GPIO0 Trigger VM index Continue executing current VM; Re-initialize GPIO0 Trigger VM index PD PD Figure 2-1 One-Pin Control Voice Macro Execution Flow - 5 -

6 - Sample Voice Macro There are four kinds Voice Macro to be implemented. The following is the explanation of the role for each kind of VM. POI VM Configure the falling edge trigger on GPIO0 pin; initialize the trigger VM index. Wakeup VM Enable fast de-bounce. Stop VM Increase trigger index, give waiting window, re-initialize the trigger index. Task VM Increase the trigger index, gives waiting window, re-initialize the trigger index before play a VP. POI VM Wakeup VM Figure 2-2 Sample POI VM and Wakeup VM - 6 -

7 Stop VM Task VM Figure 2-3 Sample Stop VM and Task VM 2.2 GPIO Trigger Timing Control This section defines the triggering timing. T STH TFTH Trig#0 Trig#1 Trig#2 Trig#n Figure 2-4 One-Pin Control Voice Macro Execution Flow - 7 -

8 Parameter Symbol MIN TYP MAX Unit Remark Slow De-Bounce Holding Time TSTH ~ ms Normal De- Bounce Fast De-Bounce Holding Time TFTH 50 - µs Table 2-2 Triggering Timing specification The first trigger referred as Trig#0 should always use slow de-bounce time which is about 30ms, because by default from PD state the normal (slow) de-bounce is in effect. The triggers following that should be all fast de-bounce triggers, and the de-bounce holding time can be >50 µs. To initialize the internal triggering index, the MCU can issue one trigger using long slow debounce holding time. Thus it s guaranteed that a STOP VM can be successfully invoked to run. Also, if a VM is executing and when its VP is playing, issuing only one GPIO trigger can stop that VM and re-initialize the trigger index. As a summary, the one-pin trigger VP/VM playback control is done by this: - Issue one trigger to stop, i.e. to initialize the trigger index. - Issue (n+1) triggers will play the VM with index n. The first trigger has slow de-bounce time; while all the following n triggers use fast de-bounce time. 2.3 Event processing Figure 2-5 further describes the underlying idea of one-pin trigger processing. The on board MCU sends a sequence of pulses to trigger the event. The duty cycle for each pulse can be 50%. Trig#0 uses the slow de-bounce time, so the MCU needs to hold IO low for 30ms. Once the VM machine is running, within the VM waiting window, the on board MCU needs to issue the following trigger again if a jumping is desired; otherwise a Stop/Initialization will be executed. The VM waiting window size can be very flexible, as long as user can make sure that the jumping trigger can happen in that window. All the jumping triggers use fast de-bounce holding time, which needs to be >50 µs for good reliability. Once the jumping stopped, and the waiting window is passed, then the device will execute the VM associated with the last jumping. The VM will re-initialize the trigger index before PD the device

9 Trig#0 Trig#1 Trig#2 Trig#n Outside Trigger Wkup_VM Execution fork after trigger New New New Device Operation Enable Fast De-bounce Wait for trigger Wait for trigger Wait for trigger Wait for trigger Time line Slow De-bounce (30ms) Fast De-bounce (50µs) Fast De-bounce (50µs) Fast De-bounce (50µs) No more trigger, run Job #n : GPIO trigger issued by MCU : VM execution time line : Waiting Window for trigger Figure 2-5 Event processing time line - 9 -

10 3. Revision History VERSION DATE REMARK Ver_0.1 Oct 24, 2012 Initial draft Ver_0.2 Oct 26, 2012 Description Update

APPLICATION NOTE. The Next Innovation in High Density and Low Pin Count. Key features

APPLICATION NOTE. The Next Innovation in High Density and Low Pin Count. Key features SpiStack is Winbond s new W25M series developed to meet the demand for higher density, while maintaining a low pin count of the SpiFlash packages. This innovation brought about the advantages of concurrent

More information

Nano102/112 Series Errata Sheet

Nano102/112 Series Errata Sheet Nano102/112 Series Errata Sheet Errata Sheet for 32-bit NuMicro Family Document Information Abstract Apply to This errata sheet describes the functional problem known at the release date of this document.

More information

Part Number Density Product Type Operation Temperature. W25Q80NESNIG 8Mb 1.2V Serial NOR Flash Memory Industrial (-40 C to +85 C)

Part Number Density Product Type Operation Temperature. W25Q80NESNIG 8Mb 1.2V Serial NOR Flash Memory Industrial (-40 C to +85 C) 1. INTRODUCTION This describes how to use the. The mbed enabled MCU board, which has an Arduino UNO R3 compatible terminal, is used in this description. 2. GENERAL DESCRIPTION The from Winbond Electronics

More information

USER GUIDE 1 INTRODUCTION 2 GENERAL DESCRIPTION. A) Mbed enabled MCU Board. B) Shield Board. Quad SPI Evaluation Kit

USER GUIDE 1 INTRODUCTION 2 GENERAL DESCRIPTION. A) Mbed enabled MCU Board. B) Shield Board. Quad SPI Evaluation Kit 1 INTRODUCTION The from Winbond Electronics is consist of Mbed enabled MCU board which has an Arduino UNO R3 compatible terminal and Shield Board, Daughter Board. This document describes how to use the.

More information

IEC Class B. Abstract. Apply to. Application Note of NUVOTON 32-bit NuMicro Family

IEC Class B. Abstract. Apply to. Application Note of NUVOTON 32-bit NuMicro Family of NUVOTON 32-bit NuMicro Family AN_1023 IEC60730-1 Class B Abstract IEC60730-1 is a safety standard for all home appliances sold in Europe. Nuvoton provides a sample code consists of low level software

More information

NUC442/472 Series Errata Sheet

NUC442/472 Series Errata Sheet NUC442/472 Series Errata Sheet Errata Sheet for 32-bit NuMicro Family Document Information Abstract Apply to This errata sheet describes the functional problem known at the release date of this document.

More information

for NuMicro NUC220 Series

for NuMicro NUC220 Series NuTiny-SDK-NUC220 User Manual for NuMicro NUC220 Series The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation and shall not be reproduced without

More information

ISD-DEMO2360 User Manual

ISD-DEMO2360 User Manual ISD-DEMO2360 User Manual The information contained in this document is the exclusive intellectual property of Nuvoton Technology Corporation and shall not be reproduced without permission from Nuvoton.

More information

NuSpeech Family N5132 High Sound Quality Voice Synthesizer Technical Reference Manual

NuSpeech Family N5132 High Sound Quality Voice Synthesizer Technical Reference Manual NuSpeech Family N5132 High Sound Quality Voice Synthesizer Technical Reference Manual The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation

More information

W29N08GV W29N08GV NAND FLASH MEMORY. 2 chip stack 8G-Bit. Release Date: August 26 th Revision A

W29N08GV W29N08GV NAND FLASH MEMORY. 2 chip stack 8G-Bit. Release Date: August 26 th Revision A 2 chip stack 8G-Bit W29N08GV NAND FLASH MEMORY 1 Revision A Table of Contents 1. GENERAL DESCRIPTION... 3 2. PACKAGE TYPES AND PIN CONFIGURATIONS... 4 3. MEMORY ARRAY ORGANIZATION... 8 4. DEVICE ID...

More information

N76E003 Series Errata Sheet

N76E003 Series Errata Sheet N76E003 Series Errata Sheet Errata Sheet for 8-bit 8051 Family Rev. 1.01 - Dec. 6, 2017 Document Information Abstract Apply to This errata sheet describes the functional problems known at the release date

More information

Mini51DE Series CMSIS BSP Directory

Mini51DE Series CMSIS BSP Directory Series CMSIS BSP Directory Directory Introduction for 32-bit NuMicro Family Mini51DE Directory Information Document Library SampleCode Driver reference manual and revision history. Driver header and source

More information

NuTiny-SDK-M051 User s Manual For NuMicro M051 Series

NuTiny-SDK-M051 User s Manual For NuMicro M051 Series NuTiny-SDK-M051 User s Manual For NuMicro M051 Series The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation and shall not be reproduced without

More information

NUC029FAE Board Support Package Directory Introduction. Rev

NUC029FAE Board Support Package Directory Introduction. Rev Board Support Package Directory Introduction Rev.3.00.000 The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation and shall not be reproduced

More information

NuTool PinView Revision History

NuTool PinView Revision History Revision 2.06 (Released 2019-02-26) 1. Supported ML51 for NuMicro 8051 series. 2. Supported M252 for NuMicro M23 series. Supported devices AU9100 series AU9110AN,LQFP48 M031 series M031AE,TSSOP20/TSSOP28/QFN33/LQFP48/LQFP64

More information

Winbond ACPI-STR Controller W83305S W83305G

Winbond ACPI-STR Controller W83305S W83305G Winbond ACPI-STR Controller W83305S W83305G W83305S Data Sheet Revision History PAGES DATES VERSION VERSION ON WEB MAIN CONTENTS 1 Apr./06 0.5 N.A. All version before 0.5 are for internal use only Please

More information

M480 Series Errata Sheet

M480 Series Errata Sheet M480 Series Errata Sheet Errata Sheet for 32-bit NuMicro Family Document Information Abstract Apply to This errata sheet describes the functional problem known at the release date of this document. M480

More information

Nuvoton 4T 8051-based Microcontroller NuTiny-SDK-N78E715 User Manual

Nuvoton 4T 8051-based Microcontroller NuTiny-SDK-N78E715 User Manual 4T 8051 8-bit Microcontroller Nuvoton 4T 8051-based Microcontroller NuTiny-SDK-N78E715 User Manual The information described in this document is the exclusive intellectual property of Nuvoton Technology

More information

Nuvoton Touch Key Series NT1160 Datasheet

Nuvoton Touch Key Series NT1160 Datasheet Nuvoton Touch Series Datasheet The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation and shall not be reproduced without permission from Nuvoton.

More information

Nuvoton 1T 8051-based Microcontroller NuTiny-SDK-N76E885 User Manual

Nuvoton 1T 8051-based Microcontroller NuTiny-SDK-N76E885 User Manual NUTINY-SDK- USER MANUAL 1T 8051 8-bit Microcontroller Nuvoton 1T 8051-based Microcontroller NuTiny-SDK- User Manual The information described in this document is the exclusive intellectual property of

More information

1. What is the ISD API (ISD.DLL)? 2. Three steps to use the ISD API

1. What is the ISD API (ISD.DLL)? 2. Three steps to use the ISD API This document is created for the purpose of ensuring the correct usage of the ISD.DLL. 1. What is the ISD API (ISD.DLL)? ISD API, delivered as ISD.DLL file, can be used to dynamically create a digital

More information

Interfacing a ICPlus s IP101A 100Mbps Ethernet PHY to NUC710A MAC Application Note V1.0

Interfacing a ICPlus s IP101A 100Mbps Ethernet PHY to NUC710A MAC Application Note V1.0 Interfacing a ICPlus s IP0A 00Mbps Ethernet PHY to NUC70A MAC Application Note V.0 Publication Release Date: Dec. 008 Support Chips: NUC70A/NUC745A Support Platforms: BSP The information in this document

More information

N3292x Development Board User Manual

N3292x Development Board User Manual N3292x Development Board User Manual NHS-N3292x-1-PC-2M02 NHS-N3292x-1-PC-2D02 NHS-CMOS-1-PC-2D12 Ver:2.0 V2.00.000 Edit version Ver Description 1.0 Preliminary 1.1 Add USB2.0 Host/Device signal quality

More information

NPCA110T Audio Enhancing Engine and DAC

NPCA110T Audio Enhancing Engine and DAC Audio Enhancing Engine and DAC General Description The Nuvoton device is a member of Nuvoton s Sound Enhancing family optimized for TV applications. The integrates Waves Audio 3 sound enhancement algorithms.

More information

NUC505 ICP Programming Tool User Guide

NUC505 ICP Programming Tool User Guide NUC505 ICP Programming Tool User Guide Application Note for 32-bit NuMicro Family Document Information Abstract Apply to This document introduces how to use the ICP programming tool to access SPI Flash/MTP

More information

W83176R-401 W83176G-401

W83176R-401 W83176G-401 W83176R-401 W83176G-401 Winbond Current Mode Differential Buffer for PCI Express and SATA Date: May,2006 Revision: 0.6 W83176R-401/W83176G-401 Datasheet Revision History PAGES DATES VERSION WEB VERSION

More information

M2351 Trusted Boot. Application Note for 32-bit NuMicro Family

M2351 Trusted Boot. Application Note for 32-bit NuMicro Family M2351 Trusted Boot Application Note for 32-bit NuMicro Family Document Information Abstract Apply to Introduce the M2351 Secure Bootloader, Secure Boot verification mechanism, and how it works to perform

More information

Nuvoton Nu-Link Debug Adapter User Manual

Nuvoton Nu-Link Debug Adapter User Manual Nuvoton Nu-Link Debug Adapter User Manual The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation and shall not be reproduced without permission

More information

W83176R-400 W83176G-400

W83176R-400 W83176G-400 W83176R-400 W83176G-400 Winbond Current Mode Differential Buffer for PCI Express and SATA Date: May/16/2006 Revision: 0.6 Datasheet Revision History PAGES DATES VERSION WEB VERSION MAIN CONTENTS 1 n.a.

More information

M451 Series BSP. Revision History

M451 Series BSP. Revision History ARM Cortex -M0 32-bit Microcontroller NuMicro Family M451 Series BSP Revision History The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation

More information

NUC122. NUC122 Board Supporting Package Directory Introduction. Rev NUC122 1 of 10 Rev Nuvoton Technology Corp.

NUC122. NUC122 Board Supporting Package Directory Introduction. Rev NUC122 1 of 10 Rev Nuvoton Technology Corp. Board Supporting Package Directory Introduction Rev.3.00.002 1 of 10 Rev.3.00.002 Directory Information Document Library SampleCode Driver reference manual and revision history. Driver header and source

More information

Nuvoton NCT5655Y/W. 16-bit I 2 C-bus and SMBus GPIO controller with interrupt. Revision: 1.0 Date: May, 2016 NCT5655Y/W

Nuvoton NCT5655Y/W. 16-bit I 2 C-bus and SMBus GPIO controller with interrupt. Revision: 1.0 Date: May, 2016 NCT5655Y/W Nuvoton NCT5655Y/W 16-bit I 2 C-bus and SMBus GPIO controller with interrupt Revision: 1.0 Date: May, 2016 - I - Revision 1.0 NCT5655Y/W Datasheet Revision History PAGES DATES VERSION MAIN CONTENTS 1 18

More information

NANO102/112 Series CMSIS BSP Revision History

NANO102/112 Series CMSIS BSP Revision History ARM Cortex -M0 32-bit Microcontroller NANO102/112 Series CMSIS BSP Revision History The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation and

More information

M2351 TrustZone Program Development

M2351 TrustZone Program Development Application Note for 32-bit NuMicro Family AN0019 M2351 TrustZone Program Development Document Information Abstract Introduce TrustZone programing including how to partition security attribution and how

More information

A Complete Discussion of the S 2 Cwire Single-Wire Interface With tlat Specification

A Complete Discussion of the S 2 Cwire Single-Wire Interface With tlat Specification APPLICATION NOTE A Complete Discussion of the S 2 Cwire Single-Wire Interface With tlat Specification Introduction The S 2 Cwire single-wire interface offers the simplest control possible for programmable

More information

N551C321. Table of Contents-

N551C321. Table of Contents- Table of Contents- 1. GENERAL DESCRIPTION... 2 2. FEATURES... 2 3. BLOCK DIAGRAM... 3 4. PIN DESCRIPTION... 3 5. ABSOLUTE MAXIMUM RATINGS... 4 6. ELECTRICAL CHARACTERISTICS... 4 7. APPLICATION CIRCUIT...

More information

DATASHEET. 4.3 Embedded SPI Display. 4DLCD-FT843 Powered by the FTDI FT800 Video Engine. Document Date: 25 th September 2013 Document Revision: 0.

DATASHEET. 4.3 Embedded SPI Display. 4DLCD-FT843 Powered by the FTDI FT800 Video Engine. Document Date: 25 th September 2013 Document Revision: 0. DATASHEET 4.3 Embedded SPI Display 4DLCD-FT843 Powered by the FTDI FT800 Video Engine Document Date: 25 th September 2013 Document Revision: 0.4 Uncontrolled Copy when printed or downloaded. Please refer

More information

SKY LF: 0.1 to 6.0 GHz High-Isolation SPDT Absorptive Switch

SKY LF: 0.1 to 6.0 GHz High-Isolation SPDT Absorptive Switch DATA SHEET SKY13372-467LF:.1 to 6. GHz High-Isolation SPDT Absorptive Switch Applications GSM, PCS, WCDMA base stations 2.4 and 5.8 GHz ISM devices Wireless local loops J1 CBL Features 5 Single, positive

More information

MIC1832. General Description. Features. Applications. Typical Application

MIC1832. General Description. Features. Applications. Typical Application 3.3V Voltage Supervisor with Manual Reset, Watchdog Timer and Dual Reset Outputs General Description The is a low-current microprocessor supervisor for monitoring 3.3V and 3V systems. The device features

More information

DATASHEET 4D SYSTEMS TURNING TECHNOLOGY INTO ART. Carrier Board for μoled-160-g1/g2 CB-160-G1

DATASHEET 4D SYSTEMS TURNING TECHNOLOGY INTO ART. Carrier Board for μoled-160-g1/g2 CB-160-G1 TURNING TECHNOLOGY INTO ART DATASHEET Carrier Board for μoled-160-g1/g2 Document Date: 21 st September 2012 Document Revision: 1.0 Uncontrolled Copy when printed or downloaded. Please refer to the 4D Systems

More information

DATASHEET 4D SYSTEMS. 4D Arduino Adaptor Shield TURNING TECHNOLOGY INTO ART. 4Display-Adaptor-Shield

DATASHEET 4D SYSTEMS. 4D Arduino Adaptor Shield TURNING TECHNOLOGY INTO ART. 4Display-Adaptor-Shield TURNING TECHNOLOGY INTO ART DATASHEET 4Display-Adaptor-Shield Document Date: 20 th November 2012 Document Revision: 1.0 Uncontrolled Copy when printed or downloaded. Please refer to the 4D Systems website

More information

ST1633. Datasheet. Capacitive Touch Screen Controller. Version /11/17

ST1633. Datasheet. Capacitive Touch Screen Controller. Version /11/17 Capacitive Touch Screen Controller Datasheet Version 1.6 2015/11/17 Note: Sitronix Technology Corp. reserves the right to change the contents in this document without prior notice. This is not a final

More information

NUC123xxxAN Series Errata Sheet. Errata Sheet for 32-bit NuMicro Family Rev May 19, 2016

NUC123xxxAN Series Errata Sheet. Errata Sheet for 32-bit NuMicro Family Rev May 19, 2016 NUC123xxxAN Series Errata Sheet Errata Sheet for 32-bit NuMicro Family Rev. 1.04 May 19, 2016 Document Information Abstract Apply to This errata sheet describes the functional problems known at the release

More information

TORX176 TORX176 FIBER OPTIC RECEIVING MODULE FOR DIGITAL AUDIO EQUIPMENT. 1. Maximum Ratings (Ta = 25 C) 2. Recommended Operating Conditions

TORX176 TORX176 FIBER OPTIC RECEIVING MODULE FOR DIGITAL AUDIO EQUIPMENT. 1. Maximum Ratings (Ta = 25 C) 2. Recommended Operating Conditions FIBER OPTIC RECEIVING MODULE TORX176 FIBER OPTIC RECEIVING MODULE FOR DIGITAL AUDIO EQUIPMENT Unit: mm Conform to JEITA Standard CP 1201 (For Digital Audio Interfaces including Fiber Optic inter connections).

More information

ISD18C00 SERIES ADVANCED INFORMATION ISD18C00 SERIES SINGLE-CHIP, SINGLE-MESSAGE VOICE RECORD/PLAYBACK DEVICE 6- TO 16-SECOND DURATION

ISD18C00 SERIES ADVANCED INFORMATION ISD18C00 SERIES SINGLE-CHIP, SINGLE-MESSAGE VOICE RECORD/PLAYBACK DEVICE 6- TO 16-SECOND DURATION ISD18C00 SERIES SINGLE-CHIP, SINGLE-MESSAGE VOICE RECORD/PLAYBACK DEVICE 6- TO 16-SECOND DURATION - 1 - Revision 0.4 1. GENERAL DESCRIPTION... 3 2. FEATURES... 3 3. BLOCK DIAGRAM... 4 4. PIN CONFIGURATION...

More information

NuMicro Mini51 DE Series Product Brief

NuMicro Mini51 DE Series Product Brief ARM Cortex -M0 32-BIT MICROCONTROLLER NuMicro Mini51 DE Series Product Brief The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation and shall

More information

DATASHEET 4D SYSTEMS. 4D Raspberry Pi Serial Adaptor TURNING TECHNOLOGY INTO ART. 4D-Serial-Pi-Adaptor

DATASHEET 4D SYSTEMS. 4D Raspberry Pi Serial Adaptor TURNING TECHNOLOGY INTO ART. 4D-Serial-Pi-Adaptor TURNING TECHNOLOGY INTO ART DATASHEET 4D-Serial-Pi-Adaptor Document Date: 20 th November 2012 Document Revision: 1.0 Uncontrolled Copy when printed or downloaded. Please refer to the 4D Systems website

More information

Features VCC MIC1810 RESET RESET

Features VCC MIC1810 RESET RESET Microprocessor Reset Circuit General Description The is an inexpensive microprocessor supervisory circuit that monitors power supplies in microprocessor based systems. The function of these devices is

More information

DATASHEET 4D SYSTEMS. 4D Raspberry Pi Serial Adaptor TURNING TECHNOLOGY INTO ART. 4D-Serial-Pi-Adaptor

DATASHEET 4D SYSTEMS. 4D Raspberry Pi Serial Adaptor TURNING TECHNOLOGY INTO ART. 4D-Serial-Pi-Adaptor DATASHEET TURNING TECHNOLOGY INTO ART 4D Raspberry Pi Serial Adaptor 4D-Serial-Pi-Adaptor Document Date: 4 th September 2013 Document Revision: 1.1 Uncontrolled Copy when printed or downloaded. Please

More information

MIC706P/R/S/T, MIC708R/S/T

MIC706P/R/S/T, MIC708R/S/T MIC706P/R/S/T, MIC708R/S/T µp Supervisory Circuit General Description The MIC706 and MIC708 are inexpensive microprocessor supervisory circuits that monitor power supplies in 3.0 and 3.3 microprocessor-based

More information

MIC826. General Description. Features. Applications. Typical Application

MIC826. General Description. Features. Applications. Typical Application Voltage Supervisor with Watchdog Timer, Manual Reset, and Dual Outputs In 1.6mm x 1.6mm TDFN General Description The is a low-current, ultra-small, voltage supervisor with manual reset input, watchdog

More information

AN3996 Application Note

AN3996 Application Note Application Note Adjustable LED blinking speed using STM8SVLDISCOVERY Application overview This application note provides a short description of the demonstration firmware Discover which is preprogrammed

More information

DATASHEET 4D SYSTEMS. 4D Raspberry Pi Serial Adaptor TURNING TECHNOLOGY INTO ART. 4D-Serial-Pi-Adaptor

DATASHEET 4D SYSTEMS. 4D Raspberry Pi Serial Adaptor TURNING TECHNOLOGY INTO ART. 4D-Serial-Pi-Adaptor DATASHEET TURNING TECHNOLOGY INTO ART 4D Raspberry Pi Serial Adaptor 4D-Serial-Pi-Adaptor Document Date: 21 st August 2014 Document Revision: 1.2 Uncontrolled Copy when printed or downloaded. Please refer

More information

SINGLE-CHIP, SINGLE-MESSAGE VOICE RECORD/PLAYBACK DEVICE 6- TO 16-SECOND DURATION

SINGLE-CHIP, SINGLE-MESSAGE VOICE RECORD/PLAYBACK DEVICE 6- TO 16-SECOND DURATION ISD1800 SERIES SINGLE-CHIP, SINGLE-MESSAGE VOICE RECORD/PLAYBACK DEVICE 6- TO 16-SECOND DURATION - 1 - Revision 1.0 1. GENERAL DESCRIPTION... 3 2. FEATURES... 3 3. BLOCK DIAGRAM... 4 4. PIN CONFIGURATION...

More information

TD62382AP,TD62382AF TD62382AP/AF 8CH LOW INPUT ACTIVE SINK DRIVER FEATURES PIN CONNECTION (TOP VIEW) SCHEMATICS (EACH DRIVER)

TD62382AP,TD62382AF TD62382AP/AF 8CH LOW INPUT ACTIVE SINK DRIVER FEATURES PIN CONNECTION (TOP VIEW) SCHEMATICS (EACH DRIVER) TOSHIBA BIPOLAR DIGITAL INTEGRATED CIRCUIT SILICON MONOLITHIC TD62382AP,TD62382AF TD62382AP/AF 8CH LOW INPUT ACTIVE SINK DRIVER The TD62382AP / AF are non inverting transistor array which are comprised

More information

MIC705/706/707/708. General Description. Features. Applications. Typical Application. µp Supervisory Circuit

MIC705/706/707/708. General Description. Features. Applications. Typical Application. µp Supervisory Circuit µp Supervisory Circuit General Description The MIC705, MIC706, MIC707, and MIC708 are inexpensive microprocessor supervisory circuits that monitor power supplies in microprocessor-based systems. The circuit

More information

Features. Applications

Features. Applications Micro-Power Voltage Supervisor IttyBitty General Description The is a power supply supervisor that provides undervoltage monitoring, manual reset capability, and power-on reset generation in a compact

More information

TD6127BP TD6127BP. ECL Prescaller For Communications Radio. Features TOSHIBA Bipolar Digital Integrated Circuit Silicon Monolithic

TD6127BP TD6127BP. ECL Prescaller For Communications Radio. Features TOSHIBA Bipolar Digital Integrated Circuit Silicon Monolithic TOSHIBA Bipolar Digital Integrated Circuit Silicon Monolithic TD6127BP ECL Prescaller For Communications Radio TD6127BP is a 2 modulus prescaller developed for communications radio of PLL frequency synthesizer

More information

DATASHEET 4D SYSTEMS. Embedded Audio-Sound Module TURNING TECHNOLOGY INTO ART SOMO-14D. Document Date: 5 th February 2013 Document Revision: 1.

DATASHEET 4D SYSTEMS. Embedded Audio-Sound Module TURNING TECHNOLOGY INTO ART SOMO-14D. Document Date: 5 th February 2013 Document Revision: 1. DATASHEET TURNING TECHNOLOGY INTO ART Embedded Audio-Sound Module Document Date: 5 th February 2013 Document Revision: 1.1 Uncontrolled Copy when printed or downloaded. Please refer to the 4D Systems website

More information

EVALUATION BOARD DATA SHEET EV142

EVALUATION BOARD DATA SHEET EV142 EV2 Evaluation Board for the AAT272. A Step-Up Current Regulator Introduction The AAT272 EVAL board demonstrates the functionality of the AAT272 and its application as a high current white LED flash driver.

More information

TD62384APG,TD62384AFG TD62385APG,TD62385AFG

TD62384APG,TD62384AFG TD62385APG,TD62385AFG TOSHIBA BIPOLAR DIGITAL INTEGRATED CIRCUIT SILICON MONOLITHIC TD62384APG,TD62384AFG TD62385APG,TD62385AFG 8CH LOW INPUT ACTIVE DARLINGTON SINK DRIVER The TD62384APG / AFG and TD62385APG / AFG are non inverting

More information

Operation of Timer A (2-phase pulse signal process in event counter mode, multiply-by-4 processing operation)

Operation of Timer A (2-phase pulse signal process in event counter mode, multiply-by-4 processing operation) APPLICATION NOTE in event counter mode, multiply-by-4 processing operation) 1. Abstract In processing 2-phase pulse signals in event counter mode, choose functions from those listed in Table 1. Operations

More information

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below.

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below. Important notice Dear Customer, On 7 February 2017 the former NXP Standard Product business became a new company with the tradename Nexperia. Nexperia is an industry leading supplier of Discrete, Logic

More information

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below.

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below. Important notice Dear Customer, On 7 February 2017 the former NXP Standard Product business became a new company with the tradename Nexperia. Nexperia is an industry leading supplier of Discrete, Logic

More information

PSoC 4 Low Power Comparator (LPComp) Features. General Description. When to Use a LPComp 2.0. Low input offset. User controlled offset calibration

PSoC 4 Low Power Comparator (LPComp) Features. General Description. When to Use a LPComp 2.0. Low input offset. User controlled offset calibration 2.0 Features Low input offset User controlled offset calibration Multiple speed modes Low-power mode Wake from low power modes Multiple interrupt and output modes General Description The Low Power Comparator

More information

DATA SHEET ZENER DIODES 1.0 W PLANAR TYPE 2-PIN SMALL POWER MINI MOLD. Parameter Symbol Ratings Unit Remarks

DATA SHEET ZENER DIODES 1.0 W PLANAR TYPE 2-PIN SMALL POWER MINI MOLD. Parameter Symbol Ratings Unit Remarks DATA SHEET ZENER DIODES RD2.0FS to RD20FS ZENER DIODES.0 W PLANAR TYPE 2-PIN SMALL POWER MINI MOLD DESCRIPTION Type RD2.0FS to RD20FS series are 2-pin small power mini mold package Zener diodes possessing

More information

ISD2100 DESIGN GUIDE ISD2100. Digital ChipCorder. With. Embedded Flash for Stand-alone Playback of Audio Revision 1.

ISD2100 DESIGN GUIDE ISD2100. Digital ChipCorder. With. Embedded Flash for Stand-alone Playback of Audio Revision 1. ISD2100 Digital ChipCorder With Embedded Flash for Stand-alone Playback of Audio. - 1 - TABLE OF CONTENTS 1 GENERAL DESCRIPTION... 4 2 FEATURES... 4 3 BLOCK DIAGRAM... 6 4 PIN DESCRIPTION... 7 5 DEVICE

More information

In timer mode, choose functions from those listed in Table 1. Operations of the circled items are described below.

In timer mode, choose functions from those listed in Table 1. Operations of the circled items are described below. APPLICATION NOTE M16C/64 Group 1. Abstract In timer mode, choose functions from those listed in Table 1. Operations of the circled items are described below. 2. Introduction This application note is applied

More information

MN101E50 Series. 8-bit Single-chip Microcontroller

MN101E50 Series. 8-bit Single-chip Microcontroller 8-bit Single-chip Microcontroller Overview The MN101E series of 8-bit single-chip microcomputers (the memory expansion version of MN101C series) incorporate multiple types of peripheral functions. This

More information

Old Company Name in Catalogs and Other Documents

Old Company Name in Catalogs and Other Documents To our customers, Old Company Name in Catalogs and Other Documents On April 1 st, 2010, NEC Electronics Corporation merged with Renesas Technology Corporation, and Renesas Electronics Corporation took

More information

High-side Power Distribution Switch NCT3521U

High-side Power Distribution Switch NCT3521U High-side Power Distribution Switch NCT3521U -Table of Content- 1. GENERAL DESCRIPTION...1 2. FEATURES...1 3. APPLICATIONS...2 4. PIN CONFIGURATION AND DESCRIPTION...2 5. TYPICAL APPLICATION CIRCUIT...3

More information

74ABT General description. 2. Features and benefits. 3. Ordering information. Quad 2-input AND gate

74ABT General description. 2. Features and benefits. 3. Ordering information. Quad 2-input AND gate Rev. 3 20 November 2015 Product data sheet 1. General description The high-performance BiCMOS device combines low static and dynamic power dissipation with high speed and high output drive. The is a quad

More information

Old Company Name in Catalogs and Other Documents

Old Company Name in Catalogs and Other Documents To our customers, Old Company Name in Catalogs and Other Documents On April 1 st, 2010, NEC Electronics Corporation merged with Renesas Technology Corporation, and Renesas Electronics Corporation took

More information

PMEG2010EH; PMEG2010EJ; PMEG2010ET

PMEG2010EH; PMEG2010EJ; PMEG2010ET PMEG200EH; PMEG200EJ; PMEG200ET Rev. 04 20 March 2007 Product data sheet. Product profile. General description Planar Maximum Efficiency General Application (MEGA) Schottky barrier rectifiers with an integrated

More information

BDE2S5.0 BDE2S5.0. ESD Protection Diodes. In Ultra Small DFN1006-2L Package. Package Type DFN1006-2L

BDE2S5.0 BDE2S5.0. ESD Protection Diodes. In Ultra Small DFN1006-2L Package. Package Type DFN1006-2L BYD Microelectronics Co., Ltd. ESD Protection Diodes In Ultra Small DFN1006-2L Package The Series is designed to protect voltage sensitive components from damage due to ESD. Excellent clamping capability,

More information

Burst Transfers ABSTRACT

Burst Transfers ABSTRACT Burst Transfers ABSTRACT The ANT Burst transfer mode offers a fast and efficient method for transferring bulk data through the ANT wireless link. Rather than using an increased message rate, the ANT Burst

More information

IMPORTANT NOTICE. use

IMPORTANT NOTICE.   use Rev. 05 2 January 2008 Product data sheet IMPORTANT NOTICE Dear customer, As from October 1st, 2006 Philips Semiconductors has a new trade name -, which will be used in future data sheets together with

More information

FM24C02A 2-Wire Serial EEPROM

FM24C02A 2-Wire Serial EEPROM FM24C02A 2-Wire Serial EEPROM Apr. 2010 FM24C02A 2-wrie Serial EEPROM Ver 1.3 1 INFORMATION IN THIS DOCUMENT IS INTENDED AS A REFERENCE TO ASSIST OUR CUSTOMERS IN THE SELECTION OF SHANGHAI FUDAN MICROELECTRONICS

More information

CRY62~CRZ47 CRY62~CRZ47. Use in Communication, Automation and Measurement Equipment Constant Voltage Regulation Transient Suppressors

CRY62~CRZ47 CRY62~CRZ47. Use in Communication, Automation and Measurement Equipment Constant Voltage Regulation Transient Suppressors TOSHIBA Zener Diode Silicon Epitaxial Type CRY62~CRZ47 Use in Communication, Automation and Equipment Constant Regulation Transient Suppressors Unit: mm Average power dissipation: P = 0.7 W Zener voltage:

More information

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below.

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below. Important notice Dear Customer, On 7 February 2017 the former NXP Standard Product business became a new company with the tradename Nexperia. Nexperia is an industry leading supplier of Discrete, Logic

More information

Dual back-to-back Zener diode

Dual back-to-back Zener diode Rev. 01 28 January 2008 Product data sheet 1. Product profile 1.1 General description in a SOD323 (SC-76) very small Surface-Mounted Device (SMD) plastic package. 1.2 Features Non-repetitive peak reverse

More information

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below.

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below. Important notice Dear Customer, On 7 February 2017 the former NXP Standard Product business became a new company with the tradename Nexperia. Nexperia is an industry leading supplier of Discrete, Logic

More information

udrive-usd-g1 Embedded DOS micro-drive Module Data Sheet

udrive-usd-g1 Embedded DOS micro-drive Module Data Sheet 4D SYSTEMS udrive-usd-g1 Embedded DOS micro-drive Module Document Date: 4 rh November 2011 Document Revision: 4.0 Note: This revision of the Dcoument applies to udrive PmmC Rev23 or above. 2011 4D Systems

More information

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below.

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below. Important notice Dear Customer, On 7 February 2017 the former NXP Standard Product business became a new company with the tradename Nexperia. Nexperia is an industry leading supplier of Discrete, Logic

More information

NuMicro Family NuTiny-SDK-NUC505 User Manual

NuMicro Family NuTiny-SDK-NUC505 User Manual ARM Cortex -M 32-bit Microcontroller NuMicro Family NuTiny-SDK- User Manual The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation and shall

More information

Features MIC2551A VBUS R S. 1.5k D+ D GND VM D SPD SUS GND. Typical Application Circuit

Features MIC2551A VBUS R S. 1.5k D+ D GND VM D SPD SUS GND. Typical Application Circuit MIC2551 USB Transceiver General Description The MIC2551 is a single chip transceiver that complies with the physical layer specifications of the Universal Serial Bus (USB) 2.0. It supports both full speed

More information

SKY LF: GHz, 20 db Variable Voltage Attenuator

SKY LF: GHz, 20 db Variable Voltage Attenuator DATA SHEET SKY12146-321LF: 3.0 3.8 GHz, 20 Variable Voltage Attenuator Applications WLANs WiMAX systems Features Power control for 3.5 GHz fixed wireless applications Typical attenuation: 20 Control voltage:0

More information

MMBZ16VAL. 1. General description. 2. Features and benefits. 3. Applications. 4. Quick reference data

MMBZ16VAL. 1. General description. 2. Features and benefits. 3. Applications. 4. Quick reference data High surge current unidirectional double ESD protection diodes 6 November 217 Product data sheet 1. General description Unidirectional double ElectroStatic Discharge (ESD) protection diodes in a common

More information

com.tom CODESYS Getting Started V2.2 Getting Started Copyright 2018 Beck IPC GmbH Page 1 of 18

com.tom CODESYS Getting Started V2.2 Getting Started Copyright 2018 Beck IPC GmbH Page 1 of 18 Getting Started Copyright 2018 Beck IPC GmbH Page 1 of 18 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 SCOPE... 3 3 SYSTEM START-UP... 3 3.1 WHAT DO WE NEED TO GET STARTED?... 3 3.2 STEP 1 CABLE THE DEVICE...

More information

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below.

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below. Important notice Dear Customer, On 7 February 2017 the former NXP Standard Product business became a new company with the tradename Nexperia. Nexperia is an industry leading supplier of Discrete, Logic

More information

Features. Applications

Features. Applications 2.5/3.3V 1-to-1 Differential to LVCMOS/LVTTL Translator Precision Edge General Description Micrel s is a 1-to-1, differential-to-lvcmos / LVTTL translator. The differential input is highly flexible and

More information

2PB709ARL; 2PB709ASL

2PB709ARL; 2PB709ASL Rev. 01 12 November 2008 Product data sheet 1. Product profile 1.1 General description PNP general-purpose transistors in a small SOT23 (TO-236AB) Surface-Mounted Device (SMD) plastic package. Table 1.

More information

Winbond ExpressCard Power Interface Switch W83L351 Series

Winbond ExpressCard Power Interface Switch W83L351 Series Winbond ExpressCard Power Interface Switch W83L351 Series W83L351 Series Data Sheet Revision History NO PAGES DATES VERSION VERSION ON WEB 1. All Apr. /07 1.0 N.A 2 28 July 5, 2007 1.1 MAIN CONTENTS All

More information

UM1084 User manual. CR95HF development software user guide. Introduction. Reference documents

UM1084 User manual. CR95HF development software user guide. Introduction. Reference documents User manual CR95HF development software user guide Introduction The CR95HF development software is a PC software which allows to configure, evaluate, and communicate with ST CR95HF 13.56 MHz multiprotocol

More information

4-Channel 1-wire Dimming LED Driver with Ultra Low Dropout Current Source

4-Channel 1-wire Dimming LED Driver with Ultra Low Dropout Current Source 4-Channel 1-wire Dimming LED Driver with Ultra Low Dropout Current Source FEATURES DESCRITION Ultra low dropout: 50mV/20mA(typical) Support up to 4 LEDs LED sink current up to 20mA ±1% LED current matching(typical)

More information

VK5100-imx6 Development Platform Quick Start Guide

VK5100-imx6 Development Platform Quick Start Guide VK5100-imx6 Development Platform Quick Start Guide VEST-VK5100-QSG-001 Copyright 2016 Advanced Products Corporation Pte Ltd. All rights reserved. No part of this document may be photocopied, reproduced,

More information

Figure 1: TSSOP-24 ( Top View ) Figure 2: TQFN 4x4-24 ( Top View )

Figure 1: TSSOP-24 ( Top View ) Figure 2: TQFN 4x4-24 ( Top View ) 16-bit I2C-bus and SMBus I/O port with interrupt Features Operation power supply voltage from 2.3V to 5.5V 16-bit I/O pins which can be programmed as Input or Output 5V tolerant I/Os Polarity inversion

More information

SKY : 2.4 GHz Low-Noise Amplifier

SKY : 2.4 GHz Low-Noise Amplifier DATA SHEET SKY65405-21: 2.4 GHz Low-Noise Amplifier Applications 802.11b/g/n PC cards, NICs, and USB dongles 802.11b/g/n tablets 802.11b/g/n access points, routers, and gateways 2.4 GHz ISM radios V_ENABLE

More information

SKY LF: 2.4 to 2.5 GHz SP3T Switch

SKY LF: 2.4 to 2.5 GHz SP3T Switch DATA SHEET SKY13586-678LF: 2.4 to 2.5 GHz SP3T Switch Applications 802.11 a/b/g/n/ac WLAN networks Bluetooth systems Smartphones Connectivity modules RF1 RF2 RFC Features Positive low voltage control:

More information

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below.

In data sheets and application notes which still contain NXP or Philips Semiconductors references, use the references to Nexperia, as shown below. Important notice Dear Customer, On 7 February 2017 the former NXP Standard Product business became a new company with the tradename Nexperia. Nexperia is an industry leading supplier of Discrete, Logic

More information