Programming Assignment #1 - Variable Blinking LED CSE30 - Computer Organization and Systems Programming Quarter Year

Size: px
Start display at page:

Download "Programming Assignment #1 - Variable Blinking LED CSE30 - Computer Organization and Systems Programming Quarter Year"

Transcription

1 Programming Assignment #1 - Variable Blinking LED CSE30 - Computer Organization and Systems Programming Quarter Year Overview: The goal of this assignment is to get you started on the Cypress PSoC platform. You will step through two given example projects; one that flashes LEDs using hardware and software methods to do it, and one that displays the voltage from the variable resistor on the LCD. After that, you will write code that changes the blinking rate of an LED based upon the position of the variable resistor. Before you start, you should have installed all of the software for PSoC 5. Using the CD that comes with the kit is the easiest way to do this, as it will insure that all of the software you need is installed. You should run the Cypress Update Manager to make sure all your software is the most recent version. Example Project #1: Blinking LEDs Overview: This project demonstrates basic hardware and software functionality with the PSoC 5 device. It flashes two LEDs independently, one using hardware, the other with software. The hardware LED uses a hardware enabled digital port and a PWM to generate a duty cycle and flash the LED. The software LED uses a software enabled digital port and a simple delay in the main.c to flash the LED at a known rate. Creating the Project: Pulse-Width Modulator (PWM) A PWM is a component used by digital systems to generate control signals for hardware. Its periodic rectangular signal can be used for many applications including driving a speaker, rotating a servo motor, or making an LED blink at a regular interval. By adjusting the duty cycle or portion of the period that the power is on, a PWM can also be used to control the average power supplied, which can be used for a variety of functions such as dimming an LED. 1. Open PSoC Creator 2. Create a new project by clicking Create New Project in the Start Page of PSoC Creator. 3. In the New Project window, select the Empty PSoC5 Design template for a PSoC 5 design and name the project Ex1_LED_with_PWM. 4. In Location, type the path where you want to save the project, or click the button and navigate to the appropriate directory.

2 5. By default, the design window opens TopDesign.cysch. This is the project's schematic entry file within PSoC Creator. Placing and Configuring the PWM: 6. Drag-and-drop the PWM component (Cypress Component Catalog Digital Functions PWM) to workspace. 7. Double click the PWM_1 component in the schematic to open the configuration window. 8. Configure the PWM in this manner: Configure Tab Name PWM_1 // Used in C code to refer to component Implementation UDB // Use verilog implementation instead of fixed function timer Resolution 8-Bit // Specifies how many bits in C code to assign period and CMP PWM Mode One Output // The PWM is capable of producing multiple pin out signals Period 100 // The number of input clock cycles before output signal repeats CMP Value 1 50 // Value to compare current position in period to CMP Type 1 Less or Equal // What comparison to be made between current position and CMP Dead Band Disabled // Additional outputs shifted by a set number of clock cycles Advanced Tab Enable Mode Hardware Only // What is required to enable PWM functionality Interrupt On Terminal Count Event Select // Enables interrupts of this type 9. For more information about what the parameters mean, click the Data Sheet button in the configuration window. This can be done for any component.

3 Placing and Configuring Digital Output Pin Hardware: 10. Drag-and-drop the Digital Output Pin component (Component Catalog Ports and Pins Digital Output Pin). 11. Double click the Pin_1 component in the schematic to open the configuration window. 12. Configure the digital output pin: Type Tab Name LED1 // Used in C code to refer to output pin component Digital Output Selected // Sets pin output type to digital HW Connection Selected // Sets source of output to hardware connection General Tab Drive Mode Strong Drive // Set hardware configuration that drives output pin *Leave all other settings as default values Placing and Configuring the Software Digital Output Pin: 13. Drag-and-drop the Digital Output Pin component (Component Catalog Ports and Pins Digital Output Pin). 14. Double click the Pin_1 component in the schematic to open the configuration window. 15. Configure the digital output pin: Type Tab Name LED2 // Used in C code to refer to output pin component Digital Output Selected // Sets pin output type to digital *Leave all other checkboxes unselected General Tab Drive Mode Strong Drive // Set hardware configuration that drives output pin *Leave all other settings as default values

4 Connecting the Components Together: 16. Using the Wire Tool, connect pwm (in the PWM component) to hardware connection point of LED Connect a Logic High component (Component Catalog Digital Logic Logic High) to the enable on the PWM 18. Connect a Logic Low component (Component Catalog Digital Logic Logic Low) to the reset on the PWM 19. Connect a Clock component (Component Catalog System Clock) to the clock on the PWM. 20. Double click the Clock_1 component to configure. 21. Configure the clock: Configure Clock Tab Name Clock_1 // Used in C code to refer to the clock component Source ILO (1.000 khz) // Select which clock on board will act as source Specify Divider value of 10 // Sets clock to output every 10 cycles of input clock

5 22. When complete the schematic looks similar to: Configuring the Pins: 23. From the Workspace Explorer, double click the Ex1_LED_with_PWM.cydwr file 24. Click the Pins tab. 25. Select pin P1[6] for LED Select pin P1[7] for LED2. Creating the main.c File: 27. Open the existing main.c file within Workspace Explorer. 28. Replace the existing main.c content with the content of the embedded PA1-LED.c file, which can be found at: From the Build menu, select Build Ex1_LED_with_PWM. 30. PSoC Creator builds the project and displays the comments in the Output dialog box. When you see the message "Build Succeeded" the build is complete.

