lethala
About
- Username
- lethala
- Joined
- Visits
- 43
- Last Active
- Roles
- Member
Comments
-
The phone is fine. I have 3 boards and it can talk to 2 of them. I was just trying to troubleshoot the board.
-
I connected with the metawear app and pressed reset on the device information screen. I got a "reset issued" toast message but no device info. I disconnected and reconnected to the board but still no device info. The log of the whole session is belo…
-
Thanks. I'll give that a try.
-
"Are you by chance periodically scheduling readRssi (or readBatteryLevel) function calls?" No. I currently call those once each in the connected() callback method.
-
I just got a different error. 07-12 22:03:43.863 5043-5043/com.mbientlab.metawear.app E/AndroidRuntime﹕ FATAL EXCEPTION: main Process: com.mbientlab.metawear.app, PID: 5043 java.lang.RuntimeException: Error receiving broadcast Intent…
-
I made the following change in a local copy of the library to get me past the problem. if (data.length > 3) { byte[] i2cData = new byte[data.length - 3]; System.arraycopy(data, 3, i2cData, 0, data.length - 3); for (ModuleCallbacks i…
-
It just happened again.
-
My code is under heavy development. It was happening consistently before a change I made last night but has yet to occur since. I use a timer and an event to send gyro samples over I2C whenever a gpio is low. My previous code started the timer when …