diff options
author | Paul Selkirk <paul@psgd.org> | 2018-08-27 17:23:23 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2018-08-27 17:23:23 -0400 |
commit | 322e272c90488adb65edc6b0bd1ebab442f435d5 (patch) | |
tree | c8adb0bb0673126343414f5ae291776fbf082d2a /projects | |
parent | f424af5cfc62bf4e0902831591a303b02e31a1ca (diff) |
Add startup delay to let fmc bus settle
Diffstat (limited to 'projects')
-rw-r--r-- | projects/libhal-test/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/libhal-test/main.c b/projects/libhal-test/main.c index fff8c38..c0d9330 100644 --- a/projects/libhal-test/main.c +++ b/projects/libhal-test/main.c @@ -43,6 +43,7 @@ extern void __main(void); int main(void) { stm_init(); + HAL_Delay(500); led_on(LED_GREEN); __main(); |