Using PWM in FreeRTOS
This application note explains how to use the STM32H7 PWM in the FreeRTOS demo application.
1. Understanding PWM Interfaces
1.1. FreeRTOS PWM Implementation
The FreeRTOS BSP make uses of the STM32CubeH7 software component to provide a device driver for the STM32H7 PWM. The driver is configured (enabled / disabled) at the BSP build time, using the HAL_TIM_MODULE_ENABLED
configuration option, defined in the stm32h7xx_hal_conf.h
file.
1.2. FreeRTOS PWM C-Binding API
The PWM driver implements the following C-binding API:
Function | Description | Comments |
| ||
| Initialize the TIM PWM mode according to the specified parameters by |
|
| ||
| De-initialize the TIM peripheral |
|
| ||
| Initialize the TIM PWM channel according to the specified parameters by |
|
| ||
| Starts the PWM signal generation |
|
| ||
| Stops the PWM signal generation |
|
The TIM_HandleTypeDef
data structure used in this API has the following definition:
typedef struct
{
TIM_TypeDef *Instance; /* Register base address */
TIM_Base_InitTypeDef Init; /* TIM Time Base required parameters */
HAL_TIM_ActiveChannel Channel; /* Active channel */
DMA_HandleTypeDef *hdma[7]; /* DMA Handlers array */
HAL_LockTypeDef Lock; /* Locking object */
__IO HAL_TIM_StateTypeDef State; /* TIM operation state */
} TIM_HandleTypeDef;
The TIM_OC_InitTypeDef
data structure used in HAL_TIM_PWM_ConfigChannel
interface has the following definition:
typedef struct
{
uint32_t OCMode; /* Specifies the TIM mode. */
uint32_t Pulse; /* Specifies the pulse value to be loaded into
the Capture Compare Register. */
uint32_t OCPolarity; /* Specifies the output polarity. */
uint32_t OCNPolarity; /* Specifies the complementary output polarity. */
uint32_t OCFastMode; /* Specifies the Fast mode state. */
uint32_t OCIdleState; /* Specifies the TIM Output Compare pin state
during Idle state. */
uint32_t OCNIdleState; /* Specifies the TIM Output Compare pin state
during Idle state. */
} TIM_OC_InitTypeDef;
2. PWM CLI Command
The FreeRTOS application implements the following PWM related CLI command:
Command | Description | Comments |
| Start a PWM output signal | M is the timer number, |
| Stop a PWM output |
|
3. Validating PWM Operation
Use the following step-wise procedure to validate the FreeRTOS PWM operation:
Connect an oscilloscope probe to the PWM pin on the carrier board:
On the STM32H7-BSB Rev 1A board: P7.4 (PB8).
On the STM32H7-BSB Rev 2A board: P7.5 (PB8).
From the FreeRTOS CLI, activate the 16 PWM output on the channel 1 to run at 1kHZ (value in nanoseconds), duty cycle 50%:
CLI> pwm_start 16 1 1000000 50
Validate that the PWM frequency and duty cycle match the parameters specified in the previous commands (1kHz and 50%).
Stop the 16 PWM on the channel 1:
Activate the 16 PWM output on the channel 1 to run at 5kHZ (value in nanoseconds), duty cycle 20%:
Validate that the PWM frequency and duty cycle match the parameters specified in the previous commands (5kHz and 20%).
Stop the 16 PWM on the channel 1: