1 / 31

ME 4447/6405

ME 4447/6405. Microprocessor Control of Manufacturing Systems and Introduction to Mechatronics Instructor: Professor Charles Ume Lecture #7. Product Family and Designations. RAM – Random Access Memory “Volatile” – loses contents after power off ROM – Read Only Memory “non-Volatile”

glynnis
Download Presentation

ME 4447/6405

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ME 4447/6405 Microprocessor Control of Manufacturing Systems and Introduction to Mechatronics Instructor: Professor Charles Ume Lecture #7

  2. Product Family and Designations

  3. RAM – Random Access Memory • “Volatile” – loses contents after power off • ROM – Read Only Memory • “non-Volatile” • Contents must be programmed at the factory • EPROM – Electrically Programmable Read Only Memory • “non-Volatile” • Electrically programmable • May be erasable with ultraviolet light if manufacturer included window in chip package • Still considered Read Only Memory during normal program execution • EEPROM – Electrically Erasable Programmable Read Only Memory • “non-Volatile” • Electrically programmable and erasable (Note:Sometimes higher voltage than microcontroller voltage may be required) • Slower to write to than RAM so still considered Read Only Memory during normal program execution

  4. Product Designations found in literature is shown below:

  5. Product Family Members as of 3/2008

  6. MC9S12C package options and block diagram

  7. MC9S12C-Family package options: • 48-pin Low-profile Quad Flat Package (LQFP) • 52-pin Low-profile Quad Flat Package • 80-pin quad flat package (QFP) (Shown)

  8. MC9S12C-Family Block Diagram shows available subsystems Figure1-1. MC9S12C-Family Block Diagram

  9. . . . Figure 6. Register and Control Bit Assignments (Programming Reference) Excerpt of Detailed Register Map (Device User Guide)

  10. . . .

  11. Excerpt of Detailed Register Map (Device User Guide)

  12. MC9S12C-Family hardware mode selection, hardware mode connections, and hardware mode memory maps

  13. Hardware Mode Selection Summary (Reference Manual) MODA, MODB, & MODC may be writable in software after startup, see Reference

  14. Hardware Mode External Connections • In Single Chip mode, Ports A, B and E available as general purpose input/output pins • In Narrow Expanded Mode, Ports A and B form 16-bit Address and 8-bit Data bus, Port E provides control signals for external devices • In Wide Expanded mode, Ports A and B form 16-bit Address and 16-bit Data bus, Port E provides control signals for external devices

  15. Note: Map depends on state of ROMON and ROMHM bits

  16. Axiom CML-12C32 memory maps & interrupt vectors

  17. Axiom CML-12C32 Evaluation Board MC9S12C32 Solderless Breadboard Serial Port Oscillator Power Jack Address Demultiplexer Reset MCU Port External SRAM

  18. Default Configuration: • MODC = 1 • MODA = MODB = 0  Single Chip Mode • MODA and MODB may be changed in software to permit use of Expanded Wide mode once after each reset • Internal Flash Memory is available only if ROMON is enabled • At the rising edge of Reset, the state of pin PP[6]/KWP[6]/ROMCTL is latched to the ROMON bit. • ROMCTL = 1  ROMON Enabled, Flash memory available • ROMCTL = 0  ROMON Disable, Flash memory unavailable • For operation in this class, ROMON will be Enabled, so do not pull PP[6] low on Reset!

  19. Axiom CML-C32 • Single chip mode • ROMON Enabled • MON12 not in use • MODA = 0 • MODB = 0 • Internal User RAM available: • $0800-$0FFF • User can put a program in Internal Flash$8000-$FEFF • Ports A and B available for use

  20. Axiom CML-C32 • Single chip mode • ROMON Enabled • MON12 in use • MODA = 0 • MODB = 0 • Internal User RAM available: • $0800-$0DFF • User can put a program in Internal Flash $8000-$B7FF and Internal RAM • Ports A and B available for use MON12 is located here

  21. Axiom CML-C32 • Expanded Wide mode • ROMON Enabled • MON12 not in use(CodeWarrior) • MODA = 1 • MODB = 1 • Internal User RAM available: • $0800-$0FFF • External User RAM available: • $0400-$07FF • $1000-$7FFF • User can put a program in Internal Flash $8000-$FEFF • Ports A and B NOT available for use

  22. Axiom CML-C32 • Expanded Wide mode • ROMON Enabled • MON12 in use • MODA = 1 • MODB = 1 • Internal User RAM available: • $0800-$0DFF • Mon12 RAM Interrupt Vector: • $0F8A – 0FFF • Monitor Utility Jump Table: • $FF10-$FF67 • External User RAM available: • $0400-$07FF • $1000-$7FFF • User can put a program in Internal Flash $8000-$B7FF and RAM • Ports A and B NOT available for use MON12 is located here MON12 is located here

  23. Interrupt Vector Table • Mon12 NOT in use • Standard S12C32 Interrupt Jump Table • Each vector is 2 bytes. User stores address of interrupt service routine in appropriate vector • 0x is same as $: It is used when writing program in C

  24. Interrupt Vector Table • Mon12 NOT in use • Standard S12C32 Interrupt Jump Table • Each vector is 2 bytes. User stores address of interrupt service routine in appropriate vector

  25. Standard S12C32 Interrupt Jump Table (MON12 not in use) The user can put the starting address of his/her subroutine Directly in the vector field of the interrupt he/she wants to Use. Example: If the user wants to use the IRQ interrupt, he/she can put the starting address of his/her subroutine directly in vector fields $FFF2 and $FFF3

  26. Interrupt Vector Table • MON12 in use • Standard S12C32 Interrupt Vector Jump Table is not available with MON12 • MON12 supplies alternate Interrupt Jump Table • User’s interrupt service routine must be stored in $4000-$7FFF Monitor Interrupt Vector Table (CML-C32 User’s Guide)

  27. Interrupt Vector Table • MON12 in use • Standard S12C32 Interrupt Vector Jump Table is not available with MON12 • MON12 supplies alternate Interrupt Jump Table • User’s interrupt service routine must be stored in $4000-$7FFF if Autostart is to be used Monitor Interrupt Vector Table (CML-C32 User’s Guide) To use the vector table, the user again writes the address of the interrupt service routine to the location given in the table. For example, to use the IRQ interrupt to call an interrupt service routine located at address ISR_ADDR, the user writes the following code: MOVW #$0800, $0FF2 OR MOVW #ISR_ADDR,$0FF2 LDD #$0800 STD $0FF2 During initialization MON12 writes $0000 to all vectors in the Monitor Interrupt vector Table to cause any unscheduled interrupt to cause a trap. Any nonzero value will cause the S12C32 to jump to the interrupt service routine located at that value.

  28. Relationship Between Standard S12C32 Interrupt Vectors and MON12 Interrupt Table Vectors When MON12 is in use, it configures the standard interrupt vector table and the user may not override these values. MON12 allocates memory for the Monitor Interrupt Table, located from $0F8A - $0FFF. During initialization, MON12 clears the contents of the Monitor Interrupt Table. If an interrupt occurs and the corresponding vector contains $0000, MON12 perceives this as an error and restarts the monitor program, ending execution of user code. MON12 uses some interrupts to accomplish its tasks, hence uses those vector addresses. In addition, the standard interrupt table is located in Flash EEPROM and cannot be written to using MON12. When writing programs in C, a BDM cable is used to program the HCS12 and the standard interrupt table is used.

  29. Mon12 Commands

  30. Several subroutines from Mon12 exist that are available for performing I/O tasks. Utility subroutines available to the user are as follows:

More Related