6 Configuring the PSoC Development Board: 31. Set supply voltage by switching SW3 to 3.3V. It is located next to the power supply and 9v battery connector. 32. Configure the following on the PSoC Development Board's prototyping area using the included 33. jumper wires a. P1[6] to LED1 b. P1[7] to LED2 34. Connect the power supply to the board Programming the PSoC Development Board: 35. Connect MiniProg3 to J5 (the pins that read PROG) on the CY8C55 Family Processor Module (the board cannot be programmed directly via the USB port on board) If this is your first time running PSoC Creator, follow these steps to configure the MiniProg3 device for these PSoC Development Kit projects. If these configurations are set, skip to the next step below and begin programming. Note: VTARG of the MiniProg3 is wired exclusively to VDDIO1 of the chip on the PSoC CY8C55 Family Processor Module. Because of this, you cannot perform power cycle mode programming. 36. From the Tools menu in PSoC Creator, click Options. 37. In the Options window, select Program/Debug from the list. a. Set Applied Voltage to 3.3V b. Set Transfer Mode to SWD c. Set Active Port to 10 Pin d. Set Debug Clock Speed to 3.2 MHz e. Click OK 38. From the Debug menu, select Select Debug Target. a. Expand the tree under MiniProg3 and click Port Acquire. b. Select the appropriate device and click Connect. c. Click OK. 39. In PSoC Creator, from the Debug menu, click Program.

7 40. The PSoC Creator Status Bar indicates that the device is programming. 41. Wait until programming is complete before continuing. 42. Connect P1[6] to LED1 and P1[7] to LED2. Verify that LED1 and LED2 are blinking based on the project's use of the PWMs. 43. LED1 blinks approximately once every second and LED 2 blinks about three times a second. LED 1: The PWM used in this project is configured to produce a digital signal with a period of 100 cycles of the source clock, and a 50% duty cycle. The source clock runs at 100Hz, resulting in a 1Hz square wave being output from the PWM to drive LED 1. LED 2: The main.c function uses an infinite loop and a delay function to periodically toggle the output for LED 2. By delaying by 167 milliseconds, this loop is producing a 3Hz square wave. Now that you have completed your first project, let s move on to a small introduction to using the other useful components on this board. In the following guided exercise, you will be using the potentiometer (the small black dial to the left of the touch-sensing sliders) to control the brightness of the LCD display.

8 Example Project #2: ADC to LCD Project Overview: This project demonstrates the Delta Sigma ADC by measuring the voltage of the potentiometer on the board and displays the result on the Character LCD of the PSoC Development Board. The ADC is clocked by the internal clock of 3 MHz and the sampling rate is set to 10,000 sps. Connect the voltage potentiometer (labeled "VR" on the PSoC Development Board) to the ADC input (programmed to P0[7] for this example). The program reads the ADC result and prints it to the LCD. Delta Sigma Analog-to-Digital Converter (ADC) The ADC used in this lab measures the voltage from the potentiometer and express it as an 8-bit unsigned integer value where a value of 0 (0x00) signifies a voltage of Vssa and 255 (0xFF) signifies a voltage of Vdda. Delta Sigma modulation is the technique used to make these measurements. The input voltage is passed to an oscillator. The oscillator produces pulses with a period inversely proportional to the voltage (i.e. the higher the voltage the more frequent the pulses). The digital output is computed by counting the pulses. Creating the Project: 1. Open PSoC Creator. 2. Create a new project by clicking Create New Project in the Start Page of PSoC Creator. 3. In the New Project window, select Empty PSoC5 Design template for a PSoC 5 design and Name the project Ex2_ADC_to_LCD. 4. In Location, type the path where you want to save the project, or click and navigate to the appropriate directory. By default, the design window opens TopDesign.cysch. This is the project's schematic entry file within PSoC Creator. Placing and Configuring Delta Sigma ADC: 5. Drag and drop the Delta Sigma ADC component (Component Catalog Analog ADC Delta Sigma ADC) 6. Double click the ADC_DelSig_1 component in the schematic to open the configuration window. 7. Configure the Delta Sigma ADC in this manner: Configure - Config 1 Tab Name ADC_DelSig_1 // Used in C code to refer to the ADC component # Configs 1 // Allows developer to design multiple configurations Conversion Mode Continuous // Set based on expected type of input Resolution 8 // Number of bits to use for granularity of measurement Conversion Rate // Samples per second to be taken Input Mode Single // Compares input to ground rather than second input Input Range Vssa to Vdda // Input ranges from ground to supply voltage Buffer Gain 1 // Required gain value for input range Configure Common Tab Clock Source internal // ADC will use internal clk instead of external clk in TopDesign Hardware SOC Unchecked //The start of conversion will be triggered by software For more information about what the parameters mean, click the Data Sheet button in the configuration window.

9 Potentiometer (POT) A Potentiometer is a variable resistor that works by having a conductive wiper sweep across a resistive material. Thus, the further the wiper is from either the A or B pins, the greater resistance there will be between that pin and the W pin. Placing and Configuring an Analog Pin: 8. Drag-and-drop the analog pin component (Component Catalog Ports and Pins Analog Pin). 9. Double click on the Pin_1 component in the schematic to open the configuration window. 10. Configure the analog pin in this manner Type Tab Name POT // Used in C code to refer to the POT input pin Analog Selected // Define pin as an analog input *Leave all other boxes unchecked General Tab Drive Mode High Impedance Analog // Set hardware configuration for input pin *Leave remaining parameters as default

10 Placing and Configuring Character LCD: 11. Drag-and-drop the Character LCD component (Component Catalog Display Character LCD) 12. Double click the LCD_Char_1 component in the schematic to open the configuration window. 13. Configure the Character LCD General Tab LCD Custom Character Set None // Set to use software defined text Include ASCII to Number Conversion routines Selected // Enables several API routines For more information about what the parameters mean, click the Data Sheet button in the configuration window. Liquid Crystal Display (LCD) While in recent years LCDs have become the primary display technology for TVs, they have existed since the late eighties. LCDs do not produce light, but rather rely on incident light or backlighting. The basic technology uses two linear polarizer plates that are perpendicular to each other. When incident light passes through the first plate, it becomes polarized to that plate s orientation. When the light reaches the second plate it is blocked by the polarizer. No Voltage Max Voltage To allow light to pass through, liquid crystals are arranged in a helical structure between the two plates. This causes the polarized light to be rotated to the orientation of the second polarizer, allowing it to pass through. When voltage is applied to electrodes in contact with the liquid crystals, begin to untwist, thus reducing the amount of light allowed through the front polarizer. With enough voltage, the crystals will completely straighten, and the light will be blocked.

