aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports
diff options
context:
space:
mode:
authorFabio Utzig <utzig@utzig.org>2015-05-13 20:29:45 -0300
committerFabio Utzig <utzig@utzig.org>2015-05-13 20:29:45 -0300
commitf0bcca7b4670b2b8fa5f69009e68d2fefeac67e4 (patch)
tree1cb37fc166bac646d8bec920964d3537779b9985 /os/hal/ports
parentd594ac327c8fe72c77de5b422dab12c078baead6 (diff)
downloadChibiOS-Contrib-f0bcca7b4670b2b8fa5f69009e68d2fefeac67e4.tar.gz
ChibiOS-Contrib-f0bcca7b4670b2b8fa5f69009e68d2fefeac67e4.tar.bz2
ChibiOS-Contrib-f0bcca7b4670b2b8fa5f69009e68d2fefeac67e4.zip
Don't hang boot
Diffstat (limited to 'os/hal/ports')
-rw-r--r--os/hal/ports/NRF51/NRF51822/hal_lld.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/os/hal/ports/NRF51/NRF51822/hal_lld.c b/os/hal/ports/NRF51/NRF51822/hal_lld.c
index b1a0d34..57caf9e 100644
--- a/os/hal/ports/NRF51/NRF51822/hal_lld.c
+++ b/os/hal/ports/NRF51/NRF51822/hal_lld.c
@@ -60,9 +60,6 @@ void hal_lld_init(void)
NRF_GPIO->PIN_CNF[18] = 1;
NRF_GPIO->PIN_CNF[19] = 1;
NRF_GPIO->OUTSET = ((uint32_t) 1 << 18) | ((uint32_t) 1 << 19);
-
- //FIXME!
- while (1) {}
}
/**