Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs.

Size: px
Start display at page:

Download "Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs."

Transcription

1 Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs. 1

2 The purpose of this course is to provide an introduction to the RL78 timer Architecture. Our objectives are to learn about the RL78 timers' structure and capabilities, Including the Timer Array Unit, the real time counter, interval timer, watchdog timer, as well as the PCL buzzer output 2

3 First, we ll discuss the RL78s timer array unit, or TAU. 3

4 The Timer Array Unit, also called TAU, is a peripheral module containing several timer channels. The largest of these units contains up to 8 timer channels and each channel is a 16 bit timer. Therefore it s important to distinguish between the channels and the unit. Where a channel is more or less one independent timer within a unit, a unit can have up to 8 channels. These 8 channels operate independently but can be combined together. There are several operation modes available in the Timer Array Unit and these can be independent or combined modes. In independent modes only one channel of the timer unit is used, and we have the following available modes: The interval timer is a simple mode which generates an interrupt at a fixed interval. The square wave output mode is almost identical to the interval timer mode except that the port output is enabled. External event count mode is not an output, but instead an input is connected to the timer and we can count external events using the rising, or falling, or even both edges. In Divider operation the frequency of an input signal can be divided down using one of the timer channels. Input pulse interval measurement or capture mode can measure the time between two rising or two falling edges. And the last one is the input high/low level width in this case it s almost the same as interval measurement but here we can measure the pulse width from high to 4

5 low level or vice-versa. 4

6 Now to the combined operation modes; in these modes at least two of the channels of one timer array unit are used together or combined. The simplest mode of these combined operation modes is the PWM output mode. In PWM mode, one channel of the TAU is used in master mode, it determines the period of the PWM signal. And the second channel - called slave mode - is used to determine the duty cycle of the PWM signal. Another combined operation mode is the one shot pulse mode. In this mode it s possible to output a pulse on a pin with a selectable delay pulsle width, this means the pulse will be output after a specific delay, selectable by the master. The last combined mode is where not just two channels of the TAU but even more channels can be connected together; this is the multiple PWM output mode. In this case one master is used to select the period of all the PWM signals and each channel is able to generate a different PWM with a specific duty cycle. All the PWMs in multiple PWM mode run completely synchronously because the trigger of the master is used to start all of the slave channels. A special timer function is used for LIN-bus support and this only uses channel 7 of the TAU0. It can be used to detect a Wake-up signal and a Sync Break Field in the in the LIN protocol and thus measure the pulse width of the sync field. All this is supported in hardware, with the receive pin of the UART directly connected to the 5

7 timer input of the Timer Array Unit. 5

8 Here is the block diagram of the Timer Array Unit with the three major blocks. The first one is the Timer Clock Selection block; this is the common block at the top of the Timer Array Unit. Here the entire Timer Array Unit can be switched on by the TAU enable bit to provide the peripheral with a valid clock signal. To reduce power consumption this flag can also switch off the entire Timer Array Unit. Next is the global pre-scalar, for the entire TAU array unit, where four different sub-clocks can be selected for the TAU channels. There are also additional control registers in the global timer clock selection block containing flags which start and stop each timer channel of the TAU. The second logic block is used for clock monitoring. It s a very simple block connected between the internal low speed oscillator or internal sub oscillator and channel 5 s timer input. Internal logic allows monitoring of the device s clocks, which is a requirement of IEC regulations. Using this logic it s easily possible to check the main system clock frequency by comparing it to another available clock signal which is completely independent of the main system clock. The third block contains the 8 channels themselves. Each channel is completely independent, however only even channels can be selected as master channels and the odd channels can operate as slave channels. Typically each channel has an input, an output and a dedicated control register to set up how the channel should 6

9 operate, for example as an interval timer or in PWM slave mode. 6

10 Here are the basic rules for using the combined operating modes. This is an example of how the Timer Array Unit can be split for a certain application. In this application channel zero is used as PWM master and channels one and two are used as slaves, thus by using these three channels 0-2 in PWM mode, two outputs can be generated. Both outputs are completely independent but the period is the same for both, because both PWM s are using the same master. Channel three is setup here for single operation as an interval timer. And channels four and five are again used together for PWM, and this PWM is completely independent from the channel zero PWM. Channels six and seven are again used as independent channels. In this example the channel zero master is using the input clock CK00, which could be the direct system clock (Fx) maybe at 32 or even 24MHz, and CK01 which might be a much slower clock, like the main system clock Fx divided by 8 or by 16. This provides the flexibility to select the input clocks independently for each channel. 7

11 This slide shows a block diagram of a single channel. In the TAU up to 8 of these single channels are available. There is a selector in the input path which determines the input clock to be used; in this case we can choose between input signals CK00 or CK01. On other channels it s possible to select from a maximum of four clocks, and the selected clock will be used internally inside the channel. Next is the timer counter register TCR and the compare register TDR both of which are 16 bit wide. Depending on the mode, a match between these registers or an underflow will directly affect the output controller of each timer channel to generate a square wave output, or to simply generate an internal interrupt -one of which is available for each timer channel. On the other side of the input path is the timer input pin with an edge detection circuit inside. Because of the synchronous design of the whole Timer Array Unit, you always need an internal clock signal f MCK to count external pulses or to do pulse width measurement from the input pin TI0n. The TMR register at the bottom of the block diagram is the timer s mode register. Here you can select which input clock is used, whether the channel should work as a master or as a slave, additional mode settings such as interval or PWM mode, and settings for switching the output on or off, and so on. You can also see all the connections to the slave master controller - at the top of the block diagram - to the 8

12 other channels, which are needed for combined operation mode. 8

13 Here is an example of Interval Timer Mode, where the interrupt of the timer INTTM0n is generated at a preset interval set by the TDR register. The interrupt interval can be calculated by multiplying the period of the input count clock by the value set in the TDR register plus one. 9

14 In this timing diagram you can see the functionality of the timer in Interval Timer Mode. After setting up the timer and starting it with the timer enable bit and the timer start trigger, the TCR register is pre-loaded with the value written to the TCR register. In Interval Timer mode shown here, the TR register is counting down and if an underflow occurs or zero is reached then an interrupt is generated, and the output is toggled - if enabled. Note the interval time is determined by the value of the TDR register plus one. Additionally there are shadow registers for each TDR register, so that the value of the TDR register can be re-written independently of the state of the internal timer. The next time the timer underflows, the new value will be written to the real TDR register automatically. 10

