mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 02:35:28 +00:00
Motion sense calculations do not require huge amounts of precision, so
fixed point is plenty accurate. And fixed point works on Cortex-M0,
which lacks a FPU.
BUG=chrome-os-partner:36126
BRANCH=minnie (samus already works with the FPU, but could grab this if we
want additional testing)
TEST=manual
1. Boot system
2. At EC console: accelinfo on 250
3. Move lid through several different angles (30 degrees to max open) and
see that it updates correctly and relatively smoothly. A few degrees
of angle jitter is normal.
4. At several angles, rotate the chromebook around and see that the lid
angle remains relatively stable.
5. If the hinge is made normal to the ground (or within 15 degrees of
vertical), the angle should read 500, since the acceleration vectors
don't yield good results in that orientation (for either fixed or float
math).
And run 'make buildall -j', which tests arc_cos() and lid angle calculations
Change-Id: I70a0d08b8914629a3e21ae5578cbe8e50f29ad68
Signed-off-by: Randall Spangler <rspangler@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/244116
Reviewed-by: Alec Berg <alecaberg@chromium.org>
29 lines
876 B
C
29 lines
876 B
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.
|
|
*/
|
|
|
|
/* Lid angle module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_LID_ANGLE_H
|
|
#define __CROS_EC_LID_ANGLE_H
|
|
|
|
/**
|
|
* Update the lid angle module with the most recent lid angle calculation. Then
|
|
* use the lid angle history to enable/disable keyboard scanning when chipset
|
|
* is suspended.
|
|
*
|
|
* @lid_ang Lid angle.
|
|
*/
|
|
void lidangle_keyscan_update(int lid_ang);
|
|
|
|
/**
|
|
* Getter and setter methods for the keyboard wake angle. In S3, when the
|
|
* lid angle is greater than this value, the keyboard is disabled, and when
|
|
* the lid angle is smaller than this value, the keyboard is enabled.
|
|
*/
|
|
int lid_angle_get_kb_wake_angle(void);
|
|
void lid_angle_set_kb_wake_angle(int ang);
|
|
|
|
#endif /* __CROS_EC_LID_ANGLE_H */
|