System Software Design by Chan-Chia (James) Chang

Slides:



Advertisements
Similar presentations
System Software Design Frank Mirabelli. Motorola MC9S12DP512 Bus Frequency 24 MHz Available Memory 512K bytes Flash EEPROM, 4K bytes EEPROM, 14K bytes.
Advertisements

P3- Represent how data flows around a computer system
Mark Schaumburg.  Dash Module for Formula Car  Sample pulse from engine for RPM  Display Information  Control gui  Can network interface  Request.
BlueECG System Software Design Western Washington University By: Corey Williamson.
Identifying Hardware Components in a Computer (continued) Clock Speed (continued) The computer has a system clock that generates a regular electronic beat.
Michael Nist. System Software Design  MCU (2): CY8CPLC20 8-bit  32 KB Flash, 2 KB SRAM  Bus Frequency: 24 MHz  Memory requirements:  Main Controller:
System Software Design Review.  MCU: NXP LPC2378 ARM7 32-bit  512 KB Flash, 8KB EEPROM and SRAM  Bus Frequency: 20 MHz  Approximate Memory requirements:
 Home Security and Lighting System  Western Washington University  Jonathon Ross  28 April, 2009.
Turbine Flow Meter Kevin Hooks Senior Design Project.
System Software Design and Documentation Zach Hill Western Washington University.
Digital Handheld Communication and Navigation Device
Vinh Le.  MCU: Freescale Kinetis K60512 ARM Cortex M4  Bus Frequency: 50MHz  Available Memory: ◦ 512KB Flash ◦ 64KB SRAM  Memory Required: ◦ 10KB.
SYSTEM SOFTWARE DESIGN JAMES ZUROSKE Pet Proximity Sensor.
Lost Item Pager System Design Russ Kinley 5/6/6008.
Ryan Hansgen. General System Design  MC9S08QE64CFT 24MHz Bus Frequency 64 K byte Flash EEPROM, 4.0 K byte RAM  Memory required 8 K bytes ROM 2 K bytes.
Knocker Unlocker JACOB GILBERT | SENIOR DESIGN PROJECT 1.
RFID Access Control System Lucius Knight. General System Design  Microcontroller  PSoC CY8C29466  24MHz Bus Frequency  Memory Available  32kB FLASH.
System Software Design Dane Kim May 4 th, 2009 EET 475, WWU.
BICYCLE SECURITY AND TRIP COMPUTER MATTHEW ROTHNIE WESTERN WASHINGTON UNIVERSITY 4/25/12.
By Jesse W. Spalding.  Microcontroller Choice  Motorola 9S12DP256B ◦ Set to 24 MHz for the Bus Frequency ◦ Memory  256K Bytes of ROM  12K Bytes of.
ATV INSTRUMENTATION DISPLAY System Design Ed Raezer Senior Project Western Washington University.
Multi-Access Lock Andrew Hall. General System Requirements MCU: MC9S12C128 Bus Frequency: 24MHz Memory Requirements: 11k bytes Flash EEPROM 3k bytes RAM.
System Software Design Engineer: Mac Gainor Western Washington University.
Machine Access System Software Design and Documentation Western Washington University By: Kevin Pogue.
Portable/Programable Location System – Software Design By: Mark Moerdyk.
Digitally Configurable Audio Routing Patchbay DCARP System Software Presentation Aaron Cramer Western Washington University 2009.
LED CUBE Preliminary System Software Design Fernando J. Garcia May
Humidity Sensing Fan Controller Jason Huft 05/11/10.
Yared Woldekiros Western Washington university WEB ENABLE HOME AUTOMATION.
System Software Design Dan Sweet May 6 th, 2008 Western Washington University Bicycle Power Meter.
Automatic Pressure Canning System System Software Design By: Michael Drysdale.
Atmospheric Data Measuring Rocket Software Design & Description Matt Buonadonna ADaM Code Presentation.
GPS Enhanced PFD System Software Presentation Eric Grossmann.
Software Design Review Andres Rodriguez. General System Design  MCU: STM32F405  MCU Bus Frequency: 84MHz  Memory Requirements  Flash: ~ 10Kb  RAM:
System Software Design GPS Training System Jason Corbridge May 8, 2008 Western Washington University.
LED CUBE Preliminary System Software Design Fernando J. Garcia May
WESTERN WASHINGTON UNIVERSITY KENT SYKES 2009 Audio Field Recorder System Software Design.
ATV INSTRUMENTATION DISPLAY System Software Design Ed Raezer.
Wireless Heart Rate Monitor. On-Person Unit MC13213 (HCS08)  16 MHz Bus Frequency  On Chip Resources 60K of Flash 4K of RAM  Require Resources 15K.
HOME CONTROL SYSTEM By: Justin E. Klumpp & Leo L.S. Wan Leo L.S. Wan.
System Software Design Doorbell Jukebox Henry Arbicor and Arthur Bingcang.
Voice Over IP – Software Western Washington University By: Jonathan R. Peterson.
Electronic Memory Game System Software Design Jack Sullivan May 08, 2007.
Conserve-A-Watt System Software Design Justin Rapozo.
The Guardian: Refrigerator Contents Tracker Bryant Lampano Western Washington University Electronics Engineering Technology [Type the company name]
Automated Aquarium Controller System Software Design ETEC 474 Western Washington University By: Gregory Rose.
28 April 2005 Brushless DC Motor Controller Software Design Presentation Western Washington University Patrick Prendergast.
System Software Design Presentation Western Washington University Taylor Reijm.
SUBMITTED BY EDGEFX TEAM
PROPELLER DISPLAY OF MESSAGE BY VIRTUAL LEDS
Project Title EVM IN 8051 Under the Guidance of Submitted by.
PRE-STAMPEDE MONITERING AND ALARM SYSTEM
Wireless Optical USB Mouse
Wireless Heart Rate Monitor
4-Integrating Peripherals in Embedded Systems
By: Justin E. Klumpp & Leo L.S. Wan
4-Integrating Peripherals in Embedded Systems
Introduction of microprocessor
ARDUINO DC MOTR SPEED CTL
General Architecture of Digital Computer
Introduction to Microprocessors and Microcontrollers
CSCI1600: Embedded and Real Time Software
8051 Micro Controller.
CSCI1600: Embedded and Real Time Software
Overview 1. Inside a PC 2. The Motherboard 3. RAM the 'brains' 4. ROM
Wireless Embedded Systems
System Software Design
Arduino Board.
Arduino म्हणजे काय?.
Presentation transcript:

System Software Design by Chan-Chia (James) Chang LED Display Panel System Software Design by Chan-Chia (James) Chang

General System Design MCU Motorola 9S12DP256B 24 MHz Bus Frequency 256K Byte Flash 12K Byte RAM 4K Byte EEPROM

Kernel Selection MicroC/OS-II Real-Time Preemptive Kernel

Priority of Tasks 4 – Start Task 5 – Clock Task 6 – TrafficLight Task 7 – LED Task 8 – KeyPress Task

Start Task Initialize the system Priority #4 Period: run it only once Execution time: 2ms

Clock Task Counts every second Priority #5 Period: 1sec, periodic Execution time: 1us

TrafficLight Task Control traffic lights Priority #6 Period: 0.5sec, periodic Execution time: 1us

LED Task Controls LEDs flash, and input data into LED drivers Priority #7 Period: 10ms, periodic Execution time: 48us

KeyPress Task Determent if someone pushes the buttons Priority #8 Period: 10ms, periodic Execution time: 2us

CPU Load Lmax = 1us + 1us + 48us + 2us 1s 0.5s 10ms 10ms Lmax = 0.5% Lavg = 0.26%

Modules Task Public Functions and Data Main.c Start Task Traffic.c TrafficLight Task Traffic() PICDisp.c LED Task PICDisp() LEDWrite.c LEDWrite() KeyPress.c KeyPress Task KeyInit(), KeyPend() Clock.c Clock Task Time()

Data Flow Diagram User Application Display Store Picture Display KeyPress.c LEDWrite.c PICDisp.c LED Display Display Traffic.c Traffic LEDs