15 With this simple example code you can see which registers need to be setup to enable the TAU. It s actually very simple; first the peripheral zero register PER0 must be set. A specific flag in this register enables the power to the Timer Array Unit, and the clock is supplied to the unit. Clock frequencies are selected in the global clock selection circuit of each TAU unit via the TPS0 register. In this case f CLK /2 is being set for both paths. Then we have to select the mode for each channel, and here only channel zero is used and it is selected by the TMR00 register. Next the Timer Zero Compare register TDR0 must be initialized, and finally after all the settings are done, TS0 bit zero is set to start the timer count operation. 11

16 Now let s look at a combined timer, in this example PWM mode, where at least two channels operate together, with one master and one slave. The master defines the interval time and so the period of the PWM signal, and the slave operates in onecount mode to output the PWM duty cycle. The pulse period and the duty factor can be calculated as follows; the period is the master channel compare register TDR0 value plus one, multiplied by the count clock. And the duty factor is the value written to the slave compare register, divided by the value of the master register plus one. On the next slide you can see the timing diagram of how this works. 12

17 Here is a block diagram of the PWM mode; at the top is the master channel responsible for the period of the PWM cycle, and at the bottom is the slave channel. Both are connected together using internal signals to trigger each other. The master channel defines the period and a complete PWM cycle will be started by triggering the master channel via the TS0n bit, starting the timer count register TCR0. The timer counter register of the slave will be started at the same time, also using the internal trigger. When the timer slave count register reaches zero, the duty is over and the output will be toggled from high to low level or vice-versa, however the master channel will still count down to zero. When the master channel reaches zero the complete period is over, and the output port is set to one again. The logic of the output port can also be inverted if necessary for your application. 13

18 In this slide you can see the operation as a timing diagram. After the master has been started the slave also starts counting automatically and both count registers start down-counting from the initial value. When the slave reaches zero the output will be toggled and an interrupt will be generated. Then the slave channel counter stops and is reloaded with the initial value again, meanwhile the count register of the master still counts down to zero. When this has also reached zero the output pin will be toggled once more. In this PWM mode we don t have to take care about timing issues when re-writing the registers for the duty cycle and the master period. Also values of 100% and 0% PWM output can be generated easily just by writing in zero or 0xff into the compare registers. 14

19 Next we ll cover the R78 s RTC, or real time counter. 15

20 The Real Time Counter has several operation modes. The main mode is Calendar Timer Mode which automatically counts year, months, weeks, days, hours, minutes and seconds up to 99 years, based on the 32 KHz sub-oscillator input signal. This counter allows the micro to be in sleep mode for several days before the core needs to be woken up. During this time the real-time operation continues in the system. Additional modes are; Constant Period Interrupt, where in addition to the calendar timer functionality, the timer is able to generate an interrupt with a fixed period from half a second to one month. Additionally an alarm interrupt function is implemented, which allows you to set up an alarm value to wake up the micro at a specific date - selectable by week, hour and minute. And finally a 1Hz pin output function is included to generate a very slow 1Hz signal on an output pin. 16

21 Here is the block diagram of the Real Time Counter. On the lower part of the slide are all the registers counting up year, month, week and so on. Each has a buffer in front to preset the data or to read out the current value. Although it is possible to read directly from the registers, writing must be done via the buffers. At the top are all of the control registers to set up the real-time counter and registers to set up the alarm time you want to wake up the controller. The real-time counter can select between the sub-system clocks; which are typically an external 32 KHz crystal or the internal low-speed oscillator, which is usually 15 KHz. There is also a Sub-Clock Count register and a preceding Watch Error Correction register which we will explain in a bit more in detail on the next slide. 17

22 The sub count register RSUBC counts the reference time for a one second interval, it counts up to 0x8000 (corresponding to khz) and then the Second Count Register will be incremented by one and so on. Since sub-oscillator crystals are not that accurate and can have a wide drift over temperature range, Renesas has implemented a Watch Error Correction feature. The watch error correction value can be set depending on the temperature, to improve accuracy of the realtime counter by offsetting the inaccuracy of the sub-system clock drift over temperature. 18

23 Next we ll explain the functionality of the Interval Timer. 19

24 There are several operation modes available for the Interval Timer. The timer itself is a very simple 12 bit timer, with a 12 bit counter and a 12 bit compare register. An interrupt is generated if both registers match. A major application for such interval timers is to enable the RL78 s low power operation. For example if you want to do a cyclic wake-up based on the internal sub-system clock, you can use the interval timer since it is running - even in Stop Mode - when the internal low speed oscillator is operating. The low speed internal oscillator together with the interval timer, enable very low power consumption down to 0.5uA during Stop Mode, but still have the capability to wake up the CPU based on the interrupt coming from the Interval Timer. The input clock for the interval timer can be either the 15 khz internal selector or the 32 khz sub-clock signal, the same as the real-time clock unit. 20

25 Finally here is the block diagram for the Interval Timer. It s a very simple timer with a 12 bit counter and a 12 bit compare register. In front of the timer is a selector to choose the sub-clock or the internal low speed oscillator clock to run the timer. Note that the control register which controls the input clock for the Interval Timer, is the same as the one which controls the input clock for the real-time clock timer. That means that both timers are always using the same time base; either the sub oscillator clock or the external 32 khz crystal or the internal 15 khz low speed oscillator. 21

26 Now for a quick look at the PCL buzzer output 22

27 Here is the PCL or buzzer output, a very simple peripheral which allows easy generation of a square wave output with fixed frequency. Once you have selected the output frequency, the output can be easily switched on or off using a single bit, by enabling or disabling the clock at the output. These clock signals can be used to drive buzzers or to provide a clock signal to external peripherals. The maximum output frequency is 10 MHz. 23

28 Finally, we ll have a look at the RL78s Watchdog timer. 24

29 The main function of this watchdog timer is to detect code runaway and generate a reset if this occurs. The watchdog is set up by the Option Byte, so there is no way to affect the behavior of the watchdog timer from the application code. The Option Byte is set by constants located in the FLASH memory. Using this option byte the watchdog timer interval can be selected and the watchdog timer can be disabled or enabled. Overflow size, or time, and window size can be selected. If the window is not selected then it operates as a standard watchdog. And as a last option we can select the window watchdog timer operation in halt or stop mode. Here it is possible to run the watchdog timer from the internal low-speed oscillator - even in stop modewhile the rest of the system is in sleep mode. This is often a requirement for security applications. To re-trigger the watchdog timer the whole WDTE register is used, by writing the magic word 0xAC to clear the watchdog timer and start counting again. 25

