OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tilt_angle
(Results
1 - 2
of
2
) sorted by null
/device/google/contexthub/firmware/src/drivers/window_orientation/
window_orientation.c
123
static bool isTiltAngleAcceptable(int rotation, int8_t
tilt_angle
)
125
return ((
tilt_angle
>= Tilt_Tolerance[rotation][0])
126
&& (
tilt_angle
<= Tilt_Tolerance[rotation][1]));
342
int8_t
tilt_angle
;
local
410
tilt_angle
= tilt_tmp;
411
addTiltHistoryEntry(now,
tilt_angle
);
418
if (isSwinging(now,
tilt_angle
)) {
425
if (
tilt_angle
<= TILT_OVERHEAD_ENTER) {
427
} else if (
tilt_angle
>= TILT_OVERHEAD_EXIT) {
433
} else if (fabsf(
tilt_angle
) > MAX_TILT)
[
all
...]
/frameworks/base/tools/orientationplot/
orientationplot.py
119
self.
tilt_angle
= self._make_timeseries()
320
self._append(self.
tilt_angle
, timeindex, self.parse_tilt_angle)
350
self._scroll(self.
tilt_angle
, bottom)
370
self.tilt_angle_line.set_data(self.
tilt_angle
)
Completed in 197 milliseconds