some fixes [multithreading,..]

needed interface changes [new options]
logger for android
wifi-ap-optimization
new test-cases
This commit is contained in:
2016-09-28 12:19:14 +02:00
parent 91e3367372
commit 4f511d907e
62 changed files with 1418 additions and 175 deletions

View File

@@ -2,6 +2,8 @@
#define ACCELEROMETERDATA_H
#include <cmath>
#include <sstream>
/** data received from an accelerometer sensor */
struct AccelerometerData {
@@ -40,6 +42,12 @@ struct AccelerometerData {
return AccelerometerData(x/val, y/val, z/val);
}
std::string asString() const {
std::stringstream ss;
ss << "(" << x << "," << y << "," << z << ")";
return ss.str();
}
};
#endif // ACCELEROMETERDATA_H