30 In the center of the watchdog timer block diagram is the 17bit counter, with the input fixed to the internal low speed oscillator and no other selection possible. Using the option byte you can select the window size and the time of the watchdog timer. Usually in case of a watchdog timer overflow or underflow if the window size check occurs, a system reset will be generated. As a second option the watchdog timer can also be used as an interval timer interrupt. That means if 75% of the overflow time of the watchdog timer occurs an internal interval interrupt will be generated. This can be used, for example in Stop Mode, to get a pre-warning that the watchdog timer will overflow soon and wake up the system to re trigger the watchdog timer. 26

31 This slide shows the operation of the watchdog timer using the window size - the green area which here has been defined as 50%. When the window is opened the watchdog timer can be retriggered after it has reached 50% of the overall overflow time. If the retrigger is too late, i.e. the overflow time has been reached an interrupt will be generated. Using the window function, if the retrigger comes too early - before 50% of the complete overflow time - the reset will be generated. Other operations causing a reset from the watchdog timer are; when an incorrect magic word is written to the WDTE register or attempting a bit operation on the WDTE register. 27

32 In summary, in this course, we talked about the RL78s timer units. Including the Timer Array Unit, the real time counter, interval timer, watchdog timer, as well as the PCL buzzer output. We would like to thank you for viewing this course. For more information on RL78 products, please view the RL78 Family Overview course, or visit 28

33 29

Topics Introduction to Microprocessors

Topics Introduction to Microprocessors Topics 2244 Introduction to Microprocessors Chapter 8253 Programmable Interval Timer/Counter Suree Pumrin,, Ph.D. Interfacing with 886/888 Programming Mode 2244 Introduction to Microprocessors 2 8253/54

More information

8253 functions ( General overview )

8253 functions ( General overview ) What are these? The Intel 8253 and 8254 are Programmable Interval Timers (PITs), which perform timing and counting functions. They are found in all IBM PC compatibles. 82C54 which is a superset of the

More information

Microcontroller: Timers, ADC

Microcontroller: Timers, ADC Microcontroller: Timers, ADC Amarjeet Singh February 1, 2013 Logistics Please share the JTAG and USB cables for your assignment Lecture tomorrow by Nipun 2 Revision from last class When servicing an interrupt,

More information

Hello, and welcome to this presentation of the STM32 Digital Filter for Sigma-Delta modulators interface. The features of this interface, which

Hello, and welcome to this presentation of the STM32 Digital Filter for Sigma-Delta modulators interface. The features of this interface, which Hello, and welcome to this presentation of the STM32 Digital Filter for Sigma-Delta modulators interface. The features of this interface, which behaves like ADC with external analog part and configurable

More information

RL78 Motor Control. YRMCKITRL78G14 Starter Kit. Renesas Electronics Europe. David Parsons Application Engineering Industrial Business Group.

RL78 Motor Control. YRMCKITRL78G14 Starter Kit. Renesas Electronics Europe. David Parsons Application Engineering Industrial Business Group. RL78 Motor Control YRMCKITRL78G14 Starter Kit Renesas Electronics Europe David Parsons Application Engineering Industrial Business Group July 2012 Renesas MCU for 3-phase Motor Control Control Method Brushless

More information

Hello, and welcome to this presentation of the FlexTimer or FTM module for Kinetis K series MCUs. In this session, you ll learn about the FTM, its

Hello, and welcome to this presentation of the FlexTimer or FTM module for Kinetis K series MCUs. In this session, you ll learn about the FTM, its Hello, and welcome to this presentation of the FlexTimer or FTM module for Kinetis K series MCUs. In this session, you ll learn about the FTM, its main features and the application benefits of leveraging

More information

Hardware Flags. and the RTI system. Microcomputer Architecture and Interfacing Colorado School of Mines Professor William Hoff

Hardware Flags. and the RTI system. Microcomputer Architecture and Interfacing Colorado School of Mines Professor William Hoff Hardware Flags and the RTI system 1 Need for hardware flag Often a microcontroller needs to test whether some event has occurred, and then take an action For example A sensor outputs a pulse when a model

More information

Hello, and welcome to this presentation of the STM32 Infrared Timer. Features of this interface allowing the generation of various IR remote control

Hello, and welcome to this presentation of the STM32 Infrared Timer. Features of this interface allowing the generation of various IR remote control Hello, and welcome to this presentation of the STM32 Infrared Timer. Features of this interface allowing the generation of various IR remote control protocols will be presented. 1 The Infrared Timer peripheral

More information

Course Introduction. Content 20 pages 3 questions. Learning Time 30 minutes

Course Introduction. Content 20 pages 3 questions. Learning Time 30 minutes Purpose The intent of this course is to provide you with information about the main features of the S08 Timer/PWM (TPM) interface module and how to configure and use it in common applications. Objectives

More information

ELCT 912: Advanced Embedded Systems

ELCT 912: Advanced Embedded Systems ELCT 912: Advanced Embedded Systems Lecture 5: PIC Peripherals on Chip Dr. Mohamed Abd El Ghany, Department of Electronics and Electrical Engineering The PIC Family: Peripherals Different PICs have different

More information

EIE/ENE 334 Microprocessors

EIE/ENE 334 Microprocessors EIE/ENE 334 Microprocessors Lecture 13: NuMicro NUC140 (cont.) Week #13 : Dejwoot KHAWPARISUTH Adapted from http://webstaff.kmutt.ac.th/~dejwoot.kha/ NuMicro NUC140: Technical Ref. Page 2 Week #13 NuMicro

More information

Microprocessor & Interfacing Lecture Programmable Interval Timer

Microprocessor & Interfacing Lecture Programmable Interval Timer Microprocessor & Interfacing Lecture 30 8254 Programmable Interval Timer P A R U L B A N S A L A S S T P R O F E S S O R E C S D E P A R T M E N T D R O N A C H A R Y A C O L L E G E O F E N G I N E E

More information

Lab 5 Timer Module PWM ReadMeFirst

Lab 5 Timer Module PWM ReadMeFirst Lab 5 Timer Module PWM ReadMeFirst Lab Folder Content 1) ReadMeFirst 2) Interrupt Vector Table 3) Pin out Summary 4) DriverLib API 5) SineTable Overview In this lab, we are going to use the output hardware

More information

Using the Z8 Encore! XP Timer

Using the Z8 Encore! XP Timer Application Note Using the Z8 Encore! XP Timer AN013104-1207 Abstract Zilog s Z8 Encore! XP microcontroller consists of four 16-bit reloadable timers that can be used for timing, event counting or for

More information

The rangefinder can be configured using an I2C machine interface. Settings control the

