[bsp] fix the return of the function(drv_pwm_control) in stm32 drv_pwm

This commit is contained in:
linshire 2022-10-30 14:14:05 +08:00 committed by Man, Jianting (Meco)
parent 14722a4853
commit 315c25883c
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ static rt_err_t drv_pwm_control(struct rt_device_pwm *device, int cmd, void *arg
case PWM_CMD_GET:
return drv_pwm_get(htim, configuration);
default:
return RT_EINVAL;
return -RT_EINVAL;
}
}