diff options
author | Fabio Utzig <utzig@utzig.org> | 2015-05-13 20:29:45 -0300 |
---|---|---|
committer | Fabio Utzig <utzig@utzig.org> | 2015-05-13 20:29:45 -0300 |
commit | f0bcca7b4670b2b8fa5f69009e68d2fefeac67e4 (patch) | |
tree | 1cb37fc166bac646d8bec920964d3537779b9985 /os | |
parent | d594ac327c8fe72c77de5b422dab12c078baead6 (diff) | |
download | ChibiOS-Contrib-f0bcca7b4670b2b8fa5f69009e68d2fefeac67e4.tar.gz ChibiOS-Contrib-f0bcca7b4670b2b8fa5f69009e68d2fefeac67e4.tar.bz2 ChibiOS-Contrib-f0bcca7b4670b2b8fa5f69009e68d2fefeac67e4.zip |
Don't hang boot
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/ports/NRF51/NRF51822/hal_lld.c | 3 |
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) {} } /** |