Remove GPIO pin initialization

This commit is contained in:
Fabio Utzig 2015-05-15 20:44:37 -03:00
parent 4ac0b638b9
commit 621e7198d7
1 changed files with 0 additions and 5 deletions

View File

@ -55,11 +55,6 @@
*/
void hal_lld_init(void)
{
// XXX: LED at PIN0.20 was initialized at __early_init
NRF_GPIO->PIN_CNF[18] = 1;
NRF_GPIO->PIN_CNF[19] = 1;
NRF_GPIO->OUTSET = ((uint32_t) 1 << 18) | ((uint32_t) 1 << 19);
}
/**