STM32U575 change PWM output duty realtime
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-09-26 7:44 PM
I tried to change PWM output duty without stopping or suspending PWM output, but between two times of writing new value to CCR, there must be a delay time inserted in. Following is the example code:
/* if delay_ms(300), code can run correctly, if changing it to delay_ms(200), a hardfault would occur
- Labels:
-
STM32U5 series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-09-26 10:53 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-10-08 5:57 PM - edited ‎2023-10-08 5:59 PM
Hello,
Thanks for your reply!
I really want to know why this happens. Is there something wrong within my code or it a bug of the chip.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-10-08 6:35 PM - edited ‎2023-10-08 6:35 PM
How is delay_ms implemented? It is not a HAL function.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-10-09 1:15 AM - edited ‎2023-10-09 1:16 AM
__HAL_TIM_SetCompare() just writes a value to TIMx_CCRx, so there's something else which throws the fault, not this function.
Do you have some sort of interrupt bound to this timer channel? If yes, maybe start there.
And, debug as usually hardfaults are debugged, i.e. observe stacked values of registers, mainly PC, observe disasm few lines before the value of PC, etc.
JW