11 Connecting the Components Together: 14. Wire the POT analog port to the ADC_DelSig_1 input. 15. When complete, the schematic looks like the figure below. Configuring the Pins: 16. From the Workspace Explorer, double click the Ex2_ADC_to_LCD.cydwr file. 17. Click the Pins tab. 18. Select pins P2[6:0] for LCD_Char_ Select pin P0[7] for POT Creating the main.c File: 20. Open the existing main.c file within Workspace Explorer. 21. Replace the existing main.c content with the content of the PA1-VR.c file, which can be found at From the Build menu, select Build Ex2_ADC_to_LCD. PSoC Creator builds the project and displays the comments in the Output dialog box. When you see the message "Build Succeeded" the build is complete. Configuring and Programming the PSoC Development Board: 23. Using the jumper wires included, configure the PSoC Development Board's prototyping. Connect P0[7] to the VR pin located directly below the breadboard. 24. Verify that VR_PWR (J11) is jumpered to ON. 25. Apply power to the board 26. Use PSoC Creator as described in the previous project to program the device. 27. After programming the device, press the Reset button on the PSoC Development Board to see the output of the ADC displayed on the LCD. Turning the potentiometer results in the LCD value changing.

12 Finally, the Assignment: Now that you have done these two examples, combine the two projects to toggle the rate of one LED blinking based upon the position of the potentiometer. This means that as you turn the potentiometer, the LED blinks at a faster/slower rate. Twisting the potentiometer clockwise makes the LED blink slower (this is when the ADC has a higher value), and twisting it counter clockwise increases the rate of the LED blinking (when the ADC has a lower value). Check the forum for a video demonstration of what we expect. Optional: Have the potentiometer control the blink rate for two LEDs, one through software and the other using a PWM. Questions: Explain how you would modify your solution to the assignment, using only components covered in this lab, so that turning the potentiometer dims the LED rather than causing it to blink? If our development board hadn t included a potentiometer, how could you have made one using common household materials?

CY8CKIT-001. PSoC Development Kit Guide. Doc. # 001-48651 Rev. *N November 25, 2013

CY8CKIT-001. PSoC Development Kit Guide. Doc. # 001-48651 Rev. *N November 25, 2013 CY8CKIT-001 PSoC Development Kit Guide Doc. # 001-48651 Rev. *N November 25, 2013 Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600

More information

Creating a Project with PSoC Designer

Creating a Project with PSoC Designer Creating a Project with PSoC Designer PSoC Designer is two tools in one. It combines a full featured integrated development environment (IDE) with a powerful visual programming interface. The two tools

More information

SKP16C62P Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc.

SKP16C62P Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc. SKP16C62P Tutorial 1 Software Development Process using HEW Renesas Technology America Inc. 1 Overview The following tutorial is a brief introduction on how to develop and debug programs using HEW (Highperformance

More information

ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation

ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation Program Definition: Write a program to control the speed of a dc motor using pulse width modulation. Discussion: The speed of a dc motor is

More information

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Sensors LCD Real Time Clock/ Calendar DC Motors Buzzer LED dimming Relay control I2C-FLEXEL PS2 Keyboards Servo Motors IR Remote Control

More information

Lab Experiment 1: The LPC 2148 Education Board

Lab Experiment 1: The LPC 2148 Education Board Lab Experiment 1: The LPC 2148 Education Board 1 Introduction The aim of this course ECE 425L is to help you understand and utilize the functionalities of ARM7TDMI LPC2148 microcontroller. To do that,

More information

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply Servo Motors (SensorDAQ only) Project 7 Servos are small, relatively inexpensive motors known for their ability to provide a large torque or turning force. They draw current proportional to the mechanical

More information

EasyC. Programming Tips

EasyC. Programming Tips EasyC Programming Tips PART 1: EASYC PROGRAMMING ENVIRONMENT The EasyC package is an integrated development environment for creating C Programs and loading them to run on the Vex Control System. Its Opening

More information

AVR Butterfly Training. Atmel Norway, AVR Applications Group

AVR Butterfly Training. Atmel Norway, AVR Applications Group AVR Butterfly Training Atmel Norway, AVR Applications Group 1 Table of Contents INTRODUCTION...3 GETTING STARTED...4 REQUIRED SOFTWARE AND HARDWARE...4 SETTING UP THE HARDWARE...4 SETTING UP THE SOFTWARE...5

More information

Work with Arduino Hardware

Work with Arduino Hardware 1 Work with Arduino Hardware Install Support for Arduino Hardware on page 1-2 Open Block Libraries for Arduino Hardware on page 1-9 Run Model on Arduino Hardware on page 1-12 Tune and Monitor Models Running

More information

Data Sheet. Adaptive Design ltd. Arduino Dual L6470 Stepper Motor Shield V1.0. 20 th November 2012. L6470 Stepper Motor Shield

Data Sheet. Adaptive Design ltd. Arduino Dual L6470 Stepper Motor Shield V1.0. 20 th November 2012. L6470 Stepper Motor Shield Arduino Dual L6470 Stepper Motor Shield Data Sheet Adaptive Design ltd V1.0 20 th November 2012 Adaptive Design ltd. Page 1 General Description The Arduino stepper motor shield is based on L6470 microstepping

More information

INTRODUCTION TO SERIAL ARM

INTRODUCTION TO SERIAL ARM INTRODUCTION TO SERIAL ARM A robot manipulator consists of links connected by joints. The links of the manipulator can be considered to form a kinematic chain. The business end of the kinematic chain of

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 Each peripheral has a range of addresses in the memory map peripheral has base address (i.e. 0x00A0) each register used in the peripheral

More information

Simple SDR Receiver. Looking for some hardware to learn about SDR? This project may be just what you need to explore this hot topic!

Simple SDR Receiver. Looking for some hardware to learn about SDR? This project may be just what you need to explore this hot topic! Michael Hightower, KF6SJ 13620 White Rock Station Rd, Poway, CA 92064; kf6sj@arrl.net Simple SDR Receiver Looking for some hardware to learn about SDR? This project may be just what you need to explore

More information

Lab 3: Introduction to Data Acquisition Cards

Lab 3: Introduction to Data Acquisition Cards Lab 3: Introduction to Data Acquisition Cards INTRODUCTION: In this lab, you will be building a VI to display the input measured on a channel. However, within your own VI you will use LabVIEW supplied

More information

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205]

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Users Manual Robokits India info@robokits.co.in http://www.robokitsworld.com Page 1 Bluetooth + USB 16 Servo Controller is used to control up to

More information

DRV8312-C2-KIT How to Run Guide

DRV8312-C2-KIT How to Run Guide DRV8312-C2-KIT How to Run Guide Version 1.1 October 2011 C2000 Systems and Applications Team This Guide explains the steps needed to run the DRV8312-C2-KIT with the software supplied through controlsuite.

More information

1. Learn about the 555 timer integrated circuit and applications 2. Apply the 555 timer to build an infrared (IR) transmitter and receiver

1. Learn about the 555 timer integrated circuit and applications 2. Apply the 555 timer to build an infrared (IR) transmitter and receiver Electronics Exercise 2: The 555 Timer and its Applications Mechatronics Instructional Laboratory Woodruff School of Mechanical Engineering Georgia Institute of Technology Lab Director: I. Charles Ume,

More information

Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs

Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs Welcome to this tutorial on Microchip s MPLAB Starter Kit for dspic Digital Signal Controllers, or DSCs. The starter kit is an all-in-one

More information

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 956 24-BIT DIFFERENTIAL ADC WITH I2C LTC2485 DESCRIPTION

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 956 24-BIT DIFFERENTIAL ADC WITH I2C LTC2485 DESCRIPTION LTC2485 DESCRIPTION Demonstration circuit 956 features the LTC2485, a 24-Bit high performance Σ analog-to-digital converter (ADC). The LTC2485 features 2ppm linearity, 0.5µV offset, and 600nV RMS noise.

More information

Bend Sensor USB User Guide

Bend Sensor USB User Guide Bend Sensor USB User Guide Copyright 2015Flexpoint Sensor Systems, Inc. Page 1 of 7 SEG040404B Contents Page Introduction... 3 Kit Contents... 3 Installation instructions... 4 FlexpointBSV software...

More information

Quick Start Guide. TWR-MECH Mechatronics Board TOWER SYSTEM

Quick Start Guide. TWR-MECH Mechatronics Board TOWER SYSTEM TWR-MECH Mechatronics Board TOWER SYSTEM Get to Know the Tower Mechatronics Board Primary Connector / Switch MCF52259 Connectors for Up to Eight Servos SW4 (Reset) USB OTG 5V Supply Touch Panel Socket

More information

CHAPTER 11: Flip Flops

CHAPTER 11: Flip Flops CHAPTER 11: Flip Flops In this chapter, you will be building the part of the circuit that controls the command sequencing. The required circuit must operate the counter and the memory chip. When the teach

More information

Lab 1 Course Guideline and Review

Lab 1 Course Guideline and Review Lab 1 Course Guideline and Review Overview Welcome to ECE 3567 Introduction to Microcontroller Lab. In this lab we are going to experimentally explore various useful peripherals of a modern microcontroller

More information

Microcontroller Code Example Explanation and Words of Wisdom For Senior Design

Microcontroller Code Example Explanation and Words of Wisdom For Senior Design Microcontroller Code Example Explanation and Words of Wisdom For Senior Design For use with the following equipment: PIC16F877 QikStart Development Board ICD2 Debugger MPLAB Environment examplemain.c and

More information

SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9

SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9 SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9 Learning Goals: At the end of this lab, the student should have basic familiarity with the DataMan

More information

Final Project Example

Final Project Example Final Project Example YM2149 Programmable Sound Generator Emulator PSoC Final Project Example Stephen Hammack Overview The YM2149 (a variant of the AY-3-8910) is a Programmable Sound Generator (PSG) that

More information

Transmitter Interface Program

Transmitter Interface Program Transmitter Interface Program Operational Manual Version 3.0.4 1 Overview The transmitter interface software allows you to adjust configuration settings of your Max solid state transmitters. The following

More information

10 Thomas, Irvine, CA 92618 USA Tel: (949) 465-0900 Fax: (949) 465-0905 Toll Free: (800) 23 FUTEK

10 Thomas, Irvine, CA 92618 USA Tel: (949) 465-0900 Fax: (949) 465-0905 Toll Free: (800) 23 FUTEK Table of Contents Software Overview... - 4 - Product Key... - 5 - Model Selection... - 6 - Device Selection... - 7 - Menu... - 8 - File... - 8 - Edit... - 8 - View... - 8 - Format... - 8 - Help... - 9

More information

Servo Info and Centering

Servo Info and Centering Info and Centering A servo is a mechanical motorized device that can be instructed to move the output shaft attached to a servo wheel or arm to a specified position. Inside the servo box is a DC motor

More information

Current Loop Tuning Procedure. Servo Drive Current Loop Tuning Procedure (intended for Analog input PWM output servo drives) General Procedure AN-015

Current Loop Tuning Procedure. Servo Drive Current Loop Tuning Procedure (intended for Analog input PWM output servo drives) General Procedure AN-015 Servo Drive Current Loop Tuning Procedure (intended for Analog input PWM output servo drives) The standard tuning values used in ADVANCED Motion Controls drives are conservative and work well in over 90%

More information

Building a Simulink model for real-time analysis V1.15.00. Copyright g.tec medical engineering GmbH

Building a Simulink model for real-time analysis V1.15.00. Copyright g.tec medical engineering GmbH g.tec medical engineering GmbH Sierningstrasse 14, A-4521 Schiedlberg Austria - Europe Tel.: (43)-7251-22240-0 Fax: (43)-7251-22240-39 office@gtec.at, http://www.gtec.at Building a Simulink model for real-time

