Handling of Wake up from Stop 3
interrupt
#11
Labels
enhancement
New feature or request
hal
HAL-LL driver-related issue or pull-request.
internal bug tracker
Issue confirmed and reported into a ticket in the internal bug tracking system.
pwr
PWR-related issue or pull-request.
In the
void HAL_PWREx_S3WU_IRQHandler(uint32_t WakeUpPin)
callback is called with theWakeUpPin
parameter, which does not indicate that specific interrupt occurred. Instead, it only forwards theWakeUpPin
variable which contains information about which pins should trigger the handler. Also since wake up flag is cleared in theHAL_PWREx_S3WU_IRQHandler
we can't check it later.Proposed Change
Invoke the callback with the pin that triggered the interrupt:
or call callback for all interrupts at once:
The text was updated successfully, but these errors were encountered: