8 Pages

EE475_Lab_02_FL2008

Course: EE 475, Fall 2008
School: Montana
Rating:
 
 
 
 
 

Word Count: 1934

Document Preview

Lab EE475 #2 Fall 2008 Creating C Programs With the CodeWarrior IDE In this lab you will use the Metrowerks CodeWarrior compiler to create, build, and run several simple C programs. CodeWarrior is a code development environment that supports a wide variety of processor targets, including the HC08 and HC12. We will be using it with the MC9S12C32 processors on the Axiom MCU Project Boards in the lab. Logging On:...

Register Now

Unformatted Document Excerpt

Coursehero >> Montana >> Montana >> EE 475

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Lab EE475 #2 Fall 2008 Creating C Programs With the CodeWarrior IDE In this lab you will use the Metrowerks CodeWarrior compiler to create, build, and run several simple C programs. CodeWarrior is a code development environment that supports a wide variety of processor targets, including the HC08 and HC12. We will be using it with the MC9S12C32 processors on the Axiom MCU Project Boards in the lab. Logging On: 1. Wake up the computer (or turn on the power if it is off). 2. Begin by pressing Ctrl+Alt+Delete (Windows XP). 3. Enter your username and password, and select the proper domain. Launching : Start the development application: > Programs | Freescale CodeWarrior | CW for HC12 V4.5 | CodeWarrior IDE Setting up the CodeWarrior software project: 1. From the CodeWarrior File menu, select the New option. The New Project window should appear. 2. Fill in a project name (e.g., Lab2xyz, where xyz are your initials), and use the Set button to locate a subdirectory you can read and write: Your Z: drive is a good choice. Choose the HC(S)12 New Project Wizard and press OK. 3. Using the Wizard prompts: a. b. c. d. e. f. g. h. Select the MC9S12C32 derivative Select C language support No Processor Expert No PC-lint support Yes ANSI Startup Code No floating point support Small memory model Check the boxes to select Full Chip Simulator AND P&E Multilink/Cyclone Pro and then press Finish. The project framework has now been created. In the left pane, open all the file browse folders by pressing the "+" boxes to see all the supporting files. Also, make sure that P&E ICD is the target selected in the drop-down box at the top of the folders pane. EE475 Lab #2 2 Compiling a simple program: Using the browse view, locate the main.c file in the Sources group. Double-click to launch the file in an editor window. This dummy main() routine just enables interrupts and then traps itself in an infinite loop. Keep in mind that embedded software generally does not "return" to a calling routine, so an infinite loop somewhere in the code is not unusual. Now replace the main() routine with the following: void main(void) { /* This is a test program. * The results are meaningless. */ int j; volatile int val; val=10; for(j=0;j<6;++j){ val=val+j; } for(;;); /* endless loop */ } Note that volatile int is used to prevent the compiler from eliminating the "useless" code involving val. Also, note that the _asm() function can be used to insert an in-line assembly language instruction, such as _asm("nop"); Save the main.c file, then select Make from the Project menu (or press the "make" icon on the task bar). Any compiler errors will appear in a pop-up window. Ask for help if any of the preliminary steps did not work properly. Once the program compiles correctly, try making some deliberate errors (missing semicolons, misspelled variable names, etc.) and see what the compiler errors look like. Connecting to the SLK board Carefully connect the USB cable between the computer and the shiny USB receptacle on the edge of the SLK board opposite to the microcontroller daughterboard. The USB power LED should turn on, and the VDD LED on the microcontroller daughterboard should light up. Seek help if the board does not power up as expected. EE475 Lab #2 3 Debugging the program After the program compiles and links correctly, press the green Debug icon to launch the simulator/debugger application. The debugger app automatically opens a variety of windows to show the source code, disassembly, register contents, etc. You may get a warning message indicating that the non-volatile memory on the chip will be erased: this is OK. The LEDs on the daughterboard should turn off, except for the green power LED. The Debugger app should show a bunch of windows, including the source code of your main.c, the current contents of the processor registers, a disassembly of the instructions, and some memory and data viewing windows (see below). In the debugger, press the green arrow ( , start/continue) to run the program using the debugger. After a few seconds, press the red ( , stop) button. Observe the updated views in each window. Now go to the Source window in the debugger and scroll until you can see the val=10; line. Set a breakpoint on this line by pointing with the mouse, doing a rightclick to bring up the context menu, and selecting "Set Breakpoint". A red arrow should appear on that line in the Source window. EE475 Lab #2 4 Select Restart in the Run menu, and observe that the simulator restarts the code and stops at the breakpoint line. Now use the Single Step button to go through the program one line at a time. Things to keep in mind: 1. Each line of the C program usually executes several assembly language instructions. Observe the assembly instructions in the Assembly window. Note that you can use the Assembly Step button to execute the machine instructions one by one. 2. The variables are updated in the Data window after each step. 3. The compiler generates special startup and initialization code that is executed before turning control over to your main() routine. To see this, select Reset from the ICD-12 menu, then start single stepping the program until you reach your main() routine. What is the startup and initialization code for? Running the software simulator In addition to the hardware debugging connection, the CodeWarrior debugger app can also perform a simulation of the chip (no hardware required). Setup the following: 1. Close the debug app (True-Time) and return to the CodeWarrior project. 2. In the drop-down box at the top of the project file pane, select Simulator instead P&E of ICD. 3. Recompile and link your program. 4. Now re-launch the debugger app (green bug arrow). Try running the code, setting breakpoints, etc., using the simulator. Problems to do in the lab: For the following lab problems you need to demonstrate a working program to get credit for it. Have the instructor initial the verification sheet for each working assignment that is completed. Problem #1: (BE SURE TO SWITCH BACK TO USING THE P&E ICD HARDWARE DEBUGGING) (a) Add sizeof() expressions to your main() program so that you can determine the byte sizes used for the types examined last week in Lab #1: EE475 Lab #2 5 char signed char short int long int double unsigned char short int float One way to do this is to assign the result to a variable, then single-step the program to see each result, e.g., val=sizeof(char); val=sizeof(unsigned char); val=sizeof(short); (b) Determine if the HC12 storage is little endian or big endian by saving an integer value in your program and then observing the storage using the Memory window. (c) Next, observe what happens if you remove or comment-out the endless loop at the end of your program ( for(;;); ). Do a single-step and see what the Assembly window shows. (d) Finally, observe what happens if you change the declaration volatile int val; to just int val; Recompile the program and single-step it through the code. What did the compiler do differently this time? Explain. Demonstrate your program and results for the instructor. Before moving on to Problem #2, keep a copy of the Problem #1 main.c file using the following procedure: First, re-edit the file so that it has the volatile int val declaration and the infinite loop at the end. In the CodeWarrior window, save the main.c file under the name (Save As) main1.c, then right-click on the file name in the project browser and remove it from the Sources folder. Don't be alarmed by the warning message: the file itself will not be deleted from the disk folder, only from the list of project files. Next, add the main.c file back into the Sources group, open it in the editor, and delete the statements within the main() routine. Re-save the main.c file, then go ahead with the next problem. EE475 Lab #2 6 Problem #2: Create a C program that blinks the two LEDs on the microcontroller board. Write the code as a continuous loopyou might want to include a delay (donothing software loop) to make each blink last longer. To implement this program you will need to realize that: (a) The mc9s12c32.h header file includes C definitions of the various processor I/O ports (PORTA, PORTP, etc.) and the individual register bits. (b) The bits in each register are numbered from zero (least significant bit) through seven (most significant bit). (c) The Bit 0 (zero) of Port A (PORTA, 0x0000) is connected to the cathode of LED1. Set the Port A data direction register (DDRA, 0x0002) so that bit 0 is an output. (d) The bit 4 of Port B (PORTB, 0x0001) is connected to the cathode of LED2. Set the Port B data direction register (DDRB, 0x0003) so that bit 4 is an output. (e) Locate the system copy of mc9s12c32.h in order to see all the defined values. The include files should be somewhere like: C:\Program Files\Metrowerks\CodeWarrior CW12_V3.1\lib\HC12c\include Put statements in the main() routine in order to implement the flashing LEDs. A partial skeleton is shown below: void main(void) { /* Set ...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #1Agenda1. 2. 3.Course Logistics Course Content Analog vs. DigitalAnnouncements1.WelcomeEE 261 Introduction to Logic CircuitsLecture #1 Page 1Course OverviewInstructor:Randy M. L
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #4 Agenda1. Base Conversions 2. Binary ArithmeticAnnouncements1. Read 2.4EE 261 Introduction to Logic Circuits Fall 2008Lecture #4 Page 1Base Conversions Base Conversion of &quot;Powers of 2&quot;-
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #5 Agenda1. Negative NumbersAnnouncements1. HW #2 Posted 2. Read 2.5EE 261 Introduction to Logic Circuits Fall 2008Lecture #5 Page 1Negative Numbers Negative Numbers- So far, we've dealt
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #6 Agenda1. 1's Complement 2. 2's ComplementAnnouncements1. Read 2.6 - 2.9EE 261 Introduction to Logic Circuits Fall 2008Lecture #6 Page 11's Complement 1's Complement- In 2's complement,
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #8 Agenda1. Digital Signaling and GatesAnnouncements1. HW #3 posted due Monday 9/26/08 2. Read 3.1EE 261 Introduction to Logic Circuits Fall 2008Lecture #8 Page 1Digital Signaling Digital
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #9 Agenda1. Logic Gates 2. Simple CircuitsAnnouncements1. HW #3 due 9/26/08 2. Read 3.2EE 261 Introduction to Logic Circuits Fall 2008Lecture #9 Page 1Logic Circuits XOR Gate- Out = A B
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #13 Agenda1. CMOS Static Behavior (ESD, Latch up)Announcements1. Read 3.5EE 261 Introduction to Logic Circuits Fall 2008Lecture #13 Page 1CMOS Static Behavior CMOS Static Behavior- We've
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #13 Agenda1. CMOS Static Behavior (ESD, Latch up)Announcements1. Read 3.5EE 261 Introduction to Logic Circuits Fall 2008Lecture #13 Page 1CMOS Static Behavior CMOS Static Behavior- We've
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #14 Agenda1. CMOS Dynamic Behavior (Speed, Power)Announcements1. Read 3.7 - 3.10 2. Exam # 1,Wednesday, (10/8)EE 261 Introduction to Logic Circuits Fall 2008Lecture #14 Page 1CMOS Dynamic B
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #16 Agenda1. Boolean Algebra 2. Axioms 3. Single Variable TheoremsAnnouncements : Friday 10-101. HW #5 is due Friday, (10/17) 2. Read 4.1EE 261 Introduction to Logic Circuits Fall 2008Lecture
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #16 Agenda1. Boolean Algebra 2. Axioms 3. Single Variable TheoremsAnnouncements : Friday 10-101. HW #5 is due Friday, (10/17) 2. Read 4.1EE 261 Introduction to Logic Circuits Fall 2008Lecture
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #17 Agenda1. Multi-Variable TheoremsAnnouncements : Monday 10/13EE 261 Introduction to Logic Circuits Fall 2008Lecture #17 Page 1Multi-Variable Theorems Theorem #6 &quot;Commutative&quot;(T6) X+Y =
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #19 Agenda1. Minterms 2. Sum of ProductsAnnouncements :EE 261 Introduction to Logic Circuits Fall 2008Lecture #19 Page 1Minterm Minterm- a normal product term w/ n-literals - a Minterm is
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #20 Agenda1. Maxterms 2. Product of SumsAnnouncements :1. Read 4.2EE 261 Introduction to Logic Circuits Fall 2008Lecture #20 Page 1Maxterm Maxterm- a Normal Sum Term w/ n-literals - a Max
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #24 Agenda1. Minimization using Karnaugh MapsAnnouncements : Wednesday (10/29)1. HW #8, due (10/31) 2. Exam #2 Friday (11/07) 3. Read 4.4EE 261 Introduction to Logic Circuits Fall 2008Lecture
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #26 Agenda1. Combinational Logic Design Flow 2. Exam #2Announcements : Wednesday (11/5)1. Exam #2 Friday (11/7)EE 261 Introduction to Logic Circuits Fall 2008Lecture #26 Page 1Combinational
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #28 Agenda1. S'R' Latch 2. D LatchAnnouncements : Wednesday (11/12)1. Read 7.3 - 7.4EE 261 Introduction to Logic Circuits Fall 2008Lecture #28 Page 1SR Latch SR Latch- Remember the Truth
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #30 Agenda1. Mealy &amp; Moore Type Machines 2. State DiagramsAnnouncements :1. Continue Reading 7.3 7.4EE 261 Introduction to Logic Circuits Fall 2008Lecture #30 Page 1Mealy &amp; Moore Machines
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #31 Agenda1. State Machines using D-Flip-FlopsAnnouncements :1. Continue Reading 7.4EE 261 Introduction to Logic Circuits Fall 2008Lecture #31 Page 1State Machines State Machines- there i
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #32 Agenda1. State Machines using D-Flip-FlopsAnnouncements :EE 261 Introduction to Logic Circuits Fall 2008Lecture #32 Page 1State Machines State Machines- there is a basic structure for
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #33 Agenda1. State Variable Encoding 2. Other Flip-FlopsAnnouncements :1. Read 7.5 thru 7.8 2. Read 6.3EE 261 Introduction to Logic Circuits Fall 2008Lecture #33 Page 1State Variable Encodi
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #34 Agenda1. Programmable LogicAnnouncements :1. Read 6.4, 6.5 and 6.7EE 261 Introduction to Logic Circuits Fall 2008Lecture #34 Page 1Programmable Logic Programmable Logic Devices (PLD)-
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #35 Agenda1. MSI Decoders 2. MSI - EncodersAnnouncements :EE 261 Introduction to Logic Circuits Fall 2008Lecture #35 Page 1SSI vs. MSI MSI Combinational Logic- SSI - Small Scale Integrate
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #36 Agenda1. MSI Multiplexers 2. MSI - DemultiplexersAnnouncements :1. Final Exam Tuesday, 12/16, 8:00am 9:50am, Rob 101) 2. Read 6.10 and 9.1 thru 9.4EE 261 Introduction to Logic Circuits Fa
Montana - EE - 261
EE 261 Introduction to Logic Circuits Lecture #38 Agenda1. Review for Final ExamAnnouncements :1. Final Exam : Tuesday, December 16, 2008, 8 to 9:50 AM Roberts Hall 101EE 261 Introduction to Logic Circuits Fall 2008Lecture #38 Page 1Ex
Montana - EE - 262
Man who lives in glass house should change clothes in basement.EE 262 LAB 4 CountersNAME Section Time Demos _ Lab Station CheckLab Objectives: References: Pre-lab:Learn how counters work; understand how to eliminate switch bounceA digital l
Montana - EE - 465
Coding Standards for EE4651) Program Headers should follow the following format: ;* ;* Program Name: Lab# - Title of Lab ;* Author Names: Both your's and your partner's ;* Date: ;* Description: This should be a succinct and informative description ;
Montana - EE - 465
Spring 2009 Course Plan for EE 465, Real Time Microcontroller ApplicationsCourse Catalog Description for EE465: 4 cr. LEC 2 LAB 2, PREREQUISITE EE371 Lecture/laboratory exposure to microcontroller hardware and software applications, serial and paral
Montana - EE - 465
Course Number Course University Catalog DescriptionEE 465 Real Time Microcontroller Applications Semesters offered: S 2 credit lecture, 2 credit lab Lecture/Laboratory exposure to microcontroller hardware and software in real time applications; ser
Montana - EE - 465
Introduction to EE 465 Lab1) People can work alone or with a partner (partner encouraged, only groups of 2) 2) Completing the lab will give 15 points. In order to complete the lab you must: 1. Prelab- 5 points a. I will expect a flow chart and a par
Montana - EE - 465
54321Note: Can be implemented using pushbuttons on SLK VCC R5 4700k C1 RESET 1 2 0.1u U1 VCCDDU9APIN 4 ON J6 RESET PIN6 ON J6 BKGD +3.3V C2 10u GND .1u C3 1 2 3 4 D3 5 D2 6 D1 7 D0 8CLM191 2 VCC 16 U6 1 2 3 6 4 5 A B C G1 G2A G2B
Montana - EE - 465
LM19 2.4V, 10A, TO-92 Temperature SensorJanuary 2003LM19 2.4V, 10A, TO-92 Temperature SensorGeneral DescriptionThe LM19 is a precision analog output CMOS integratedcircuit temperature sensor that operates over a -55C to +130C temperature range.
Montana - EE - 465
Requirements Specification for EE465 Lab Project 3: Analog Temperature SensorLab project goal: Measure the analog voltage output from a temperature sensor and the temperature sensor on the HCS908QG8 and display the ambient air temperatures from both
Montana - EE - 465
Requirements Specification for EE465 Lab Project 3: Analog Temperature SensorLab project goal: Measure the analog voltage output from a temperature sensor and the temperature sensor on the HCS908QG8 and display the ambient air temperatures from both
Montana - EE - 465
Requirements Specification for EE465 Lab Project 7: Final Project Menu-Selected Control Functions for TE Cooler. Lab project goal: Add TE cooler control functions and real-time clock displays that can be selected from a set of menu options presented
Montana - EE - 475
/-/ Readme.txt/-This project stationery is designed to get you up and runningquickly with CodeWarrior for MC9S12C32.It is set up for the selected CPU and target connection,but can be easily modified.Sample code for the following language(s)
Montana - EE - 335
EE335-Transmission Lines 1 Lecture : pp. 44-51 2-1, 2-2When we first analyze circuits we start with DC circuits and try to find relationships for V and I, then we analyze AC circuits and the voltage and current become functions of time V(t) and I(t
Montana - EE - 335
EE335-Input Impedance 5 Lecture pp 61-66 2-6, 2-8Lossless line: = 0 = j~ V ( z ) = V0+ e - j z + V0- e + j z = V0+ e - j z + e + j z() )thenV+ V- V+ ~ I ( z ) = 0 e - j z - 0 e + j z = 0 e - j z - e + j z Z0 Z0 Z0(~ V ( z ) total v
Montana - EE - 335
EE335- Double Stub Matching This is not in the book but will be on the midterm. 11 Lecture A single stub must be repositioned to match for different loads. Sometimes this is inconvenient. The double stub method fixes the location of the stubs and var
Montana - EE - 335
EE335 Transmission Line Summary 15 Lecture Chapter 2 Review: 1 2 3Calculate Line parameters from geometry. (Table 2.1) Calculate Characteristic impedance, attenuation, and phase constants from line parameters. (Table 2.2) Calculate Reflection Coef
Montana - EE - 335
EE335 Snell's Law &amp; Optical Fibers18 Lecture pp 331-336 8-2, 8-3Light incident at an angle, 2 things happen 1. reflects, incident angle equals reflected angle 2. transmits, transmitted light is refracted (bent)kr r i ki kt tRegion 1: 1 1sin
Montana - EE - 335
EE335 Reflectivity and Transmissivity 20 Lecture pp 346-349 8-5Detectors dont look at E-field, they look at intensity (power)r E 0 Pr R = i = i P E 0 2 2= 2Reflectivity = Power Reflected/Power incidentR =2Transmissivity = Transmitted
Montana - EE - 335
EE335-Waveguides &amp; TM modes 21 Lecture pp 349-356 8-6, 8-7, 8-8At microwave frequencies (3-300 GHz) transmission lines become inefficient due to - skin effects - dielectric losses - reduced cross section reduces power handling capacity therefore us
Montana - EE - 335
EE335 Short Dipole 25 Lecture pp 373-379 9-1 Definition of Antenna: Transducer between transmission line and EM radiation in free space Transmission Antenna:examples: Radio station, TV station, Homing BeaconReception Antennaexamples: Car Radio
Montana - EE - 335
EE335 - Large Aperture Antennas 29 Lecture pp 397-403 9-7, 9-8 So far we have only talked about current source antennas, but also can radiate fields across an area to free space.Horn antennaParabolic antennaEach point in aperture radiates a lik
Montana - EE - 335
EE335 Antenna Arrays 30 Lecture pp 403-410 9-9 More than one antenna, why? Directivity Steering Most arrays use identical elements, but not required Most common are linear: 2-D lattice Pattern Multiplication: Resultant Pattern = (Un
CSU Fullerton - BTS - 730
2008BTS730 Yellow Team John Ford Peter Ljubanovic Davoud Salahi Rad Queen Victoria Solamillo[INTERIM REPORT]This document contains research of solutions for the college to secure the technological assets of the college.Table of Contents
CSU Fullerton - BTS - 730
Interim ReportSENECA COLLEGEInterim ReportBTS730 Assignment 2Red Team 10/31/2008Page | 1Interim ReportTable of ContentsPage | 3Interim ReportScope StatementProject Title: Northern Services College Access Security Management Project
CSU Fullerton - BTS - 730
BTS730Project Management An IntroductionIntro TEXT: Information Technology Project Management, (newest edition is 5th) By Kathy Schwalbe, Thomson Course TechnologyProjects A project Temporary Unique product, service, result Developed usin
CSU Fullerton - BTS - 730
BTS730 Project Assignment F20071In BTS730 you are required to complete a project as part of a team of three or four people. You are asked to work in a team other than your bts630 team. The goal is to have a different team experience than that in
CSU Fullerton - BTS - 730
Scope: The FinaleIT Project Management, Third EditionChapter 51Project Scope Management Processes Initiation: beginning a project or continuing to the next phase Scope planning: developing documents to provide the basis for future project d
CSU Fullerton - BTS - 730
Chapter 6: Project Time ManagementIT Project Management, Third EditionChapter 61Importance of Project Schedules Managers often cite delivering projects on time as one of their biggest challenges Average time overrun from 1995 CHAOS report w
CSU Fullerton - BTS - 730
BTS730 Project Deliverable 2 To be submitted hard copy, due date as per instructors web site. Note: this project is worth 10% of your final mark. Deliverablesall hardcopy: 1. Updated (with more detail, changes, corrections) Scope Statement. 2. Update
CSU Fullerton - BTS - 730
BTS730Cost ManagementCost Management Average cost overrun: 1995 CHAOS study: 189% of the original estimates 2001 study: 145%Cost Management Cost Management disasters (p265): IRS&gt; $50 billion cost to taxpayers UK National Health Service$26
CSU Fullerton - BTS - 730
BTS730 Cost Exercise1 Timeframe Planned Value (What the budget indicated would be spent) $20K $30K $30K Actual Cost (The actual $ spent) Rate of Performance (The percentage of planned work that was actually completed) 100% 50% 100%Month 1 Month 2 M
CSU Fullerton - BTS - 730
BTS730Quality ManagementQuality Management What is quality? It depends ability to satisfy stated or implied needs conformance to requirements organizational / cultural influences Cost of Quality Cost of Quality = cost of conformance + cos
CSU Fullerton - BTS - 730
BTS730 Communications Management11. What are 3 of the biggest communication challenges on an IT Project? Explain why each is a challenge. 2. Select 5 ways of communicating in an IT project. For each list advantages and disadvantages. 3. When cons
CSU Fullerton - BTS - 730
BTS730 Risk Exercise1Mary Gee's background is help desk management but her love of working with animals has enticed her into switching careers and she now wants to do something that will allow her to work with dogs in some capacity. She herself o
CSU Fullerton - BTS - 730
BTS730 Presentation and Final Project Delivery Specifications PRESENTATIONS on Friday December 7th: YOU MUST EMAIL YOUR PowerPoint Presentations to the professor before Midnight Thursday Dec 6th so that she can post them for easy access. FOR NON-GAME
CSU Fullerton - BTS - 730
BTS730 Topic Review: For BTS730 test: Here are some of the key things we covered: Scope Mgmt WBS Scope Control o How do you improve user/stakeholder input? o How do you reduce incomplete &amp; changing requirements Time Mgmt Activities, sequencing (de
CSU Fullerton - BTS - 730
Dilbert The Lighter Side of Project ManagementLeah Spontaneo Peter Smith Adam DelyeaProject Scope Research paper Examine how the Dilbert comics perceive PM vs. how PM is completed in a real business setting Delve into Dilberts history, the c