Make sure all pins are in reset state on teardown

This commit is contained in:
Michal Moskal 2020-03-09 20:37:44 -07:00
parent e2e220a505
commit 7d59a758da
1 changed files with 7 additions and 0 deletions

View File

@ -115,6 +115,13 @@ void board_teardown(void)
// Stop LF clock
NRF_CLOCK->TASKS_LFCLKSTOP = 1UL;
// make sure all pins are back in reset state
for (int i = 0; i < 32; ++i)
{
NRF_P0->PIN_CNF[i] = 2;
NRF_P1->PIN_CNF[i] = 2;
}
}
static uint32_t _systick_count = 0;