The rangefinder can be configured using an I2C machine interface. Settings control the Detailed Register Definitions The rangefinder can be configured using an I2C machine interface. Settings control the acquisition and processing of ranging data. The I2C interface supports a transfer rate

More information

Course Introduction. Purpose: Objectives: Content: 24 pages 3 questions. Learning Time: 35 minutes

Course Introduction. Purpose: Objectives: Content: 24 pages 3 questions. Learning Time: 35 minutes Course Introduction Purpose: This course provides an overview of the timer peripherals built into popular SH-2 and SH-2A families of 32-bit RISC microcontrollers, which are members of the SuperH series

More information

32-bit ARM Cortex-M0, Cortex-M3 and Cortex-M4F microcontrollers

32-bit ARM Cortex-M0, Cortex-M3 and Cortex-M4F microcontrollers -bit ARM Cortex-, Cortex- and Cortex-MF microcontrollers Energy, gas, water and smart metering Alarm and security systems Health and fitness applications Industrial and home automation Smart accessories

More information

Sensorless Vector Control with RL78G14

Sensorless Vector Control with RL78G14 Sensorless Vector Control with RL78G14 Renesas Electronics America Inc. Renesas Technology & Solution Portfolio 2 Microcontroller and Microprocessor Line-up 2010 2013 32-bit 8/16-bit 1200 DMIPS, Superscalar

More information

Using Z8 Encore! XP MCU for RMS Calculation

Using Z8 Encore! XP MCU for RMS Calculation Application te Using Z8 Encore! XP MCU for RMS Calculation Abstract This application note discusses an algorithm for computing the Root Mean Square (RMS) value of a sinusoidal AC input signal using the

More information

PCF2129 Integrated RTC/TCXO/Crystal

PCF2129 Integrated RTC/TCXO/Crystal Rev..1 29 August 28 T D Objective data sheet 1. General description 2. Features T A The is a CMOS real time clock and calendar with an integrated temperature compensated crystal oscillator (TCXO) and a

More information

Timer 0 Modes of Operation. Normal Mode Clear Timer on Compare Match (CTC) Fast PWM Mode Phase Corrected PWM Mode

Timer 0 Modes of Operation. Normal Mode Clear Timer on Compare Match (CTC) Fast PWM Mode Phase Corrected PWM Mode Timer 0 Modes of Operation Normal Mode Clear Timer on Compare Match (CTC) Fast PWM Mode Phase Corrected PWM Mode PWM - Introduction Recall: PWM = Pulse Width Modulation We will mostly use it for controlling

More information

LM4: The timer unit of the MC9S12DP256B/C

LM4: The timer unit of the MC9S12DP256B/C Objectives - To explore the Enhanced Capture Timer unit (ECT) of the MC9S12DP256B/C - To program a real-time clock signal with a fixed period and display it using the onboard LEDs (flashing light) - To

More information

PWM System. Microcomputer Architecture and Interfacing Colorado School of Mines Professor William Hoff

PWM System. Microcomputer Architecture and Interfacing Colorado School of Mines Professor William Hoff PWM System 1 Pulse Width Modulation (PWM) Pulses are continuously generated which have different widths but the same period between leading edges Duty cycle (% high) controls the average analog voltage

More information

Hello, and welcome to this presentation of the STM32G0 digital-to-analog converter. This block is used to convert digital signals to analog voltages

Hello, and welcome to this presentation of the STM32G0 digital-to-analog converter. This block is used to convert digital signals to analog voltages Hello, and welcome to this presentation of the STM32G0 digital-to-analog converter. This block is used to convert digital signals to analog voltages which can interface with the external world. 1 The STM32G0

More information

Grundlagen Microcontroller Counter/Timer. Günther Gridling Bettina Weiss

Grundlagen Microcontroller Counter/Timer. Günther Gridling Bettina Weiss Grundlagen Microcontroller Counter/Timer Günther Gridling Bettina Weiss 1 Counter/Timer Lecture Overview Counter Timer Prescaler Input Capture Output Compare PWM 2 important feature of microcontroller

More information

Application Manual RV-8803-C7

Application Manual RV-8803-C7 Application Manual Application Manual DTCXO Temp. Compensated Real-Time Clock Module with I 2 C-Bus Interface October 2017 1/73 Rev. 1.3 TABLE OF CONTENTS 1. OVERVIEW... 5 1.1. 1.2. 1.3. GENERAL DESCRIPTION...

More information

CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones

CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones 1 Announcements HW8: Due Sunday 10/29 (midnight) Exam 2: In class Thursday 11/9 This object detection lab

More information

Course Introduction. Purpose. Objectives. Content 26 pages 4 questions. Learning Time 40 minutes

Course Introduction. Purpose. Objectives. Content 26 pages 4 questions. Learning Time 40 minutes Course Introduction Purpose This module provides an overview of sophisticated peripheral functions provided by the MCUs in the M32C series, devices at the top end of the M16C family. Objectives Gain a

More information

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board IXDP610 Digital PWM Controller IC Evaluation Board General Description The IXDP610 Digital Pulse Width Modulator (DPWM) is a programmable CMOS LSI device, which accepts digital pulse width data from a

More information

STELLARIS ERRATA. Stellaris LM3S8962 RevA2 Errata

STELLARIS ERRATA. Stellaris LM3S8962 RevA2 Errata STELLARIS ERRATA Stellaris LM3S8962 RevA2 Errata This document contains known errata at the time of publication for the Stellaris LM3S8962 microcontroller. The table below summarizes the errata and lists

More information

µtasker Document µtasker Hardware Timers

µtasker Document µtasker Hardware Timers Embedding it better... µtasker Document utaskerhwtimers.doc/0.07 Copyright 2016 M.J.Butcher Consulting Table of Contents 1. Introduction...3 2. Timer Control Interface...3 3. Configuring a Single-Shot

More information

Chapter 6 PROGRAMMING THE TIMERS

Chapter 6 PROGRAMMING THE TIMERS Chapter 6 PROGRAMMING THE TIMERS Force Outputs on Outcompare Input Captures Programmabl e Prescaling Prescaling Internal clock inputs Timer-counter Device Free Running Outcompares Lesson 2 Free Running

More information

F²MC-16FX FAMILY ALL SERIES PROGRAMMABLE PULSE GENERATOR 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-16FX FAMILY ALL SERIES PROGRAMMABLE PULSE GENERATOR 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-300201-E-V16 F²MC-16FX FAMILY 16-BIT MICROCONTROLLER ALL SERIES PROGRAMMABLE PULSE GENERATOR APPLICATION NOTE Revision History Revision History Date

