summaryrefslogtreecommitdiff
path: root/src/ao_teledongle.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2010-02-20 20:22:16 -0800
committerKeith Packard <keithp@keithp.com>2010-02-20 20:30:27 -0800
commit84c93bb2fc4558a5e4654794ba90e730a84eaf67 (patch)
tree4d279672734ec5c3e50976917ccbf33a306a740d /src/ao_teledongle.c
parentfd0a42e0e96dcb8ecc9e999f70bcf70692692af9 (diff)
Change altos build process to support per-product compile-time changes
This creates per-product subdirectories and recompiles everything for each product, allowing per-product compile-time changes for things like peripheral pin assignments and attached serial devices. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao_teledongle.c')
-rw-r--r--src/ao_teledongle.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ao_teledongle.c b/src/ao_teledongle.c
index e4828d80..b07b1746 100644
--- a/src/ao_teledongle.c
+++ b/src/ao_teledongle.c
@@ -15,8 +15,6 @@
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
-#define AO_NO_SERIAL_ISR 1
-#define AO_NO_ADC_ISR 1
#include "ao.h"
void
@@ -35,6 +33,9 @@ main(void)
ao_radio_init();
ao_packet_slave_init();
ao_packet_master_init();
+#if HAS_DBG
+ ao_dbg_init();
+#endif
ao_config_init();
ao_start_scheduler();
}