SlideShare una empresa de Scribd logo
1 de 31
PDI Studio 5
Dayna Polstein
   Main purpose:
    ◦ To run programs on devises
   “Mini Computer” – Contains memory space
   Devise for embedded control
   Use a computer to program
   Can download programs from computer
   Can output information to computer
   Contains input/output ports
   Everywhere!
    ◦   Computers
    ◦   Remote controls
    ◦   Cell phones
    ◦   Cars (engine, antilock breaks, cruise control, etc.)
    ◦   Microwaves
    ◦   Dishwashers
    ◦   TVs
    ◦   DVD Players
    ◦   Almost every electronic with a user interface
   Basic computer skills
   C-programming
   Some basic circuitry
   Computer
   C8051 Board
   USB Debug Adapter
   Power Cord
   USB Cable



   SiLabs IDE
   SecureCRT
1.
2.        3.




     4.
   Used For
    ◦ Writing Programs
    ◦ Sending Programs to C8051
   Programmed in C



   Used For displaying text from:
    ◦ Main Program
    ◦ Input
   Be Careful with circuit
    ◦ Circuit boards are very delecate
   Only hold circuits by the edges
    ◦ Do not touch anything metal
   Before setting down:
    ◦ Make sure rubber feet are in tact
    ◦ Make sure area is clean and dust-free
   When storing:
    ◦ Use anti-static bag and cushioned packaging
    ◦ Store at room temperature
To USB
                      Debug
                      Adapter
                      To Power
                      Cord


LED should light up
when powered
USB to
                         Computer




To power
           LEDs should light
outlet
           up when in use
