Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes...

27
Instructor TA: Edgar Martinez Soberanes ([email protected]) 2017-02-9 Laboratory: Introduction to Mechatronics Lab 3. LED Control and Interruptions.

Transcript of Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes...

Page 1: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

Instructor TA: Edgar Martinez Soberanes([email protected])

2017-02-9

Laboratory: Introduction to Mechatronics

Lab 3. LED Control and Interruptions.

Page 2: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

Lab Sessions Lab 1. Introduction to the equipment and tools to be used in the lab, which

include the development board (PICDEM 2 Plus),the microcontroller (PIC 16F1937), and the USB Oscilloscope (Analog Discovery).

Lab 2. Experiment 2: Transistor Operation, Experiment 3: Passive filters, and an Op-Amp circuit experiment.

Lab 3. Experiment 7: LED Control and Interruptions.

Lab 4. Experiment 10: Stepper Motor Motion Control.

Lab 5. Experiment 11: DC Motor Speed Control Using PWM.

Lab 6. Experiment 12: Closed Loop DC Motor Position Control. 2

Page 3: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

Lab 1. Outline

Objective.

Lecture

o Introduction.

o Oscillator Module.

o Input/output Ports.

o Interrupts

o Programing on MPLAB X

Time for the experiments.

3

Page 4: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

Objective

Objectives

o Learn how to program the PIC 16F1937 using MPLAB X.

o Design a program to control 4 LEDs using the microcontroller (PIC) and implement it in the PICDEM 2 Plus board.

o Design a program with an Interrupt Service Routine and implemented in the PICDEM 2 Plus board.

4

Page 5: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

5

Microcomputer systems

Every computer, no matter how simple or complex, has at its heart two things: a CPU and some memory. Together, these two things are what make it possible for your computer to run programs.

Introduction

Page 6: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

6

A microcontroller is a simplified version of a similar architecture, placed on one chip.

Page 7: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

7

Block Diagram

Page 8: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

8

Data Memory (RAM)

o Memory: 512 𝑏𝑏𝑏𝑏𝑏𝑏𝑏𝑏𝑏𝑏

o Divided in 32 banks with 128 bytes in a bank.

• 12 core registers

• 20 Special Function Registers (SFR)

• Up to 80 bytes of General Purpose RAM (GPR)

• 16 bytes of common RAM

Page 9: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

Oscillator Module

9

Clock sources can be external or internal.

o External clock sources: Quartz crystal resonator,s ceramic resonators, and RC circuits.

o Internal clock sources: Two internal oscillators, with a choice of speeds selectable via software.

Page 10: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

10

Clock source modes are selected by the FOSC <2:0> bits in the configuration Word 1.

The FOSC bits determine the type of oscillator that will be used when the PIC is first powered.

The oscillator module can be configured as:

1. ECL – External Clock Low-Power mode (0 MHz to 0.5 MHz)

2. ECM – External Clock Medium-Power mode(0.5 MHz to 4 MHz)

3. ECH – External Clock High-Power mode(4 MHz to 32 MHz)

4. LP – 32 kHz Low-Power Crystal mode.

5. XT – Medium Gain Crystal or Ceramic ResonatorOscillator mode (up to 4 MHz)

6. HS – High Gain Crystal or Ceramic Resonatormode (4 MHz to 20 MHz)

7. RC – External Resistor-Capacitor (RC).

8. INTOSC – Internal oscillator (31 kHz to 32 MHz).

Page 11: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

11

Page 12: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

12

The system clock speed can be selected via software by setting up the bits IRCF<3:0> of the OSCCON register.

One of the following frequencies can be selected:

o 32 MHz (requires 4X PLL)

o 16 MHz

o 8 MHz

o 4 MHz

o 2 MHz

o 1 MHz

o 500 kHz (Default after Reset)

o 250 kHz

o 125 kHz

o 62.5 kHz

o 31.25 kHz

o 31 kHz (LFINTOSC)

Page 13: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

13

Page 14: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

Summary

14

To set up the clock of the PIC we need to set some bits of the CONFIG1 Register and the OSCCON Register.

1. CONFIG1: FOSC bits (Choose type of clock Internal/external)

2. OSCCON: IRFC bits (Choose oscillation frequency)

Page 15: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

Input/output Ports

5 ports (A,B,C,D, and E). Each port has different characteristics and number of pins.

Ports are bidirectional (Input/Output).

Multi-functional. Some pins are multiplexed with an alternate function. When a peripheral is enable, that pin may not work as a general input/output.

15

Page 16: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

16

Each port has three standard registers for its operation:

o TRISx registers (data direction)

o PORTx registers (reads the levels on the pins)

o LATx registers (output latch)

Some ports may also have one or more of the following registers:

o ANSELx (analog select)

o WPUx (weak pull-up)

o INLVLx (input level control)

Page 17: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

Example Port A

TRISA register (PORTA Data Direction Register):

o Bit = 1 (pin on port A = Input)

o Bit = 0 (pin on port A = Output)

17

PORTA reads the status of the pins.

o Example: x = PORTA

LATA puts the content of the output latch on the port A.

o Example: LATA = 0; Make all the pins of port A equal to 0 V.

Note: Writes to PORTA are actually written to corresponding LATA register. Reads from PORTA register is return of actual I/O pin values.

Page 18: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

18

Page 19: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

19

Interrupts The interrupt feature allows certain events to pre-empt normal program flow.

The following events happen when an interrupt event occurs while the GIE bit is set:

o Current prefetched instruction is flushed

o GIE bit is cleared

o Current Program Counter (PC) is pushed onto the stack

o Critical registers are automatically saved to the shadow registers

o PC is loaded with the interrupt vector 0004h

Page 20: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

20

Interrupts are disabled upon any device Reset. They are enabled by setting the following bits:

o GIE bit of the INTCON register

o Interrupt Enable bit(s) for the specific interrupt event(s)

o PEIE bit of the INTCON register (if the Interrupt Enable bit of the interrupt event is contained in the PIE1, PIE2 and PIE3 registers)

Page 21: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

21

Page 22: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

22

Interrupt-On-Change (IOC)

Port B pins can be operated as Interrupts-On-Change pins.

An interrupt can be generated by detecting a signal that has either a rising edge or falling edge.

To enable the IOC pins the IOCIE bit of the INTCON register must be set.

Page 23: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

23

Individual Configuration IOCBPx bit in the IOCBP register has to be set to detect a rising edge.

IOCBNx bit in the IOCBN register has to be set to detect a rising edge.

The IOCBFx bits located in the IOCBF register are status flags that correspond to the interrupt-on-change pins of port B.

Page 24: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

24

Programing on MPLAB X

MPLAB X Interface.

Programing on C language.

Compiler XC8

Programing the PIC via PicKit 3 Programer

Page 25: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

25

Assembly VS C Language

// Initializing Port A

TRISA = 0b00111000LATA = 0x00

Page 26: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

26

Programing the PIC

Page 27: Laboratory: Introduction to Mechatronics · Instructor TA: Edgar Martinez Soberanes (eem370@mail.usask.ca) 2017-02-9. Laboratory: Introduction to Mechatronics Lab 3. LED Control and

Thanks

27