fixes to make the new sensor stuff work
diff --git a/aos/crio/controls/ControlsManager.cpp b/aos/crio/controls/ControlsManager.cpp
index 906394f..762e8b6 100644
--- a/aos/crio/controls/ControlsManager.cpp
+++ b/aos/crio/controls/ControlsManager.cpp
@@ -13,6 +13,10 @@
namespace aos {
namespace crio {
+ControlsManager::ControlsManager() {
+ printf("aos::ControlsManager constructor done\n");
+}
+
// Everything gets an explicit Start call here before calling all of the init
// functions because it means that all static variables will be initialized
// before anything actually starts running. It also means that everything will
@@ -35,6 +39,9 @@
aos_call_init_functions();
LOG(INFO, "initialized\n");
+ CreateObjects();
+ LOG(INFO, "created objects\n");
+
RegisterControlLoops();
LOG(INFO, "registered control loops\n");