Giter VIP home page Giter VIP logo

pic16f18076-calculating-pulse-and-duty-cycle-mplab-melody's Introduction

MCHP

Various Solutions for Calculating a Pulse and Duty Cycle

Introduction

It is often desirable to quantify the pulse width of a periodic signal, such as a servo motor, or duty cycle of a pulse-width modulated signal. This code example demonstrates six different methods to measure a pulse and a period, and based on those to calculate the duty cycle, all while using the PIC16F18076.

Related Documentation

Software Used

Hardware Used

Setup

Hardware Connections

Connect two PIC16F18076 Curiousity Nano boards together following the diagram in Figure 1.

Figure 1 - Building the Circuit

Building the Circuit

Make sure to connect the Universal Asynchronous Receiver Transmitter (UART) pin to a logic analyzer so that the results can be viewed.

Programming

  • Download, install and open MPLAB X IDE version 6.0.0 (or newer)

  • Download and install the XC8 C-Compiler version 2.36 (or newer)

  • Download and open the pic16f18076-calculating-pulse-and-duty-cycle-mplab-melody.X project, as shown in Figure 2

Figure 2 - Open Project Menu in MPLAB X IDE

Open Project Menu in MPLABX

Once the project is opened, select either the 'free' or 'pro' configuration as shown in Figure 3.

Figure 3 - Select Project Configuration

Select Project Configuration

Program the device by clicking Make and Program Device Main Project from the taskbar at the top (Figure 4).

Figure 4 - Make and Program Device Main Project Button

Make and Program Device Main Project Button

Wait for the Output tab to show 'Programming complete' (Figure 5), then proceed to the Operation section below.

Figure 5 - Programming Complete

Programming Complete

Operation

This example uses a button (SW0) to toggle between various methods of measuring the pulse width and duty cycle (Figure 6).

Figure 6 - PIC16F18076 Curiousity Nano Board SW0 Button

PIC16F18076 Curiousity Nano Board SW0 Button

