Hi,
I am porting android to a custom hardware platform where we will have a
variety of sensors. As a first step I wrote a sensor library and a simple
application to test getting data from the sensors.
The problem is that when I run my application, the SensorManager listener
thread never gets launched as seen in the debugger, and so I never get any
data.
I traced the problem down to this call which fails:
from SensorManager.java:
// must be called with sListeners lock
boolean startLocked(ISensorService service) {
try {
if (mThread == null) {
Bundle dataChannel = service.getDataChannel();
if (dataChannel != null) {
[...]
The call to service.getDataChannel() seems to fail and I see !!! FAILED
BINDER TRANSACTION !!! in logcat.
I am new to android, so I don't understand what could be happening here...
Can anyone suggest what to look for next?
--
Regards, Devin
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en