Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ Section: libs
Architecture: any
Depends: ${misc:Depends},
${shlibs:Depends},
libsensorfw-qt5-plugins,
libsensorfw-qt5-plugins (>= 0.14.0),
Description: Provides android sensors HAL using libgbinder to waydroid
Using sensorfw dbus and socket.
8 changes: 4 additions & 4 deletions sensorfw-core/include/datatypes/genericdata.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ class TimedXyzData : public TimedData
* @param y Y coordinate.
* @param z Z coordinate.
*/
TimedXyzData(const uint64_t& timestamp, int x, int y, int z) : TimedData(timestamp), x_(x), y_(y), z_(z) {}
TimedXyzData(const uint64_t& timestamp, float x, float y, float z) : TimedData(timestamp), x_(x), y_(y), z_(z) {}

int x_; /**< X value */
int y_; /**< Y value */
int z_; /**< Z value */
float x_; /**< X value */
float y_; /**< Y value */
float z_; /**< Z value */
};

#endif // GENERICDATA_H
2 changes: 1 addition & 1 deletion sensorfw-core/include/datatypes/touchdata.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef TOUCHDATA_H
#define TOUCHDATA_H

#include <genericdata.h>
#include "genericdata.h"

/**
* @brief Datatype for device touchscreen events.
Expand Down