More information

PCAN-MicroMod Universal I/O Module with CAN Interface. User Manual. Document version 2.1.0 (2014-01-16)

PCAN-MicroMod Universal I/O Module with CAN Interface. User Manual. Document version 2.1.0 (2014-01-16) PCAN-MicroMod Universal I/O Module with CAN Interface User Manual Document version 2.1.0 (2014-01-16) Products taken into account Product Name Part number Model PCAN-MicroMod IPEH-002080 with firmware

More information

Talon and Talon SR User Manual

Talon and Talon SR User Manual Talon and Talon SR User Manual Brushed DC motor controller Version 1.3 Cross the Road Electronics, LLC www.crosstheroadelectronics.com Cross The Road Electronics, LLC Page 1 4/2/2013 Device Overview Clear,

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.115 Microprocessor Project Laboratory

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.115 Microprocessor Project Laboratory Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.115 Microprocessor Project Laboratory Connecting your PSoC Evaluation Board It is easy and fun to avoid

More information

Freescale Semiconductor, I

Freescale Semiconductor, I nc. Application Note 6/2002 8-Bit Software Development Kit By Jiri Ryba Introduction 8-Bit SDK Overview This application note describes the features and advantages of the 8-bit SDK (software development

More information

Special Lecture. Basic Stamp 2 Programming. (Presented on popular demand)

Special Lecture. Basic Stamp 2 Programming. (Presented on popular demand) Special Lecture Basic Stamp 2 Programming (Presented on popular demand) Programming Environment Servo Motor: How It Work? The editor window consists of the main edit pane with an integrated explorer panel

More information

Pulse Width Modulation Applications

Pulse Width Modulation Applications Pulse Width Modulation Applications Lecture 21 EE 383 Microcomputers Learning Objectives What is DTMF? How to use PWM to generate DTMF? How to use PWM to control a servo motor? How to use PWM to control

More information

EVAL-UFDC-1/UFDC-1M-16

EVAL-UFDC-1/UFDC-1M-16 Evaluation Board for Universal Frequency-to- Digital Converters UFDC-1 and UFDC-1M-16 EVAL-UFDC-1/UFDC-1M-16 FEATURES Full-Featured Evaluation Board for the Universal Frequency-to-Digital Converters UFDC-1

More information

Accurate Measurement of the Mains Electricity Frequency

Accurate Measurement of the Mains Electricity Frequency Accurate Measurement of the Mains Electricity Frequency Dogan Ibrahim Near East University, Faculty of Engineering, Lefkosa, TRNC dogan@neu.edu.tr Abstract The frequency of the mains electricity supply

More information

MODULE BOUSSOLE ÉLECTRONIQUE CMPS03 Référence : 0660-3

MODULE BOUSSOLE ÉLECTRONIQUE CMPS03 Référence : 0660-3 MODULE BOUSSOLE ÉLECTRONIQUE CMPS03 Référence : 0660-3 CMPS03 Magnetic Compass. Voltage : 5v only required Current : 20mA Typ. Resolution : 0.1 Degree Accuracy : 3-4 degrees approx. after calibration Output

More information

EMBEDDED C USING CODEWARRIOR Getting Started Manual

EMBEDDED C USING CODEWARRIOR Getting Started Manual Embedded C using CodeWarrior 1 68HC12 FAMILY EMBEDDED C USING CODEWARRIOR Getting Started Manual TECHNOLOGICAL ARTS, INC. Toll-free: 1-877-963-8996 (USA and Canada) Phone: +(416) 963-8996 Fax: +(416) 963-9179

More information

Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs

Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs AN033101-0412 Abstract This describes how to interface the Dallas 1-Wire bus with Zilog s Z8F1680 Series of MCUs as master devices. The Z8F0880,

More information

Programming PIC Microcontrollers in PicBasic Pro Lesson 1 Cornerstone Electronics Technology and Robotics II

Programming PIC Microcontrollers in PicBasic Pro Lesson 1 Cornerstone Electronics Technology and Robotics II Programming PIC Microcontrollers in PicBasic Pro Lesson 1 Cornerstone Electronics Technology and Robotics II Administration: o Prayer PicBasic Pro Programs Used in This Lesson: o General PicBasic Pro Program

More information

Using Flow Control with the HEAD Recorder

Using Flow Control with the HEAD Recorder 03/15 Using with the HEAD Recorder The HEAD Recorder is a data acquisition software program that features an editable Flow Control function. This function allows complex program sequences to be predefined,

More information

DKWF121 WF121-A 802.11 B/G/N MODULE EVALUATION BOARD

DKWF121 WF121-A 802.11 B/G/N MODULE EVALUATION BOARD DKWF121 WF121-A 802.11 B/G/N MODULE EVALUATION BOARD PRELIMINARY DATA SHEET Wednesday, 16 May 2012 Version 0.5 Copyright 2000-2012 Bluegiga Technologies All rights reserved. Bluegiga Technologies assumes

More information

Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial

Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial Embedded Processor Hardware Design January 29 th 2015. VIVADO TUTORIAL 1 Table of Contents Requirements... 3 Part 1:

More information

Lab 1: Introduction to Xilinx ISE Tutorial

Lab 1: Introduction to Xilinx ISE Tutorial Lab 1: Introduction to Xilinx ISE Tutorial This tutorial will introduce the reader to the Xilinx ISE software. Stepby-step instructions will be given to guide the reader through generating a project, creating

More information

13-1. This chapter explains how to use different objects.

13-1. This chapter explains how to use different objects. 13-1 13.Objects This chapter explains how to use different objects. 13.1. Bit Lamp... 13-3 13.2. Word Lamp... 13-5 13.3. Set Bit... 13-9 13.4. Set Word... 13-11 13.5. Function Key... 13-18 13.6. Toggle

More information

G-100/200 Operation & Installation

G-100/200 Operation & Installation G-100/200 Operation & Installation 2 Contents 7 Installation 15 Getting Started 16 GPS Mode Setup 18 Wheel Sensor Mode Setup 20 Fuel Calibration 23 Basic Operation 24 Telemetery Screen 27 Entering a Distance

More information

Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester

Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester Leonardo Journal of Sciences ISSN 1583-0233 Issue 20, January-June 2012 p. 31-36 Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester Ganesh Sunil NHIVEKAR *, and Ravidra Ramchandra MUDHOLKAR

More information

Scripting Language Reference. SimpleBGC 32bit

Scripting Language Reference. SimpleBGC 32bit Scripting Language Reference SimpleBGC 32bit Firmware ver.: 2.5x Updated: 05.08.2015 Overview Scripting language is intended to control a gimbal by user-written program. This program is uploaded to controller

More information

Chapter 4: Pulse Width Modulation

Chapter 4: Pulse Width Modulation Pulse Width Modulation Page 127 Chapter 4: Pulse Width Modulation PULSES FOR COMMUNICATION AND CONTROL Pulse width modulation is abbreviated PWM, and it refers to a technique of varying the amount of time

More information

Tutorials Drawing a 555 timer circuit

Tutorials Drawing a 555 timer circuit Step 1 of 10: Introduction This tutorial shows you how to make an electronic circuit using Livewire and PCB Wizard 3. You should follow this tutorial to learn the basic skills you will need to use Livewire

More information

Event counters in NOVA

Event counters in NOVA Case study: how to use the event counters in NOVA? 1 Event counter support NOVA Technical Note 22 Event counters in NOVA Most of the measurement commands, like CV staircase or Record signals (> 1 ms) provide

More information

Tutorial for MPLAB Starter Kit for PIC18F

Tutorial for MPLAB Starter Kit for PIC18F Tutorial for MPLAB Starter Kit for PIC18F 2006 Microchip Technology Incorporated. All Rights Reserved. WebSeminar Title Slide 1 Welcome to the tutorial for the MPLAB Starter Kit for PIC18F. My name is

More information

Interfacing Analog to Digital Data Converters

Interfacing Analog to Digital Data Converters Converters In most of the cases, the PIO 8255 is used for interfacing the analog to digital converters with microprocessor. We have already studied 8255 interfacing with 8086 as an I/O port, in previous

More information

Chapter I Model801, Model802 Functions and Features

Chapter I Model801, Model802 Functions and Features Chapter I Model801, Model802 Functions and Features 1. Completely Compatible with the Seventh Generation Control System The eighth generation is developed based on the seventh. Compared with the seventh,

More information

- 35mA Standby, 60-100mA Speaking. - 30 pre-defined phrases with up to 1925 total characters.

- 35mA Standby, 60-100mA Speaking. - 30 pre-defined phrases with up to 1925 total characters. Contents: 1) SPE030 speech synthesizer module 2) Programming adapter kit (pcb, 2 connectors, battery clip) Also required (for programming) : 4.5V battery pack AXE026 PICAXE download cable Specification:

More information

DAC Digital To Analog Converter

DAC Digital To Analog Converter DAC Digital To Analog Converter DAC Digital To Analog Converter Highlights XMC4000 provides two digital to analog converters. Each can output one analog value. Additional multiple analog waves can be generated

More information

[F/T] [5] [KHz] [AMP] [3] [V] 4 ) To set DC offset to -2.5V press the following keys [OFS] [+/-] [2] [.] [5] [V]

[F/T] [5] [KHz] [AMP] [3] [V] 4 ) To set DC offset to -2.5V press the following keys [OFS] [+/-] [2] [.] [5] [V] FG085 minidds Function Generator Manual of Operation Applicable Models: 08501, 08501K, 08502K, 08503, 08503K Applicable Firmware Version: 1 ) 113-08501-100 or later (for U5) 2 ) 113-08502-030 or later

More information

STIM202 Evaluation Kit

STIM202 Evaluation Kit Table of contents: 1 FEATURES... 2 2 GENERAL DESCRIPTIONS AND SYSTEM CONTENTS... 2 3 SYSTEM REQUIREMENTS... 2 4 GETTING STARTED... 3 4.1 INSTALLATION OF NI-SERIAL CABLE ASSEMBLY DRIVER... 3 4.2 INSTALLATION

More information

ET-BASE AVR ATmega64/128

ET-BASE AVR ATmega64/128 ET-BASE AVR ATmega64/128 ET-BASE AVR ATmega64/128 which is a Board Microcontroller AVR family from ATMEL uses MCU No.ATmega64 and ATmega128 64PIN. Board ET-BASE AVR ATmega64/128 uses MCU s resources on

More information

Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A) MODULE A5 Programming the CPU 314C-2DP

Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A) MODULE A5 Programming the CPU 314C-2DP Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A) MODULE T I A Training Document Page 1 of 25 Module This document has been written by Siemens AG for training

More information

Jianjian Song LogicWorks 4 Tutorials (5/15/03) Page 1 of 14

Jianjian Song LogicWorks 4 Tutorials (5/15/03) Page 1 of 14 LogicWorks 4 Tutorials Jianjian Song Department of Electrical and Computer Engineering Rose-Hulman Institute of Technology March 23 Table of Contents LogicWorks 4 Installation and update...2 2 Tutorial

More information

Plena Voice Alarm System Firmware update

Plena Voice Alarm System Firmware update Plena Voice Alarm System Firmware update 1. Introduction It is advised to update a Bosch Plena Voice Alarm System with the latest released firmware. This Application Note describes how a firmware update

More information

POCKET SCOPE 2. The idea 2. Design criteria 3

POCKET SCOPE 2. The idea 2. Design criteria 3 POCKET SCOPE 2 The idea 2 Design criteria 3 Microcontroller requirements 3 The microcontroller must have speed. 3 The microcontroller must have RAM. 3 The microcontroller must have secure Flash. 3 The

More information

Parts List. Navigation

Parts List. Navigation Parts List quantity description 1 LCD-200 Display 1 LCD-200 Display cable 1 CD-ROM 2 dual lock or velcro 1 1GB SD card (optional) 1 CAN termination plug Navigation Main Menu Begin Log/Stop Log page 4 Log

