diff options
author | Paul Selkirk <paul@psgd.org> | 2016-06-06 11:49:26 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2016-06-06 11:49:26 -0400 |
commit | 1899e233a4e6aa75f93a42ee5c3249896be91485 (patch) | |
tree | 2671c17e8c61c9313d16a310df3336dcd21656ba /projects/libhal-test/main.c | |
parent | c4bf539bbc40dbf0d337001fbc8ba6cf621531f5 (diff) |
Remove the 6-second blue blink for alpha board.
Diffstat (limited to 'projects/libhal-test/main.c')
-rw-r--r-- | projects/libhal-test/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/projects/libhal-test/main.c b/projects/libhal-test/main.c index 2776750..a40871b 100644 --- a/projects/libhal-test/main.c +++ b/projects/libhal-test/main.c @@ -44,15 +44,17 @@ int main(void) { stm_init(); +#ifdef TARGET_CRYPTECH_DEV_BRIDGE // Blink blue LED for six seconds to not upset the Novena at boot. led_on(LED_BLUE); for (int i = 0; i < 12; i++) { HAL_Delay(500); led_toggle(LED_BLUE); } - fmc_init(); led_off(LED_BLUE); +#endif led_on(LED_GREEN); + fmc_init(); __main(); |