More information

MICROCONTROLLER TUTORIAL II TIMERS

MICROCONTROLLER TUTORIAL II TIMERS MICROCONTROLLER TUTORIAL II TIMERS WHAT IS A TIMER? We use timers every day - the simplest one can be found on your wrist A simple clock will time the seconds, minutes and hours elapsed in a given day

More information

EITF40 Digital and Analogue Projects - GNSS Tracker 2.4

EITF40 Digital and Analogue Projects - GNSS Tracker 2.4 EITF40 Digital and Analogue Projects - GNSS Tracker 2.4 Magnus Wasting 26 February 2018 Abstract In this report a mobile global navigation satellite system with SMS and alarm functionality is constructed.

More information

ATmega16A Microcontroller

ATmega16A Microcontroller ATmega16A Microcontroller Timers 1 Timers Timer 0,1,2 8 bits or 16 bits Clock sources: Internal clock, Internal clock with prescaler, External clock (timer 2), Special input pin 2 Features The choice of

More information

M16C/26 APPLICATION NOTE. Using The M16C/26 Timer in PWM Mode. 1.0 Abstract. 2.0 Introduction

M16C/26 APPLICATION NOTE. Using The M16C/26 Timer in PWM Mode. 1.0 Abstract. 2.0 Introduction APPLICATION NOTE M16C/26 1.0 Abstract PWM or Pulse Width Modulation is useful in DC motor control, actuator control, synthesized analog output, piezo transducers, etc. PWM produces a signal of (typically)

More information

The Need. Reliable, repeatable, stable time base. Memory Access. Interval/Event timers ADC DAC

The Need. Reliable, repeatable, stable time base. Memory Access. Interval/Event timers ADC DAC Timers The Need Reliable, repeatable, stable time base Memory Access /Event timers ADC DAC Time Base: Crystal Oscillator Silicon Dioxide forms a piezoelectric crystal that can deform in eclectic field,

More information

TKT-3500 Microcontroller systems

TKT-3500 Microcontroller systems TKT-3500 Microcontroller systems Lec 4 Timers and other peripherals, pulse-width modulation Ville Kaseva Department of Computer Systems Tampere University of Technology Fall 2010 Sources Original slides

More information

VORAGO Timer (TIM) subsystem application note

VORAGO Timer (TIM) subsystem application note AN1202 VORAGO Timer (TIM) subsystem application note Feb 24, 2017, Version 1.2 VA10800/VA10820 Abstract This application note reviews the Timer (TIM) subsystem on the VA108xx family of MCUs and provides

More information

PAK-VIIIa Pulse Coprocessor Data Sheet by AWC

PAK-VIIIa Pulse Coprocessor Data Sheet by AWC PAK-VIIIa Pulse Coprocessor Data Sheet 2000-2003 by AWC AWC 310 Ivy Glen League City, TX 77573 (281) 334-4341 http://www.al-williams.com/awce.htm V1.6 30 Aug 2003 Table of Contents Overview...1 If You

More information

I-7088, I-7088D, M-7088 and M-7088D User Manual

I-7088, I-7088D, M-7088 and M-7088D User Manual I-7088, I-7088D, M-7088 and M-7088D User Manual I-7000 New Features 1. Internal Self Tuner 2. Multiple Baud Rates 3. Multiple Data Formats 4. Internal Dual WatchDog 5. True Distributed Control 6. High

More information

RayStar Microelectronics Technology Inc. Ver: 1.4

RayStar Microelectronics Technology Inc. Ver: 1.4 Features Description Product Datasheet Using external 32.768kHz quartz crystal Supports I 2 C-Bus's high speed mode (400 khz) The serial real-time clock is a low-power clock/calendar with a programmable

More information

Designing with STM32F3x

Designing with STM32F3x Designing with STM32F3x Course Description Designing with STM32F3x is a 3 days ST official course. The course provides all necessary theoretical and practical know-how for start developing platforms based

More information

EE 308 Lab Spring 2009

EE 308 Lab Spring 2009 9S12 Subsystems: Pulse Width Modulation, A/D Converter, and Synchronous Serial Interface In this sequence of three labs you will learn to use three of the MC9S12's hardware subsystems. WEEK 1 Pulse Width

More information

Application Manual. AB-RTCMC kHz-B5ZE-S3 Real Time Clock/Calendar Module with I 2 C Interface

Application Manual. AB-RTCMC kHz-B5ZE-S3 Real Time Clock/Calendar Module with I 2 C Interface Application Manual AB-RTCMC-32.768kHz-B5ZE-S3 Real Time Clock/Calendar Module with I 2 C Interface _ Abracon Corporation (www.abracon.com) Page (1) of (55) CONTENTS 1.0 Overview... 4 2.0 General Description...

More information

Roland Kammerer. 13. October 2010

Roland Kammerer. 13. October 2010 Peripherals Roland Institute of Computer Engineering Vienna University of Technology 13. October 2010 Overview 1. Analog/Digital Converter (ADC) 2. Pulse Width Modulation (PWM) 3. Serial Peripheral Interface

More information

Hello, and welcome to this presentation of the STM32L4 comparators. It covers the main features of the ultra-lowpower comparators and some

Hello, and welcome to this presentation of the STM32L4 comparators. It covers the main features of the ultra-lowpower comparators and some Hello, and welcome to this presentation of the STM32L4 comparators. It covers the main features of the ultra-lowpower comparators and some application examples. 1 The two comparators inside STM32 microcontroller

More information

Using the HT66F016L and the HT66F50 to Implement Remote Encoding and Decoding

Using the HT66F016L and the HT66F50 to Implement Remote Encoding and Decoding Using the HT66F016L and the HT66F50 to Implement Remote Encoding and Decoding D/N:AN0327E Introduction This application note describes how to implement a 4 3 Key NEC remote encoding Demo Board using the

More information

M16C/26 APPLICATION NOTE. Using Timer A in One-Shot Mode. 1.0 Abstract. 2.0 Introduction

M16C/26 APPLICATION NOTE. Using Timer A in One-Shot Mode. 1.0 Abstract. 2.0 Introduction APPLICATION NOTE M16C/26 1.0 Abstract One-shot timers are commonly found in designs, as they are useful for debouncing switches, cleaning up sensor inputs, etc. Timer A on the M16C/26 can be configured

More information

ZKit-51-RD2, 8051 Development Kit

ZKit-51-RD2, 8051 Development Kit ZKit-51-RD2, 8051 Development Kit User Manual 1.1, June 2011 This work is licensed under the Creative Commons Attribution-Share Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/in/