1.       Open SiLabs IDE
2.       Go to File  New File
3.       Type in C Program
         Copy Sample Program:
          #include <stdio.h>
          main ()
          {
          printf(“PDI Studio 5/n");
          }
4.   Compile program by pressing the
     Assemble/Compile button on the toolbar or
     press Project  Assemble/Compile File
5.   Build program by pressing the Build/Make
     button on the toolbar or press Project 
     Build/Make Project




                    Assemble/Compile Build/Make
                              Button Button
                  Note: If your program does not work, it will
                  notify you at steps 4 and 5 and you will have
                  to debug before attempting to connect
6.   Go to Options  Connection options and
     choose USB Debug Adapter and then OK
7.   Press the Connect button (or alt c)




                               Connect
                                Button


LEDs on the Debug Adapter should now be on
8.   Press the Download code button




                                Download
                                Code Button
   Go to Project  Target Build Configuration




   Enable automatic connect/download after
    build and then press build again
   Go to C:SiLabsMCUExamplesC8051F02x
   Click on the “Blinky” folder, and open the c
    file in IDE
   Press on the green “go” button
   The green led on the board should start
    blinking
   Press the red button for the program to stop
   Each program has a description of function
    and reason for different lines
   Use these programs as guilds for your
    programs
   8 ports, 0 through 7
   Each port is 1 byte (8 bits)
    wide
   You can address to entire
    bytes or individual bits
   Each port can be assigned as
    input or output
   C8051 will read the ports as
    ◦ 0 volts as false
    ◦ +3 volts as true
   Setting by bit (one of eight bits of the port)
    ◦ To assign b7 of port 0 :
      sbit bit7 = P0^7;
       bit7 = 1;
   Set as Input
    ◦ Port 3 pin 7
      P3MDout &= ~0x80;
       P3 | = 0x80; *****
   Set as Output
    ◦ Port 2 pin 2
      P2MOUT |= 0x04
   For individual bits, first read entire port, then
    use masking to determine value of bit
   Describe Masking Here
   Open Secure CRT
   Change settings and connect (try different
    com numbers) **
   Right click on Serial-COM3 and select
    “Session Options…”
   Click on emulation, change the scrollback
    buffer to 32000, and press ok.
   Make a new project and file in IDE (save as
    384test.c
   Copy this program:

     #include "c8051.h"

     int main()
     {
       Sys_Init();
       printf("nnntesting...n");
       printf("done for now...n");
       while(1);
     }
   Compile and build the code
   Connect and download code
   Start the code
   Text should display on Secure CRT window
    ***
   Embedded Control Course Materials
    http://litec.rpi.edu/course.php
   IDE Software:
    http://litec.rpi.edu/Postings/UsingSiLabsIDE.
    html
   C8051 User Guide
    http://litec.rpi.edu/Postings/C51_User_Guide
    .pdf
   C8051 Manual:
    http://litec.rpi.edu/Postings/C8051F02xRev1
    _4.pdf
   Timers
   A/D Converter
   C programming?

Más contenido relacionado

Similar a Pres

Pic programming gettingstarted
Pic programming gettingstartedPic programming gettingstarted
Pic programming gettingstarted
Ajit Padmarajan
 
Embedded L1_notes_unit2_architecture.pptx
Embedded L1_notes_unit2_architecture.pptxEmbedded L1_notes_unit2_architecture.pptx
Embedded L1_notes_unit2_architecture.pptx
aartis110
 
Chapter+1 +the+adventure+begins
Chapter+1 +the+adventure+beginsChapter+1 +the+adventure+begins
Chapter+1 +the+adventure+begins
noor020202
 
ABC Consolidated Financial InfoABC Companys current financial inf.docx
ABC Consolidated Financial InfoABC Companys current financial inf.docxABC Consolidated Financial InfoABC Companys current financial inf.docx
ABC Consolidated Financial InfoABC Companys current financial inf.docx
ransayo
 
The IoT Academy IoT training Arduino Part 2 Arduino IDE
The IoT Academy IoT training Arduino Part 2 Arduino IDEThe IoT Academy IoT training Arduino Part 2 Arduino IDE
The IoT Academy IoT training Arduino Part 2 Arduino IDE
The IOT Academy
 
Arduino Full Tutorial
Arduino Full TutorialArduino Full Tutorial
Arduino Full Tutorial
Akshay Sharma
 

Similar a Pres (20)

Unit III ARM Interface and ARM Programming
Unit III ARM Interface and ARM Programming Unit III ARM Interface and ARM Programming
Unit III ARM Interface and ARM Programming
 
Indroduction arduino
Indroduction arduinoIndroduction arduino
Indroduction arduino
 
Indroduction the arduino
Indroduction the arduinoIndroduction the arduino
Indroduction the arduino
 
Lecture 3 (tool stick platform) rv01
Lecture 3 (tool stick platform) rv01Lecture 3 (tool stick platform) rv01
Lecture 3 (tool stick platform) rv01
 
Pic programming gettingstarted
Pic programming gettingstartedPic programming gettingstarted
Pic programming gettingstarted
 
Embedded L1_notes_unit2_architecture.pptx
Embedded L1_notes_unit2_architecture.pptxEmbedded L1_notes_unit2_architecture.pptx
Embedded L1_notes_unit2_architecture.pptx
 
Setup and create android app using android studio in ubuntu 14.04
Setup and create android app using android studio in ubuntu 14.04Setup and create android app using android studio in ubuntu 14.04
Setup and create android app using android studio in ubuntu 14.04
 
STM -32
STM -32STM -32
STM -32
 
learning STM -32
learning STM -32 learning STM -32
learning STM -32
 
How to work with code blocks
How to work with code blocksHow to work with code blocks
How to work with code blocks
 
Chapter+1 +the+adventure+begins
Chapter+1 +the+adventure+beginsChapter+1 +the+adventure+begins
Chapter+1 +the+adventure+begins
 
ABC Consolidated Financial InfoABC Companys current financial inf.docx
ABC Consolidated Financial InfoABC Companys current financial inf.docxABC Consolidated Financial InfoABC Companys current financial inf.docx
ABC Consolidated Financial InfoABC Companys current financial inf.docx
 
The IoT Academy IoT training Arduino Part 2 Arduino IDE
The IoT Academy IoT training Arduino Part 2 Arduino IDEThe IoT Academy IoT training Arduino Part 2 Arduino IDE
The IoT Academy IoT training Arduino Part 2 Arduino IDE
 
Larson and toubro
Larson and toubroLarson and toubro
Larson and toubro
 
manual CT50
manual CT50manual CT50
manual CT50
 
Pt 51 ver-1.3_user_manual
Pt 51 ver-1.3_user_manualPt 51 ver-1.3_user_manual
Pt 51 ver-1.3_user_manual
 
Intel galileo
Intel galileoIntel galileo
Intel galileo
 
DeviceHub - First steps using Intel Edison
DeviceHub - First steps using Intel EdisonDeviceHub - First steps using Intel Edison
DeviceHub - First steps using Intel Edison
 
Cis 170 Extraordinary Success/newtonhelp.com
Cis 170 Extraordinary Success/newtonhelp.com  Cis 170 Extraordinary Success/newtonhelp.com
Cis 170 Extraordinary Success/newtonhelp.com
 
Arduino Full Tutorial
Arduino Full TutorialArduino Full Tutorial
Arduino Full Tutorial
 

Último

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 

Último (20)

Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 

Pres

  • 2. Main purpose: ◦ To run programs on devises  “Mini Computer” – Contains memory space  Devise for embedded control  Use a computer to program  Can download programs from computer  Can output information to computer  Contains input/output ports
  • 3. Everywhere! ◦ Computers ◦ Remote controls ◦ Cell phones ◦ Cars (engine, antilock breaks, cruise control, etc.) ◦ Microwaves ◦ Dishwashers ◦ TVs ◦ DVD Players ◦ Almost every electronic with a user interface
  • 4. Basic computer skills  C-programming  Some basic circuitry
  • 5. Computer  C8051 Board  USB Debug Adapter  Power Cord  USB Cable  SiLabs IDE  SecureCRT
  • 6. 1.
  • 7. 2. 3. 4.
  • 8. Used For ◦ Writing Programs ◦ Sending Programs to C8051  Programmed in C  Used For displaying text from: ◦ Main Program ◦ Input
  • 9. Be Careful with circuit ◦ Circuit boards are very delecate  Only hold circuits by the edges ◦ Do not touch anything metal  Before setting down: ◦ Make sure rubber feet are in tact ◦ Make sure area is clean and dust-free  When storing: ◦ Use anti-static bag and cushioned packaging ◦ Store at room temperature
  • 10. To USB Debug Adapter To Power Cord LED should light up when powered
  • 11. USB to Computer To power LEDs should light outlet up when in use
  • 12. 1. Open SiLabs IDE 2. Go to File  New File 3. Type in C Program  Copy Sample Program: #include <stdio.h> main () { printf(“PDI Studio 5/n"); }
  • 13. 4. Compile program by pressing the Assemble/Compile button on the toolbar or press Project  Assemble/Compile File 5. Build program by pressing the Build/Make button on the toolbar or press Project  Build/Make Project Assemble/Compile Build/Make Button Button Note: If your program does not work, it will notify you at steps 4 and 5 and you will have to debug before attempting to connect
  • 14. 6. Go to Options  Connection options and choose USB Debug Adapter and then OK
  • 15. 7. Press the Connect button (or alt c) Connect Button LEDs on the Debug Adapter should now be on
  • 16. 8. Press the Download code button Download Code Button
  • 17. Go to Project  Target Build Configuration  Enable automatic connect/download after build and then press build again
  • 18. Go to C:SiLabsMCUExamplesC8051F02x  Click on the “Blinky” folder, and open the c file in IDE  Press on the green “go” button  The green led on the board should start blinking  Press the red button for the program to stop  Each program has a description of function and reason for different lines  Use these programs as guilds for your programs
  • 19.
  • 20. 8 ports, 0 through 7  Each port is 1 byte (8 bits) wide  You can address to entire bytes or individual bits  Each port can be assigned as input or output  C8051 will read the ports as ◦ 0 volts as false ◦ +3 volts as true
  • 21. Setting by bit (one of eight bits of the port) ◦ To assign b7 of port 0 :  sbit bit7 = P0^7; bit7 = 1;
  • 22. Set as Input ◦ Port 3 pin 7  P3MDout &= ~0x80; P3 | = 0x80; *****  Set as Output ◦ Port 2 pin 2  P2MOUT |= 0x04
  • 23. For individual bits, first read entire port, then use masking to determine value of bit  Describe Masking Here
  • 24. Open Secure CRT
  • 25. Change settings and connect (try different com numbers) **
  • 26. Right click on Serial-COM3 and select “Session Options…”
  • 27. Click on emulation, change the scrollback buffer to 32000, and press ok.
  • 28. Make a new project and file in IDE (save as 384test.c  Copy this program: #include "c8051.h" int main() { Sys_Init(); printf("nnntesting...n"); printf("done for now...n"); while(1); }
  • 29. Compile and build the code  Connect and download code  Start the code  Text should display on Secure CRT window ***
  • 30. Embedded Control Course Materials http://litec.rpi.edu/course.php  IDE Software: http://litec.rpi.edu/Postings/UsingSiLabsIDE. html  C8051 User Guide http://litec.rpi.edu/Postings/C51_User_Guide .pdf  C8051 Manual: http://litec.rpi.edu/Postings/C8051F02xRev1 _4.pdf
  • 31. Timers  A/D Converter  C programming?

Notas del editor

  1. While computers can be used for many different functions with many different programs, microcontrollers generally are used for one purpose, storing only one main program in ROM memory. They are usually “embedded” inside another devise, hence the name embedded control.
  2. You need to be able to use the computer to send programs to the microcontroller. You also need to program the microcontroller using c-programming. Depending on what you are using the microcontroller for, you may need to know some circuitry.