mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 10:45:22 +00:00
Changed motion_sense task to assume sensors are unpowered in G3 and re-initialize sensors every time coming out of G3. Added EC command line test utils as well. Fixed some bug during unit tests. BUG=chrome-os-partner:27313,27320 BRANCH=ToT TEST=Verified on Samus. Tested with accel EC CLIs accelread, accelrange, accelrate, accelres Tested accelcalib, a ACCEL calibration util, and it succeeded. Tested sysfs interface: cd /sys/bus/iio/devices/iio:device1 cat in_accel_*_gyro_raw Signed-off-by: Sheng-Liang Song <ssl@chromium.org> Change-Id: I5752b00c03e1942c790ea4f28610fda83fa2dcbc Reviewed-on: https://chromium-review.googlesource.com/211484 Reviewed-by: Alec Berg <alecaberg@chromium.org>
52 lines
1.3 KiB
C
52 lines
1.3 KiB
C
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*
|
|
* Test motion sense code.
|
|
*/
|
|
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include "math_util.h"
|
|
#include "motion_sense.h"
|
|
#include "test_util.h"
|
|
#include "util.h"
|
|
|
|
/*****************************************************************************/
|
|
/* Need to define motion sensor globals just to compile. */
|
|
struct motion_sensor_t motion_sensors[] = {};
|
|
const unsigned int motion_sensor_count = ARRAY_SIZE(motion_sensors);
|
|
|
|
/*****************************************************************************/
|
|
/* Test utilities */
|
|
|
|
/* Macro to compare two floats and check if they are equal within diff. */
|
|
#define IS_FLOAT_EQUAL(a, b, diff) ((a) >= ((b) - diff) && (a) <= ((b) + diff))
|
|
|
|
#define ACOS_TOLERANCE_DEG 0.5f
|
|
#define RAD_TO_DEG (180.0f / 3.1415926f)
|
|
|
|
static int test_acos(void)
|
|
{
|
|
float a, b;
|
|
float test;
|
|
|
|
/* Test a handful of values. */
|
|
for (test = -1.0; test <= 1.0; test += 0.01) {
|
|
a = arc_cos(test);
|
|
b = acos(test) * RAD_TO_DEG;
|
|
TEST_ASSERT(IS_FLOAT_EQUAL(a, b, ACOS_TOLERANCE_DEG));
|
|
}
|
|
|
|
return EC_SUCCESS;
|
|
}
|
|
|
|
void run_test(void)
|
|
{
|
|
test_reset();
|
|
|
|
RUN_TEST(test_acos);
|
|
|
|
test_print_result();
|
|
}
|