Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clear the UULP NPSS GPIO to wakeup interrupt #16

Open
hyeonseok-han opened this issue May 13, 2024 · 1 comment
Open

clear the UULP NPSS GPIO to wakeup interrupt #16

hyeonseok-han opened this issue May 13, 2024 · 1 comment

Comments

@hyeonseok-han
Copy link

Hi, to clear the UULP NPSS GPIO to wakeup interrupt, i modified as below
from
void sl_si91x_gpio_clear_uulp_npss_wakeup_interrupt(uint8_t npssgpio_interrupt)
{
UULP_GPIO_FSM->GPIO_WAKEUP_REGISTER |= (BIT(npssgpio_interrupt));
}

to

void sl_si91x_gpio_clear_uulp_npss_wakeup_interrupt(uint8_t npssgpio_interrupt)
{
UULP_GPIO_FSM->GPIO_WAKEUP_REGISTER &= ~(BIT(npssgpio_interrupt));
}

@Silabs-Tarun
Copy link

this will be fixed in next release.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants