summaryrefslogtreecommitdiff
path: root/src/product
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-07-20 23:46:04 -0700
committerKeith Packard <keithp@keithp.com>2011-08-27 12:33:46 -0700
commit776df9ce2e7b4fa5cedda326988e66c614299af4 (patch)
treebf516c8f3eca55a8d4387c8cfd5fb3468d336c7b /src/product
parentbd0bf00081bb24af5cd67a9351b0b0c1a041d0d3 (diff)
altos: Get AES CBC-MAC packet transfers running
This just has simple command-line based packet transfers for testing. This also adds special ao_telelaunch bits where the launch control code will live. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/product')
-rw-r--r--src/product/ao_telebt.c4
-rw-r--r--src/product/ao_teledongle.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/product/ao_telebt.c b/src/product/ao_telebt.c
index 85565172..5bbbf71b 100644
--- a/src/product/ao_telebt.c
+++ b/src/product/ao_telebt.c
@@ -45,6 +45,10 @@ main(void)
#if HAS_DBG
ao_dbg_init();
#endif
+#if HAS_AES
+ ao_aes_init();
+ ao_radio_cmac_init();
+#endif
ao_config_init();
ao_start_scheduler();
}
diff --git a/src/product/ao_teledongle.c b/src/product/ao_teledongle.c
index 008b200a..b8be9f45 100644
--- a/src/product/ao_teledongle.c
+++ b/src/product/ao_teledongle.c
@@ -35,6 +35,8 @@ main(void)
#if HAS_DBG
ao_dbg_init();
#endif
+ ao_aes_init();
+ ao_radio_cmac_init();
ao_config_init();
ao_start_scheduler();
}