diff --git a/os/hal/ports/NRF51/NRF51822/hal_lld.c b/os/hal/ports/NRF51/NRF51822/hal_lld.c index 57caf9e4..e1d2ed54 100644 --- a/os/hal/ports/NRF51/NRF51822/hal_lld.c +++ b/os/hal/ports/NRF51/NRF51822/hal_lld.c @@ -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); } /**