[Cryptech-Commits] [sw/stm32] 04/11: Remove the 6-second blue blink for alpha board.

git at cryptech.is git at cryptech.is
Mon Jun 6 18:32:23 UTC 2016


This is an automated email from the git hooks/post-receive script.

paul at psgd.org pushed a commit to branch master
in repository sw/stm32.

commit 1899e233a4e6aa75f93a42ee5c3249896be91485
Author: Paul Selkirk <paul at psgd.org>
AuthorDate: Mon Jun 6 11:49:26 2016 -0400

    Remove the 6-second blue blink for alpha board.
---
 projects/libhal-test/main.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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();
 



More information about the Commits mailing list