Added iGyroscope interface

Signed-off-by: Serban Waltter <serban.waltter@rinftech.com>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Serban Waltter
2018-10-02 14:06:17 +03:00
committed by Mihai Tudor Panu
parent 34bb12933d
commit aa966946d5
39 changed files with 222 additions and 47 deletions

View File

@@ -108,6 +108,7 @@ void BMG160::getGyroscope(float *x, float *y, float *z)
std::vector<float> BMG160::getGyroscope()
{
update();
float v[3];
getGyroscope(&v[0], &v[1], &v[2]);