More information

3. Programming the STM32F4-Discovery

3. Programming the STM32F4-Discovery 1 3. Programming the STM32F4-Discovery The programming environment including the settings for compiling and programming are described. 3.1. Hardware - The programming interface A program for a microcontroller

More information

Lab View with crio Tutorial. Control System Design Feb. 14, 2006

Lab View with crio Tutorial. Control System Design Feb. 14, 2006 Lab View with crio Tutorial Control System Design Feb. 14, 2006 Pan and Tilt Mechanism Experimental Set up Power Supplies Ethernet cable crio Reconfigurable Embedded System Lab View + Additional Software

More information

LEN s.r.l. Via S. Andrea di Rovereto 33 c.s. 16043 CHIAVARI (GE) Tel. +39 0185 318444 - Fax +39 0185 472835 mailto: len@len.it url: http//www.len.

LEN s.r.l. Via S. Andrea di Rovereto 33 c.s. 16043 CHIAVARI (GE) Tel. +39 0185 318444 - Fax +39 0185 472835 mailto: len@len.it url: http//www.len. MA511 General Index 1 INTRODUCTION... 3 1.1 HARDWARE FEATURES:... 4 2 INTERFACE... 5 2.1 KEYBOARD... 6 2.2 POWER ON... 7 2.3 POWER OFF... 7 2.4 DETECTOR CONNECTION... 7 2.5 DETECTOR SUBSTITUTION...7 3

More information

PowerBox PBX 180. Installation and Users Guide

PowerBox PBX 180. Installation and Users Guide PowerBox PBX 180 Installation and Users Guide Firmware and Tool Version 060 7/14/2015 Table of Contents Table of Contents 1 Introduction... 4 2 Hardware... 6 3 Software Installation... 7 3.1 Software Installation

More information

Antenna Rotator System

Antenna Rotator System Antenna Rotator System RCI-USB Reference Manual September/2011 Rev 1.3c Introduction Thank you for purchasing the ARS RCI-USB Interface. Presently, the ARS System provides the most powerful highest performance

More information

Design of an Insulin Pump. Purpose of an Insulin Pump:

Design of an Insulin Pump. Purpose of an Insulin Pump: Design of an Insulin Pump Purpose of an Insulin Pump: Insulin is a hormone central to regulating carbohydrate and fat metabolism in the body. It is secreted regularly within the body and aids in converting

More information

ENGI E1112 Departmental Project Report: Computer Science/Computer Engineering

ENGI E1112 Departmental Project Report: Computer Science/Computer Engineering ENGI E1112 Departmental Project Report: Computer Science/Computer Engineering Daniel Estrada Taylor, Dev Harrington, Sekou Harris December 2012 Abstract This document is the final report for ENGI E1112,

More information

An Introduction to MPLAB Integrated Development Environment

An Introduction to MPLAB Integrated Development Environment An Introduction to MPLAB Integrated Development Environment 2004 Microchip Technology Incorporated An introduction to MPLAB Integrated Development Environment Slide 1 This seminar is an introduction to

More information

AVR Timer/Counter. Prof Prabhat Ranjan DA-IICT, Gandhinagar

AVR Timer/Counter. Prof Prabhat Ranjan DA-IICT, Gandhinagar AVR Timer/Counter Prof Prabhat Ranjan DA-IICT, Gandhinagar 8-bit Timer/Counter0 with PWM Single Compare Unit Counter Clear Timer on Compare Match (Auto Reload) Glitch-free, Phase Correct Pulse Width Modulator

More information

Mobius 3 Circuit Board Programming Instructions

Mobius 3 Circuit Board Programming Instructions Mobius 3 Circuit Board Programming Instructions Page 1 Mobius 3 Circuit Board Programming Instructions Introduction The Mobius 3 Power System consists of at least 4 circuit boards that need to be programmed.

More information

Quick Start Guide. MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD

Quick Start Guide. MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD Quick Start Guide MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD Quick Start Guide Get to Know the MRB-KW01x Module UART Selector ANT 1 RFIO (TX/RX) USB 2.0 Serial

More information

WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide

WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide Version 2.1, 4/2010 Disclaimer While every effort has been made to ensure that the information in this guide is accurate

More information

1/22/16. You Tube Video. https://www.youtube.com/watch?v=ympzipfabyw. Definitions. Duty Cycle: on-time per period (specified in per cent)

1/22/16. You Tube Video. https://www.youtube.com/watch?v=ympzipfabyw. Definitions. Duty Cycle: on-time per period (specified in per cent) Definition Pulse Width Modulation (PWM) is simply a way of getting the micro-controller to manage pulsing a pin on and off at a set period and duty cycle. The LPC11U24 has four timers with four match registers

More information

AXE033 SERIAL/I2C LCD

AXE033 SERIAL/I2C LCD AXE033 SERIAL/I2C LCD The serial LCD and clock module allows microcontroller systems (e.g. PICAXE) to visually output user instructions or readings, without the need for a computer. This is especially

More information

PNOZmulti Configurator V8.1.1

