Programmable Limits PWM

GreenPAK Blog
7 min readSep 16, 2022

--

Introduction

This application note describes three PWM design variants using GreenPAK IC: 1. “0–100% PWM” is PWM signal generator with the possibility to control the signal’s duty cycle from 0 to 100% full range, controlled by external or internal signal (for instance: signal from external pin, I2C signal, from a comparator, etc.). 2. “Programmable Limits PWM” is modification of “0–100% PWM” with settable maximum and minimum limits of the PWM’s duty cycle. The limits can be changed by I2C. 3. “Sawtooth modulated” is a PWM generator with settable maximum and minimum limits of PWM’s duty cycle and generates a sawtooth PWM modulation.

The complete design file is available here. It was programmed in the GreenPAK Designer software (a part of Go Configure™ Software Hub) which is a free-to-use GUI-based program aimed to create circuit designs.

How it works?

Let’s start from a simplified design. The following design is just a PWM generator that controls the PWM duty cycle with UP and DOWN buttons.

The PWM’s duty cycle is determined by the shift between CNT3 and CNT5 output pulses. CNT3 counter data should equal CNT5 counter data. DFF3 is set by the rising edge of CNT5 pulse and reset by the low pulse of CNT3. CNT3 output is inverted, so active signal is LOW (see Figure 2).

To change the value of the PWM duty cycle we need to add one clock to CNT5 (to increase PWM duty cycle) or to CNT3 (to decrease PWM duty cycle). It can be done by external buttons to change the delay between the CNT3, CNT5 outputs. One clock makes 1 step shift (where 1 step shift = (1/(CNT5(or CNT3) counter data + 1)) * 100%). DFF2 and DFF4 are used to avoid an additional clock which can appear when a button generates a logic LOW. Figure 3 shows the design where a PWM duty cycle changes linearly. Also, there is a possibility to control the rate of the duty cycle change and control the direction of this change.

Here, CNT1 generates a clock signal. When “UP/DOWN_CTRL” pin is HIGH, the signal goes to CNT5 CLK input through 3-bit LUT2 (duty cycle increase). When “UP/DOWN_CTRL” pin is LOW, the signal goes to CNT3 CLK input through 3-bit LUT4 (duty cycle decrease).

2-L3 is just a buffer. This one is used to guarantee 0% duty cycle. In some cases, the design will work with 0% duty cycle without the 2-L3 buffer. However, if the propagation time of CNT5 is less than CNT3, it causes short pulses to appear at the output. So 2-L3 ensures a clean output when the duty cycle should be 0%.

The rate of change of PWM’s duty cycle depends on the period of CNT1. PWM full ramp time from 0% to 100% duty cycle can be calculated using following formula:

T_PWM_RAMP = CNT5 Counter Data * CNT1 Period

“0–100% PWM”

A part of the “0–100% PWM” design has been described above. This is a linearly changeable PWM, where the duty cycle is changed from 0 to 100%, controlled by an external signal. The rate of duty cycle change can be changed via I2C.

The button “HOLD” is for holding the duty cycle constant. This button just resets CNT1. CNT1 is reset by a HIGH level signal and keeps the output HIGH.

The button “Reset to LOW” is used to reset duty cycle to 0%.

DFF4 and DFF6 provide the upper limit of duty cycle to avoid overflow. These two DFFs measure the shift between two signals, the outputs of CNT3 and CNT5. When the shift is equal to 1.5 clock period of OSC0, these DFFs detect it and reset CNT1. Thus, the duty cycle doesn’t change while UP/DOWN_CTRL signal stays HIGH. When CNT1 is reset, its output goes HIGH, generating one more clock signal and RC OSC signal isn’t inverted anymore by 3-bit LUT2. You can see it in Figure 7 and Figure 8. When the shift becomes 1.5 clock period, Maximum duty cycle at output of DFF3 is:

max. Duty cycle = CNT5 counter data/(CNT5 counter data+1).

In our case:

255/256 = 99.6%

Channel 1 (yellow/top line) — DFF3 OUT

D0 — CNT5 OUT

D1 — CNT3 OUT

