altos: Switch all main() to return 'int'
[fw/altos] / src / chaoskey-v1.0 / ao_chaoskey.c
index f887e601608ad0b2041fae98a6016681ac9b77b2..4488208d57e5f706192d20c1f89f36f282cb4491 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
 #include <ao_adc_fast.h>
 #include <ao_crc.h>
 #include <ao_trng_send.h>
+#include <ao_flash_readout.h>
 
-void main(void)
+int
+main(void)
 {
-       ao_led_init(LEDS_AVAILABLE);
+       ao_led_init();
        ao_clock_init();
        ao_task_init();
        ao_timer_init();
        ao_dma_init();
        ao_adc_init();
        ao_crc_init();
+       ao_flash_readout_init();
 
        ao_usb_init();