PNOZmulti Configurator V8.1.1 General 1000 PNOZmulti 1.1 1100 General 1- ][Allgemein Configurator V8.1.1 This document contains important information, which must be noted. This document also contains details of the changes made in

More information

Electric Landing Gear controllers and sequencer LGC12 / LGC 13C

Electric Landing Gear controllers and sequencer LGC12 / LGC 13C Electric Landing Gear controllers and sequencer LGC12 / LGC 13C Users Guide. Torrent d en Puig, 31. 08358, Arenys de Munt, Barcelona,Catalonia,Spain E-mail: info@xicoy.com. Fax: +34 933 969 743 web: www.xicoy.com

More information

Pulse Width Modulation (PWM) LED Dimmer Circuit. Using a 555 Timer Chip

Pulse Width Modulation (PWM) LED Dimmer Circuit. Using a 555 Timer Chip Pulse Width Modulation (PWM) LED Dimmer Circuit Using a 555 Timer Chip Goals of Experiment Demonstrate the operation of a simple PWM circuit that can be used to adjust the intensity of a green LED by varying

More information

SAFEPATH 4 Telephone Zone Controller

SAFEPATH 4 Telephone Zone Controller SAFEPATH 4 Telephone Zone Controller SP4-TZC P/N 109921 SP4-TZC-P P/N 105590 Installation, Testing, Operation and Maintenance Manual 273 Branchport Avenue, Long Branch, NJ 07740-6899 Ph: (800) 631-2148

More information

Thermistor Calculator. Features. General Description. Input/Output Connections. When to use a Thermistor Calculator 1.10

Thermistor Calculator. Features. General Description. Input/Output Connections. When to use a Thermistor Calculator 1.10 PSoC Creator Component Data Sheet Thermistor Calculator 1.10 Features Adaptable for majority of negative temperature coefficient (NTC) thermistors Look-Up-Table (LUT) or equation implementation methods

More information

Von der Hardware zur Software in FPGAs mit Embedded Prozessoren. Alexander Hahn Senior Field Application Engineer Lattice Semiconductor

Von der Hardware zur Software in FPGAs mit Embedded Prozessoren. Alexander Hahn Senior Field Application Engineer Lattice Semiconductor Von der Hardware zur Software in FPGAs mit Embedded Prozessoren Alexander Hahn Senior Field Application Engineer Lattice Semiconductor AGENDA Overview Mico32 Embedded Processor Development Tool Chain HW/SW

More information

RCC2 Test Proceedures

RCC2 Test Proceedures RCC2 Test Proceedures 1. Power-up Test 1. install board in VME crate (6U style or 6U section of 9U) and turn on power 2. check that cfg LED (D4) on front panel and D3 LED on board near U47 are lit (red)

More information

Internal LVDS Dynamic Backlight Brightness Control

Internal LVDS Dynamic Backlight Brightness Control White Paper Ho Nee Shen Senior Software Engineer Intel Corporation Chan Swee Tat System Engineer Intel Corporation Internal LVDS Dynamic Backlight Brightness Control A platform and software design using

More information

3-Digit Counter and Display

3-Digit Counter and Display ECE 2B Winter 2007 Lab #7 7 3-Digit Counter and Display This final lab brings together much of what we have done in our lab experiments this quarter to construct a simple tachometer circuit for measuring

More information

Technical Manual. FAN COIL CONTROLLER COOLING or HEATING ANALOG or PWM Art. 119914 631001A

Technical Manual. FAN COIL CONTROLLER COOLING or HEATING ANALOG or PWM Art. 119914 631001A COOLING or HEATING ANALOG or PWM Art. 119914 631001A TOTAL AUTOMATION GENERAL TRADING CO. LLC SUITE NO.506, LE SOLARIUM OFFICE TOWER, SILICON OASIS, DUBAI. UAE. Tel. +971 4 392 6860, Fax. +971 4 392 6850

More information

Tecla for Android. Downloading and Installing the Tecla Access App. Activating and Selecting the Tecla Access Keyboard

Tecla for Android. Downloading and Installing the Tecla Access App. Activating and Selecting the Tecla Access Keyboard Tecla for Android Downloading and Installing the Tecla Access App Activating and Selecting the Tecla Access Keyboard Connecting the App to the Tecla Shield Connecting Switches Controlling the Android User

More information

SYMETRIX SOLUTIONS: TECH TIP May 2014

SYMETRIX SOLUTIONS: TECH TIP May 2014 How to Integrate External Control Inputs on Symetrix DSP Hardware This tech tip will explain how to properly integrate the External Control Inputs of Symetrix DSP units (Radius/Edge, xcontrol, Jupiter,

More information

Whale 3. User Manual and Installation Guide. DC Servo drive. Contents. 1. Safety, policy and warranty. 1.1. Safety notes. 1.2. Policy. 1.3. Warranty.

Whale 3. User Manual and Installation Guide. DC Servo drive. Contents. 1. Safety, policy and warranty. 1.1. Safety notes. 1.2. Policy. 1.3. Warranty. Whale 3 DC Servo drive User Manual and Installation Guide Contents 1. Safety, policy and warranty. 1.1. Safety notes. 1.2. Policy. 1.3. Warranty. 2. Electric specifications. 2.1.Operation ranges. 3. Connections

More information

PolyBot Board. User's Guide V1.11 9/20/08

PolyBot Board. User's Guide V1.11 9/20/08 PolyBot Board User's Guide V1.11 9/20/08 PolyBot Board v1.1 16 pin LCD connector 4-pin SPI port (can be used as digital I/O) 10 Analog inputs +5V GND GND JP_PWR 3-pin logic power jumper (short top 2 pins

More information

USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual

USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual Copyright 2007 SofTec Microsystems DC01197 We want your feedback! SofTec Microsystems is always on

More information

AN3252 Application note

AN3252 Application note Application note Building a wave generator using STM8L-DISCOVERY Application overview This application note provides a short description of how to use the STM8L-DISCOVERY as a basic wave generator for

More information

EE8205: Embedded Computer System Electrical and Computer Engineering, Ryerson University. Introduction to Keil uvision and ARM Cortex M3

EE8205: Embedded Computer System Electrical and Computer Engineering, Ryerson University. Introduction to Keil uvision and ARM Cortex M3 EE8205: Embedded Computer System Electrical and Computer Engineering, Ryerson University Introduction to Keil uvision and ARM Cortex M3 1. Objectives The purpose of this lab is to introduce students to

More information

Ethernet. Customer Provided Equipment Configuring the Ethernet port.

Ethernet. Customer Provided Equipment Configuring the Ethernet port. Installing the RDSP-3000A-NIST Master Clock. Ethernet Connect the RJ-45 connector to a TCP/IP network. Equipment The following equipment comes with the clock system: RDSP-3000A-NIST Master Clock Module.

More information