D2 — CNT1 OUT

D3–3-bit LUT2 OUT

D4–3-bit LUT4 OUT

D5 — DFF4 OUT

D6 — DFF8 OUT

DFF8 and DFF10 provide the lower limit of duty cycle to avoid overflow. These two DFFs measure a shift between two signals, CNT3 and CNT5. When the shift is equal to a half clock period of OSC0 these DFFs detect it and reset CNT1. Thus, the duty cycle doesn’t change while UP/DOWN_CTRL signal stays LOW. When CNT1 is reset its output goes HIGH, generating one more clock signal and RC OSC signal isn’t inverted anymore by 3-bit LUT4. You can see it in Figure 9, Figure 10, Figure 11. Minimum duty cycle is:

min. Duty cycle = 0%.

Channel 1 (yellow/top line) — DFF3 OUT

D0 — CNT5 OUT

D1 — CNT3 OUT

D2 — CNT1 OUT

D3–3-bit LUT2 OUT

D4–3-bit LUT4 OUT

D5 — DFF4 OUT

D6 — DFF8 OUT

2-L1 and LATCH 2 are used to create a 100% duty cycle. When the signal is at maximum duty cycle the output of the DFF6 goes HIGH and the output of 2-L1 goes HIGH as well. So, the duty cycle of the design can change from 0% to 100% duty cycle.

“Programmable Limits PWM”

To control the maximum and minimum limits of PWM, DFF4 and DFF10 of the “0–100% PWM” design should be replaced with delay blocks (DLY4 and DLY6).

Figure 12 shows the design with the feature of programmable limits of PWM duty cycle. To change the limits of duty cycle you can change DLY4 counter data (for upper limit value of the duty cycle) and DLY6 counter data (for lower limit value of the duty cycle) via I2C. The upper and lower limits of duty cycle can be calculated using the following formulas:

Upper limit = (1-((DLY4 Counter Data +2)/(CNT5 Counter data+1))) * 100% Lower limit = ((DLY6 Counter Data +1)/(CNT5 Counter data+1)) * 100% The

“Programmable Limits PWM” design file PWM example is set to 20% to 50% duty cycle range. The minimum possible duty cycle of this design is 0.78% and the maximum possible duty cycle is 98.82%.

Channel 1 (yellow/top line) — PIN#17 (PWM_OUT)

Channel 2 (light blue/2nd line) — PIN#5 (Reset to LOW)

Channel 3 (magenta /3rd line) — PIN#3 (HOLD)

Channel 4 (blue/bottom line) — PIN#4 (UP/DOWN_CTRL)

Therefore, this design can be used as a PWM generator with the possibility to define limits of PWM duty cycle, rate of PWM duty cycle change, and its direction. It can all be done via I2C interface as well. Also, there is the possibility to change the PWM frequency in all designs presented in this application note.

“Triangle Modulation”

The “Triangle Modulation” is a design which generates PWM signal with duty cycle changed according to the triangle principle, and with configurable limits of duty cycle (for instance 23–87%, 75- 90%, in our case it is 30–70%). Also, the rate of the modulation can be controlled via I2C, same as in the previous designs.

DFF10 is used to change a direction of the duty cycle’s change. There is a possibility to get PWM signal with duty cycle changed according to the sawtooth principle. For this we should set the top limit value and the bottom limit value to be symmetrical to a 50% duty cycle (for example: 20–80%, 35–65%), thus we get a sawtooth PWM at the output of 2-L0 in the set range. Also, there is a possibility to add a “HOLD” button and “Reset” button to the design. All other functionality of the design is the same as in the previous design.

Conclusions

PWM is commonly used in many electronic devices. The main advantage of PWM is high efficiency, through very low power loss in switching devices. When a switch is off there is practically no current, and when it is on and power is being transferred to the load, there is little voltage drop across a properly selected switch. Power loss, being the product of voltage and current, is close to minimized in both cases. These designs can be used to control the power supply of electronic devices, especially for inertial loads such as motors, keeping constant rotation speed of brushed motors, solar buttery chargers, driving LEDs, and many other uses.

--

--