Merge branch 'master' into stm-flash
authorKeith Packard <keithp@keithp.com>
Mon, 22 Apr 2013 22:20:51 +0000 (17:20 -0500)
committerKeith Packard <keithp@keithp.com>
Mon, 22 Apr 2013 22:20:51 +0000 (17:20 -0500)
Conflicts:
ao-tools/ao-stmload/ao-stmload.c

1  2 
altoslib/Makefile.am
altosui/Makefile.am
ao-tools/lib/cc-usb.c
src/core/ao.h
src/stm/Makefile.defs
src/telebt-v1.0/ao_telebt.c

Simple merge
Simple merge
Simple merge
diff --cc src/core/ao.h
Simple merge
index 3ce6eead168b4ff0b2a18669fa5a0e60d08368a2,1480f0b34f9b395b78b68a8cde338cf2bd60e3d5..c8bb7d704b4573b0c306e6e03d8aaa2f8bc858b6
@@@ -7,14 -7,9 +7,14 @@@ vpath load_csv.5c ../kalma
  vpath matrix.5c ../kalman
  vpath ao-make-product.5c ../util
  
 +.SUFFIXES: .elf .ihx
 +
 +.elf.ihx:
 +      objcopy -O ihex $*.elf $@
 +
  CC=arm-none-eabi-gcc
- SAT=/home/keithp/sat
- SAT_CLIB=$(SAT)/lib/pdclib.a
+ SAT=/opt/cortex
+ SAT_CLIB=$(SAT)/lib/pdclib-cortex-m3.a
  SAT_CFLAGS=-I$(SAT)/include
  
  ifndef VERSION
index 0000000000000000000000000000000000000000,4a50a9d43b750deb6c4805c8930ea56131382f21..935cde7d173b19f12b27095ff419802726939d04
mode 000000,100644..100644
--- /dev/null
@@@ -1,0 -1,41 +1,44 @@@
+ /*
+  * Copyright © 2011 Keith Packard <keithp@keithp.com>
+  *
+  * 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.
+  *
+  * This program is distributed in the hope that it will be useful, but
+  * WITHOUT ANY WARRANTY; without even the implied warranty of
+  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+  * General Public License for more details.
+  *
+  * You should have received a copy of the GNU General Public License along
+  * with this program; if not, write to the Free Software Foundation, Inc.,
+  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+  */
+ #include "ao.h"
+ void
+ main(void)
+ {
+       ao_clock_init();
+       /* Turn on the LED until the system is stable */
+       ao_led_init(LEDS_AVAILABLE);
+       ao_led_on(AO_LED_RED);
++
++      ao_task_init();
++
+       ao_timer_init();
+       ao_cmd_init();
+       ao_usb_init();
+       ao_monitor_init();
+       ao_radio_init();
+       ao_packet_master_init();
+       ao_adc_init();
+       ao_btm_init();
+ #if HAS_DBG
+       ao_dbg_init();
+ #endif
+       ao_config_init();
+       ao_start_scheduler();
+ }