Switch from GPLv2 to GPLv2+
[fw/altos] / src / product / ao_telepyro.c
index a2b8f83cad4a021a9264d61e654a14549c693797..5b8e38c2cde37249cac1b3b9193b70aba7e8e773 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
@@ -25,12 +26,17 @@ main(void)
        PORTE |= (1 << 6);
        DDRE |= (1 << 6);
 
+       ao_task_init();
+
        ao_avr_stdio_init();
        ao_timer_init();
        ao_cmd_init();
        ao_spi_slave_init();
        ao_usb_init();
        ao_adc_init();
+       ao_storage_init();
+       ao_config_init();
+       ao_pyro_init();
        ao_start_scheduler();
        return 0;
 }