From db611d57e0da9acd7ecf2a4a9b2a63e7620fe54d Mon Sep 17 00:00:00 2001 From: Vladimir Chtchetkine Date: Tue, 1 Nov 2011 17:35:07 -0700 Subject: Implements sensors emulation using a connected Android device There are three major things in this CL: 1. Abstract a connection with an Android device that is connected to the host via USB, and there is a TCP port forwarding to this device via 'adb forward' command. This abstraction is implemented in android/android-device.* 2. A client for android device API that talks to an app on the connected device that provides values for sensors available on the device. This is implemented in android/sensors-port.* 3. Changes to the sensor emulation code in android/hw-sensors.c to use sensors port (when available) for sensors emulation. Change-Id: I12901e8db6b6a6262fc1703ed96a9f714335d666 --- android/utils/debug.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'android/utils') diff --git a/android/utils/debug.h b/android/utils/debug.h index 096b002..ea5a6b0 100644 --- a/android/utils/debug.h +++ b/android/utils/debug.h @@ -36,6 +36,8 @@ _VERBOSE_TAG(sensors, "emulated sensors") \ _VERBOSE_TAG(memcheck, "memory checker") \ _VERBOSE_TAG(camera, "camera") \ + _VERBOSE_TAG(adevice, "android device connected via port forwarding") \ + _VERBOSE_TAG(sensors_port, "sensors emulator connected to android device") \ _VERBOSE_TAG(gles, "hardware OpenGLES emulation") \ #define _VERBOSE_TAG(x,y) VERBOSE_##x, -- cgit v1.1