我想在我的 nuttx 板配置中添加 PWM 支持。我正在使用 STM32F765VGT6 MCU。
我开始像在 STM32F4Discovery 配置目录中那样实现它:
- 加入
stm32_pwm_setup()
_configs/<board_name>/src/<board_name>.h
- 添加
configs/<board_name>/src/stm32_pwm.c
:
#include <nuttx/config.h>
#include <errno.h>
#include <debug.h>
#include <nuttx/board.h>
#include <nuttx/drivers/pwm.h>
#include <arch/board/board.h>
#include "chip.h"
#include "up_arch.h"
#include "stm32_pwm.h"
#include "board_name.h"
#ifdef CONFIG_PWM
int stm32_pwm_setup(void) {
static bool initialized = false;
struct pwm_lowerhalf_s *pwm;
int ret;
/* Have we already initialized? */
if (!initialized) {
#if defined(CONFIG_STM32F7_TIM1_PWM)
#if defined(CONFIG_STM32F7_TIM1_CH1OUT)
pwm = stm32_pwminitialize(1);
if (!pwm) {
aerr("ERROR: Failed to get the STM32F7 PWM lower half\n");
return -ENODEV;
}
ret = pwm_register(DEV_PWM3, pwm);
if (ret < 0) {
aerr("ERROR: pwm_register failed: %d\n", ret);
return ret;
}
#endif
/* ... */
/* other timers and channels */
/* ... */
initialized = true;
}
return OK;
}
#endif /* CONFIG_PWM */
- 附加
stm32_pwm.c
在 Makefile (configs/<board_name>/src/Makefile
)
但是,我总是收到找不到“stm32_pwm.h”的编译错误。另外,我无法调用stm32_pwm_initialize()
我的configs/<board_name>/src/stm32_boot.c
.
是否有人已经在 STM32F7 上实现了 NuttX PWM 支持,或者可以提示我为什么会失败?