aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2016-06-06 11:49:26 -0400
committerPaul Selkirk <paul@psgd.org>2016-06-06 11:49:26 -0400
commit1899e233a4e6aa75f93a42ee5c3249896be91485 (patch)
tree2671c17e8c61c9313d16a310df3336dcd21656ba
parentc4bf539bbc40dbf0d337001fbc8ba6cf621531f5 (diff)
Remove the 6-second blue blink for alpha board.
-rw-r--r--projects/libhal-test/main.c4
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();