More information

RV-8564 Application Manual. Application Manual. Real-Time Clock Module with I 2 C-Bus Interface. October /62 Rev. 2.1

RV-8564 Application Manual. Application Manual. Real-Time Clock Module with I 2 C-Bus Interface. October /62 Rev. 2.1 Application Manual Application Manual Real-Time Clock Module with I 2 C-Bus Interface October 2017 1/62 Rev. 2.1 TABLE OF CONTENTS 1. OVERVIEW... 5 1.1. GENERAL DESCRIPTION... 5 1.2. APPLICATIONS... 5

More information

8-bit Microcontroller with 512/1024 Bytes In-System Programmable Flash. ATtiny4/5/9/10

8-bit Microcontroller with 512/1024 Bytes In-System Programmable Flash. ATtiny4/5/9/10 Features High Performance, Low Power AVR 8-Bit Microcontroller Advanced RISC Architecture 54 Powerful Instructions Most Single Clock Cycle Execution 16 x 8 General Purpose Working Registers Fully Static

More information

HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 HT1627 HT16270 COM

HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 HT1627 HT16270 COM RAM Mapping 48 16 LCD Controller for I/O µc LCD Controller Product Line Selection Table HT162X HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 HT1627 HT16270 COM 4 4 8 8 8 81 16 16 16 SEG 32 32 32 32

More information

1 Contents 2 2 Overview 3 3 Hardware Interface 4 4 Software Interface Register Map Interrupts 7

1 Contents 2 2 Overview 3 3 Hardware Interface 4 4 Software Interface Register Map Interrupts 7 1 Contents 1 Contents 2 2 Overview 3 3 Hardware Interface 4 4 Software Interface 5 4.1 Register Map 5 4.2 Interrupts 7 Version 2.2 - Confidential 2 of 7 2010 EnSilica Ltd, All Rights Reserved 2 Overview

More information

CS/ECE/EEE/INSTR F241 MICROPROCESSOR PROGRAMMING & INTERFACING MODULE 8: I/O INTERFACING QUESTIONS ANUPAMA KR BITS, PILANI KK BIRLA GOA CAMPUS

CS/ECE/EEE/INSTR F241 MICROPROCESSOR PROGRAMMING & INTERFACING MODULE 8: I/O INTERFACING QUESTIONS ANUPAMA KR BITS, PILANI KK BIRLA GOA CAMPUS CS/ECE/EEE/INSTR F241 MICROPROCESSOR PROGRAMMING & INTERFACING MODULE 8: I/O INTERFACING QUESTIONS ANUPAMA KR BITS, PILANI KK BIRLA GOA CAMPUS Q1. Distinguish between vectored and non-vectored interrupts

More information

Using the HCS08 TPM Module In Motor Control Applications

Using the HCS08 TPM Module In Motor Control Applications Pavel Grasblum Using the HCS08 TPM Module In Motor Control Applications Designers can choose from a wide range of microcontrollers to provide digital control for variable speed drives. Microcontrollers

More information

F²MC-16FX FAMILY ALL SERIES PROGRAMMABLE PULSE GENERATOR 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-16FX FAMILY ALL SERIES PROGRAMMABLE PULSE GENERATOR 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-300201-E-V14 F²MC-16FX FAMILY 16-BIT MICROCONTROLLER ALL SERIES PROGRAMMABLE PULSE GENERATOR APPLICATION NOTE Revision History Revision History Date

More information

FR FAMILY MB91460 PROGRAMMABLE PULSE GENERATOR 32-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

FR FAMILY MB91460 PROGRAMMABLE PULSE GENERATOR 32-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-300061-E-V11 FR FAMILY 32-BIT MICROCONTROLLER MB91460 PROGRAMMABLE PULSE GENERATOR APPLICATION NOTE Revision History Revision History Date Issue

More information

PCL-836 Multifunction countertimer and digital I/O add-on card for PC/XT/ AT and compatibles

PCL-836 Multifunction countertimer and digital I/O add-on card for PC/XT/ AT and compatibles PCL-836 Multifunction countertimer and digital I/O add-on card for PC/XT/ AT and compatibles Copyright This documentation is copyrighted 1997 by Advantech Co., Ltd. All rights are reserved. Advantech Co.,

More information

S3C9442/C9444/F9444/C9452/C9454/F9454

S3C9442/C9444/F9444/C9452/C9454/F9454 PRODUCT OVERVIEW 1 PRODUCT OVERVIEW SAM88RCRI PRODUCT FAMILY Samsung's SAM88RCRI family of 8-bit single-chip CMOS microcontrollers offers a fast and efficient CPU, a wide range of integrated peripherals,

More information

Electric Bike BLDC Hub Motor Control Using the Z8FMC1600 MCU

Electric Bike BLDC Hub Motor Control Using the Z8FMC1600 MCU Application Note Electric Bike BLDC Hub Motor Control Using the Z8FMC1600 MCU AN026002-0608 Abstract This application note describes a controller for a 200 W, 24 V Brushless DC (BLDC) motor used to power

More information

Digital Systems Design

Digital Systems Design Digital Systems Design Clock Networks and Phase Lock Loops on Altera Cyclone V Devices Dr. D. J. Jackson Lecture 9-1 Global Clock Network & Phase-Locked Loops Clock management is important within digital

More information

νµθωερτψυιοπασδφγηϕκλζξχϖβνµθωερτ ψυιοπασδφγηϕκλζξχϖβνµθωερτψυιοπα σδφγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκ χϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµθ

νµθωερτψυιοπασδφγηϕκλζξχϖβνµθωερτ ψυιοπασδφγηϕκλζξχϖβνµθωερτψυιοπα σδφγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκ χϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµθ θωερτψυιοπασδφγηϕκλζξχϖβνµθωερτψ υιοπασδφγηϕκλζξχϖβνµθωερτψυιοπασδ φγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκλζ ξχϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµ EE 331 Design Project Final Report θωερτψυιοπασδφγηϕκλζξχϖβνµθωερτψ

More information

Examples of using etimer on Power Architecture devices

Examples of using etimer on Power Architecture devices Freescale Semiconductor Document Number: AN4793 Application Note Rev. 0, 09/2013 Examples of using etimer on Power Architecture devices by: Tomas Kulig 1 ntroduction This application note describes how

More information

8-bit Microcontroller with 2K Bytes In-System Programmable Flash. ATtiny20

