From 8cffaf7cc01060c097f7ef0f535aa11747b5bdf1 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Thu, 20 Jun 2013 16:09:24 -0700 Subject: [PATCH] Fixed includes. --- interface/src/SerialInterface.cpp | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/interface/src/SerialInterface.cpp b/interface/src/SerialInterface.cpp index 4647028730..19d88fbbf6 100644 --- a/interface/src/SerialInterface.cpp +++ b/interface/src/SerialInterface.cpp @@ -5,18 +5,23 @@ // Read interface data from the gyros/accelerometer Invensense board using the SerialUSB // -#include "SerialInterface.h" -#include "SharedUtil.h" -#include "Util.h" -#include -#include - #ifdef __APPLE__ #include #include #include #endif +#include + +#include + +#include + +#include "Application.h" +#include "SerialInterface.h" +#include "Util.h" +#include "Webcam.h" + const short NO_READ_MAXIMUM_MSECS = 3000; const int GRAVITY_SAMPLES = 60; // Use the first few samples to baseline values const int SENSOR_FUSION_SAMPLES = 20;