LanQiao Baseboard development’s log 03

PWM Input Capture Mode for Frequency and Duty Calculation

What is PWM Input Capture Mode

PWM input capture mode, is a special mode of TIM, which is especially useful in frequency measure. But you can’t use it occasionally because it needs a PWM input. Its original theory is below.

Theory

How Can We Configure the Input Capture Mode

You should start the TIM input capture and rewrite the callback function. The original theory is when Timer detect the rising edge of PWM signal and then set the TIM counter to zero(Init). When the Timer check the falling edge, the TIM channel will store the counter values. So if Timer detect the second rising edge of PWM, you can read the value of channels which detect the rising edge and the falling edge.

As the counter values refer to the time between two rising edge, which means the time of a whole period, and the values between the first rising edge and falling edge is the time of high level. Based on the knowledge above, you can exactly understand how can we calculate the frequency and duty of PWM.

What’s more is that once you get the second rising edge values, you should set the counter of TIM to zeros and restart TIM input capture. And the configuration of TIM is as followed.

Configuration

First, you need to select the source clock and select two channel, one is direct mode and the other is indirect mode. The counter value should be as large as possible because if the signal frequency is low and the counter value between two rising edge is very large, the second rising edge counter value may be smaller than the first one as the counter reloaded.

Second, you need to configure the indirect mode channel to falling edge to calculate the duty of PWM.

How to Write the Code of PWM Input Capture

Simply, you need to enable the TIM Channel.

1
2
3
4
HAL_TIM_IC_Start_IT(&htim2, TIM_CHANNEL_1);
HAL_TIM_IC_Start_IT(&htim2, TIM_CHANNEL_2);
HAL_TIM_IC_Start_IT(&htim3, TIM_CHANNEL_1);
HAL_TIM_IC_Start_IT(&htim3, TIM_CHANNEL_2);

Then, you should rewrite the TIM IC CallBack function. You can define the read-counter values as followed.

1
2
3
4
5
6
7
8
9
10
bool Is_first_IC1 = 1;      // Whether is firstly capture
bool Is_first_IC2 = 1;

uint16_t fir_count1 = 0; // The first IC TIM
uint32_t down_count1 = 0;
uint32_t sec_count1 = 0;

uint16_t fir_count2 = 0; // The second IC TIM
uint32_t down_count2 = 0;
uint32_t sec_count2 = 0;

And then is the main function.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim)
{
if (htim->Instance == TIM2)
{
if (htim->Channel == HAL_TIM_ACTIVE_CHANNEL_1)
{
fir_count1 = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_1);
sec_count1 = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2);
__HAL_TIM_SetCounter(htim, 0);
HAL_TIM_IC_Start_IT(htim, TIM_CHANNEL_1);
HAL_TIM_IC_Start_IT(htim, TIM_CHANNEL_2);
}
}
if (htim->Instance == TIM3)
{
if (htim->Channel == HAL_TIM_ACTIVE_CHANNEL_1)
{
fir_count2 = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_1);
sec_count2 = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2); // store when captured at falling edge
__HAL_TIM_SetCounter(htim, 0);
HAL_TIM_IC_Start_IT(htim, TIM_CHANNEL_1);
HAL_TIM_IC_Start_IT(htim, TIM_CHANNEL_2);
}
}
}

As the theory mentioned above shows, if the callback is from Channel 1(rising edge), read the values and reset the counter values. But Attention! This code doesn’t care about the problem that if the frequency of signal is low and the counter value of the rising edge is smaller than the one of falling edge.

As for the duty, you can simply get it by dividing the rising edge value with the falling edge value.
$$ Freq = \frac{F_{TIM}}{Counter_{fir}}$$
$$ Duty = \frac{Counter_{sec}}{Counter_{fir}} $$

That is the whole content of PWM input capture. Thanks for watching!