8-bit Microcontroller with 2K Bytes In-System Programmable Flash. ATtiny20 Features High Performance, Low Power AVR 8-bit Microcontroller Advanced RISC Architecture 112 Powerful Instructions Most Single Clock Cycle Execution 16 x 8 General Purpose Working Registers Fully Static

More information

JTAG pins do not have internal pull-ups enabled at power-on reset. JTAG INTEST instruction does not work

JTAG pins do not have internal pull-ups enabled at power-on reset. JTAG INTEST instruction does not work STELLARIS ERRATA Stellaris LM3S2110 RevA2 Errata This document contains known errata at the time of publication for the Stellaris LM3S2110 microcontroller. The table below summarizes the errata and lists

More information

Sensorless Vector Control with RL78G14

Sensorless Vector Control with RL78G14 Sensorless Vector Control with RL78G14 John Pocs, Applications Engineering Manager Class ID: 7L02I Renesas Electronics America Inc. John Pocs Sr. Application Engineering Manager Application focus: motor

More information

RFPT Specifications. The CHARON is a SPI controlled high accuracy TCXO with embedded timer and alarm function. Product description

RFPT Specifications. The CHARON is a SPI controlled high accuracy TCXO with embedded timer and alarm function. Product description RFPT200 -- The CHARON is a SPI controlled high accuracy TCXO with embedded timer and alarm function. -- -- The Charon is a high stability 7x5 SMD Digitally Controlled Temperature Controlled Crystal Oscillator

More information

Section 35. Output Compare with Dedicated Timer

Section 35. Output Compare with Dedicated Timer Section 35. Output Compare with Dedicated Timer HIGHLIGHTS This section of the manual comprises the following major topics: 35.1 Introduction... 35-2 35.2 Output Compare Registers... 35-3 35.3 Modes of

More information

Fixed-function (FF) implementation for PSoC 3 and PSoC 5 devices

Fixed-function (FF) implementation for PSoC 3 and PSoC 5 devices 2.40 Features 8- or 16-bit resolution Multiple pulse width output modes Configurable trigger Configurable capture Configurable hardware/software enable Configurable dead band Multiple configurable kill

More information

instabus EIB product documentation

instabus EIB product documentation Page: 1 of 39 Push button interface 4-gang Sensor Product name: Push button interface 4-gang Design: UP (flush-mounting type) Item no.: 2076-4T-01 ETS search path: Input / Binary Input, 4-gang / Push button

More information

GC221-SO16IP. 8-bit Turbo Microcontroller

GC221-SO16IP. 8-bit Turbo Microcontroller Total Solution of MCU GC221-SO16IP 8-bit Turbo Microcontroller CORERIVER Semiconductor reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products

More information

Using the Timer/Event Counter in the HT47R20A-1

Using the Timer/Event Counter in the HT47R20A-1 Using the Timer/Event Counter in the HT47R20A-1 D/N HA0031E Introduction The following notes introduce the usage of the HT47R20A-1 Timer/Event Counter. The HT47R20A-1 has a 16 bit continuous counting timer/counter

More information

UM2068 User manual. Examples kit for STLUX and STNRG digital controllers. Introduction

UM2068 User manual. Examples kit for STLUX and STNRG digital controllers. Introduction User manual Examples kit for STLUX and STNRG digital controllers Introduction This user manual provides complete information for SW developers about a set of guide examples useful to get familiar developing

More information

IZ602 LCD DRIVER Main features: Table 1 Pad description Pad No Pad Name Function

IZ602 LCD DRIVER Main features: Table 1 Pad description Pad No Pad Name Function LCD DRIVER The IZ602 is universal LCD controller designed to drive LCD with image element up to 128 (32x4). Instruction set makes IZ602 universal and suitable for applications with different types of displays.

More information

Timer A (0 and 1) and PWM EE3376

Timer A (0 and 1) and PWM EE3376 Timer A (0 and 1) and PWM EE3376 General Peripheral Programming Model l l l l Each peripheral has a range of addresses in the memory map peripheral has base address (i.e. 0x00A0) each register used in

More information

PRODUCT OVERVIEW OVERVIEW OTP

PRODUCT OVERVIEW OVERVIEW OTP PRODUCT OVERVIEW 1 PRODUCT OVERVIEW OVERVIEW The S3C7324 single-chip CMOS microcontroller has been designed for high performance using Samsung's newest 4-bit CPU core, SAM47 (Samsung Arrangeable Microcontrollers).

More information

DAC A (VCO) Buffer (write) DAC B (AGC) Buffer (write) Pulse Code Buffer (write) Parameter Buffer (write) Figure A.1. Receiver Controller Registers

DAC A (VCO) Buffer (write) DAC B (AGC) Buffer (write) Pulse Code Buffer (write) Parameter Buffer (write) Figure A.1. Receiver Controller Registers Appendix A. Host Computer Interface The host computer interface is contained on a plug-in module designed for the IBM PC/XT/AT bus. It includes the converters, counters, registers and programmed-logic

More information

HT1621. HT1621 RAM Mapping 32x4 LCD Controller for I/O MCU

HT1621. HT1621 RAM Mapping 32x4 LCD Controller for I/O MCU HT1621 RAM Mapping 32x4 LCD Controller for I/O MCU Features Operating voltage: 2.4V ~ 5.2V Built-in 256kHz RC oscillator External 32.768kHz crystal or 256 khz frequency source input Selection of 1/2 or

More information

SG8F160P. 8-BIT MCU With Embedded Touch Sensor Version 1.1. Sigma reserves the right to change this documentation without prior notice

SG8F160P. 8-BIT MCU With Embedded Touch Sensor Version 1.1. Sigma reserves the right to change this documentation without prior notice SPECIFICATION SG8F160P Version 1.1 Sigma reserves the right to change this documentation without prior notice TABLE OF CONTENTS SG8F160P 1. GENERAL DESCRIPTION...3 2. FEATURES...3 3. PIN ASSIGNMENT...5

More information

Low Energy Timer. AN Application Note. Introduction

Low Energy Timer. AN Application Note. Introduction ...the world's most energy friendly microcontrollers Low Energy Timer AN0026 - Application Note Introduction This application note gives an overview of the Low Energy Timer (LETIMER) and demonstrates how

More information

Lab 1.2 Joystick Interface

Lab 1.2 Joystick Interface Lab 1.2 Joystick Interface Lab 1.0 + 1.1 PWM Software/Hardware Design (recap) The previous labs in the 1.x series put you through the following progression: Lab 1.0 You learnt some theory behind how one

More information

RL78/G13 APPLICATION NOTE. Timer Array Unit (Pulse Interval Measurement) Introduction. Target Device. R01AN0458EJ0200 Rev Dec.