Pressing the button changes the method of measurement following the order in the list below (after #9 is starts over at #1):

  1. Pulse Generator
  2. Timer1 Gate
  3. Configurable Logic Cell (CLC) Numerically Controlled Oscillator (NCO) 1
  4. CLC NCO 2
  5. CLC NCO 3
  6. Capture/Compare/PWM (CCP)
  7. Interrupt-On-Change (IOC) with Timer
  8. IOC without Timer
  9. Polled Input

Pulse Generator

The Pulse Generator mode is the default mode for this example. It generates a 1 MHz signal to the RA3 pin with varying duty cycles, ranging from 10% to 90% at 10% intervals on a constant loop. This signal will output the pulse to pin RA3. A waveform example for the pulse generator can be seen in Figure 7.

Figure 7 - Pulse Generator Waveform Example

Pulse Generator Waveform Example

Timer1 Gate

The Timer1 (TMR1) Gate is the first measuring method, using the Timer1 module to measure the pulse width and duty cycle. The pulse (RB5 pin) is measured by having the Timer1 Gate close, thus connecting the Timer1 clock source to the Timer1 counter when the pulse it high. The period is measured similarly, with different interrupt flags. The duty cycle is then calculated by taking the pulse and dividing it by the period. The code outputs an 8-bit value (0-255) which correlates to 0%-100% (i.e., 0x80 or 127 equals 50%). Refer to the Timer1_Gate.c file for more details. A waveform example for the Timer1 Gate can be seen in Figure 8.

Figure 8 - Timer1 Gate Waveform Example

Timer1 Gate Waveform Example

CLC NCO

The CLC NCO modules are used in the second, third, and fourth measuring methods for this example. Each of these methods use either two or three CLC modules, the NCO module and either the Timer1 module and/or the Timer0 (TMR0) module.

CLC NCO 1

The CLC NCO method uses the CLC1, CLC2, NCO1 and Timer1 modules. The pulse (RB5 pin) is measured by the NCO1 module which is clocked by a 4-input AND gate that is configured to CLC1. The period is measured by starting and stopping Timer1 based on various interrupt flags. The duty cycle is then calculated by taking the pulse and dividing it by the period. The code outputs an 8-bit value (0-255) which correlates to 0%-100% (i.e., 0x80 or 127 equals 50%). Refer to the CLC_NCO.c file for more details. A waveform example for the CLC NCO 1 can be seen in Figure 9.

Figure 9 - CLC NCO 1 Waveform Example

CLC NCO 1 Waveform Example

This method has an additional output pin (other than UART) that provides information on the CLC1OUT status. This signal can be monitored, in addition to the other signals, by the logic analyzer.

CLC NCO 2

The CLC NCO method uses the CLC1, CLC2, CLC3, NCO1 and Timer1 modules. The pulse (RB5 pin) is measured by the NCO1 module which is clocked by a 4-input AND gate that is configured to CLC1. The period is measured by starting and stopping Timer1 based on various interrupt flags. The duty cycle is then calculated by taking the pulse and dividing it by the period. The code outputs an 8-bit value (0-255) which correlates to 0%-100% (i.e., 0x80 or 127 equals 50%). Refer to the CLC_NCO.c file for more details. A waveform example for the CLC NCO 2 can be seen in Figure 10.

Figure 10 - CLC NCO 2 Waveform Example

CLC NCO 2 Waveform Example

This method has additional output pins (other than UART) that provide information on the CLC1OUT status and the CLC2OUT status. These signals can be monitored, in addition to the other signals, by the logic analyzer.

CLC NCO 3

The CLC NCO method uses the CLC1, CLC2, CLC3, NCO1, Timer0 and Timer1 modules. The pulse (RB5 pin) is measured by the Timer0 module which is clocked by a 4-input AND date that is configured to CLC1. The period is measured by starting and stopping Timer1 based on various interrupt flags. The duty cycle is then calculated by taking the pulse and dividing it by the period. The code outputs an 8-bit value (0-255) which correlates to 0%-100% (i.e., 0x80 or 127 equals 50%). Refer to the CLC_NCO.c file for more details. A waveform example for the CLC NCO 3 can be seen in Figure 11.

Figure 11 - CLC NCO 3 Waveform Example

CLC NCO 3 Waveform Example

This method has additional output pins (other than UART) that provide information on the status of CLC1OUT, CLC2OUT and CLC3OUT. These signals can be monitored, in addition to the other signals, by the logic analyzer.

CCP

The CCP is the fifth measuring method, using the CCP1, CCP2 and Timer1 modules to measure the pulse width and duty cycle. The pulse (RB5 pin) is measured by using the CCP2 interrupt flag to save two different values (derived from the Timer1 module) and then to take the difference between them. The period is measured in the same way, using the CCP1 interrupt flag. The duty cycle is then calculated by taking the pulse and dividing it by the period. The code outputs an 8-bit value (0-255) which correlates to 0%-100% (i.e., 0x80 or 127 equals 50%). Refer to the CCP.c file for more details. A waveform example for the CCP method can be seen in Figure 12.

Figure 12 - CCP Waveform Example

CCP Waveform Example

IOC with Timer

The IOC with Timer is the sixth measuring method using the IOC and Timer1 modules to measure the pulse width and duty cycle. The pulse and period (RB5 pin) are measured by reading the Timer1 value at various times that are determined by the IOC bit values. The duty cycle is then calculated by taking the pulse and dividing it by the period. The code outputs an 8-bit value (0-255) which correlates to 0%-100% (i.e., 0x80 or 127 equals 50%). Refer to the IOC_w_Timer.c file for more details. A waveform example for the IOC with Timer can be seen in Figure 13.

Figure 13 - IOC with Timer Waveform Example

IOC with Timer Waveform Example

IOC without Timer

The IOC without Timer is the seventh measuring method using the IOC module to measure the pulse width and duty cycle. The pulse and period (RB5 pin) are measured by incrementing the pulse or period value depending on the state of the IOC bit values. The duty cycle is then calculated by taking the pulse and dividing it by the period. The code outputs an 8-bit value (0-255) which correlates to 0%-100% (i.e., 0x80 or 127 equals 50%). Refer to the IOC_wo_Timer.c file for more details. A waveform example for the IOC without Timer can be seen in Figure 14.

Figure 14 - IOC without Timer Waveform Example

IOC without Timer Waveform Example

Polled Input

The Polled Input is the eighth and final measuring method, using only pin settings instead of modules to measure the pulse width and duty cycle. The pulse and period (RB5 pin) are measured by incrementing the pulse or period value depending on the state of the input signal pin. The duty cycle is then calculated by taking the pulse and dividing it by the period. The code outputs an 8-bit value (0-255) which correlates to 0%-100% (i.e., 0x80 or 127 equals 50%). Refer to the Polled_Input.c file for more details. A waveform example for the Polled Input can be seen in Figure 15.

Figure 15 - Polled Input Waveform Example

Polled Input Waveform Example

The image below shows what can be seen on a logic analyzer when all modes are cycled through once.

Figure 16 - All Button Modes

All Button Modes

Refer to AN3324 - Various Solutions for Calculating a Pulse and Duty Cycle for more in-depth information on each measurement method.

Summary

This example demonstrated several methods of how to measure the pulse width and duty cycle of a pulse on the PIC16F18076 Curiosity Nano board.

pic16f18076-calculating-pulse-and-duty-cycle-mplab-melody's People

Contributors

aku-work avatar jlerner21 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.