RL78/G13 APPLICATION NOTE. Timer Array Unit (Pulse Interval Measurement) Introduction. Target Device. R01AN0458EJ0200 Rev Dec. APPLICATION NOTE RL78/G13 R01AN0458EJ0200 Rev. 2.00 Introduction This application note describes how the timer array unit (TAU) measures time intervals between pulses. This unit measures the time elapsed

More information

High Resolution Pulse Generation

High Resolution Pulse Generation High Resolution Pulse Generation An Application Note for the NS9360 Processor www.digi.com 90001138 2009 Digi International Inc. All Rights Reserved. Digi, Digi International, and the Digi logo are trademarks

More information

HOMANN DESIGNS. DigiSpeed. Instruction manual. Version 1.0. Copyright 2004 Homann Designs.

HOMANN DESIGNS. DigiSpeed. Instruction manual. Version 1.0. Copyright 2004 Homann Designs. HOMANN DESIGNS DigiSpeed Instruction manual Version 1.0 Copyright 2004 Homann Designs http://www.homanndesigns.com Table of Contents Introduction...3 Features...3 DigiSpeed Operation Description...5 Overview...5

More information

LM8322 Mobile I/O Companion Supporting Key-Scan, I/O Expansion, PWM, and ACCESS.bus Host Interface

LM8322 Mobile I/O Companion Supporting Key-Scan, I/O Expansion, PWM, and ACCESS.bus Host Interface Mobile I/O Companion Supporting Key-Scan, I/O Expansion, PWM, and ACCESS.bus Host Interface 1.0 General Description The Mobile I/O Companion is a dedicated device to unburden a host processor from scanning

More information

For reference only Refer to the latest documents for details

For reference only Refer to the latest documents for details STM32F3 Technical Training For reference only Refer to the latest documents for details General Purpose Timers (TIM2/3/4/5 - TIM12/13/14 - TIM15/16/17 - TIM6/7/18) TIM2/5 TIM3/4/19 TIM12 TIM15 TIM13/14

More information

HT162X HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 COM

HT162X HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 COM RAM Mapping 328 LCD Controller for I/O MCU PATENTED PAT No. : 099352 Technical Document Application Note Features Operating voltage: 2.7V~5.2V Built-in RC oscillator 1/4 bias, 1/8 duty, frame frequency

More information

CHAPTER III THE FPGA IMPLEMENTATION OF PULSE WIDTH MODULATION

CHAPTER III THE FPGA IMPLEMENTATION OF PULSE WIDTH MODULATION 34 CHAPTER III THE FPGA IMPLEMENTATION OF PULSE WIDTH MODULATION 3.1 Introduction A number of PWM schemes are used to obtain variable voltage and frequency supply. The Pulse width of PWM pulsevaries with

More information

Graphical Control Panel User Manual

Graphical Control Panel User Manual Graphical Control Panel User Manual DS-MPE-DAQ0804 PCIe Minicard Data Acquisition Module For Universal Driver Version 7.0.0 and later Revision A.0 March 2015 Revision Date Comment A.0 3/18/2015 Initial

More information

Integrated RTC, TCXO and quartz crystal

Integrated RTC, TCXO and quartz crystal Rev. 6 11 July 213 Product data sheet 1. General description The is a CMOS 1 Real Time Clock (RTC) and calendar with an integrated Temperature Compensated Crystal (Xtal) Oscillator (TCXO) and a 32.768

More information

Controlling DC Brush Motor using MD10B or MD30B. Version 1.2. Aug Cytron Technologies Sdn. Bhd.

Controlling DC Brush Motor using MD10B or MD30B. Version 1.2. Aug Cytron Technologies Sdn. Bhd. PR10 Controlling DC Brush Motor using MD10B or MD30B Version 1.2 Aug 2008 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended

More information

Castle Creations, INC.

Castle Creations, INC. Castle Link Live Communication Protocol Castle Creations, INC. 6-Feb-2012 Version 2.0 Subject to change at any time without notice or warning. Castle Link Live Communication Protocol - Page 1 1) Standard

More information

Generating DTMF Tones Using Z8 Encore! MCU

Generating DTMF Tones Using Z8 Encore! MCU Application Note Generating DTMF Tones Using Z8 Encore! MCU AN024802-0608 Abstract This Application Note describes how Zilog s Z8 Encore! MCU is used as a Dual-Tone Multi- (DTMF) signal encoder to generate

More information

RV-8803-C7. Datasheet_DRAFT. Date: September 2014 Revision N : /59 Headquarters: Micro Crystal AG Mühlestrasse 14 CH-2540 Grenchen Switzerland

RV-8803-C7. Datasheet_DRAFT. Date: September 2014 Revision N : /59 Headquarters: Micro Crystal AG Mühlestrasse 14 CH-2540 Grenchen Switzerland RV-8803-C7 Datasheet_DRAFT Date: September 2014 Revision N : 0.90 1/59 Headquarters: Micro Crystal AG Mühlestrasse 14 CH-2540 Grenchen Switzerland Tel. Fax Internet Email +41 32 655 82 82 +41 32 655 82

More information

DS1720 ECON-Digital Thermometer and Thermostat

DS1720 ECON-Digital Thermometer and Thermostat www.maxim-ic.com FEATURES Requires no external components Supply voltage range covers from 2.7V to 5.5V Measures temperatures from 55 C to +125 C in 0.5 C increments. Fahrenheit equivalent is 67 F to +257

More information

I2C Demonstration Board LED Dimmers and Blinkers PCA9531 and PCA9551

I2C Demonstration Board LED Dimmers and Blinkers PCA9531 and PCA9551 I2C 2005-1 Demonstration Board LED Dimmers and Blinkers PCA9531 and PCA9551 Oct, 2006 Intelligent I 2 C LED Controller RGBA Dimmer/Blinker /4/5 Dimmer PCA9531/2/3/4 1 MHz I²C Bus PCA963X PCA9533 PCA9533

More information

Houngninou 2. Abstract

Houngninou 2. Abstract Houngninou 2 Abstract The project consists of designing and building a system that monitors the phase of two pulses A and B. Three colored LEDs are used to identify the phase comparison. When the rising

More information

Ultralow Power, UART, 1-Phase Power Measurement IC

Ultralow Power, UART, 1-Phase Power Measurement IC V9260 Ultralow Power, UART, 1-Phase Power Measurement IC V9260 is a multifunction, ultralow power, single-phase power measurement IC with UART serial interface. Features - 3.3V power supply: 2.8V to 3.6V.

More information