Re: [android-porting] Re: User input, getevent and keydown events

2011-05-26 Thread Bee Hock Goh
On Thu, May 26, 2011 at 7:56 AM, David Turner wrote: > The "no keyboard for id 0" message probably means that your event kernel > driver is reporting a name that doesn't have a corresponding .kcm / .kl file > combination, i.e. you're likely missing some configuration files, or your > kernel drive

Re: [android-porting] How to get the LSB for the Accelerometer from the datasheet

2011-05-23 Thread Bee Hock Goh
_report_abs(data->input_dev, ABS_X, datax); >  556 input_report_abs(data->input_dev, ABS_Y, datay); >  557 input_report_abs(data->input_dev, ABS_Z, dataz); > > > On Mon, May 23, 2011 at 2:01 PM, Bee Hock Goh wrote: >> >> Hi, >> >> I

[android-porting] How to get the LSB for the Accelerometer from the datasheet

2011-05-23 Thread Bee Hock Goh
Hi, I am trying to port mma7660 for gingerbread and there is this LSB that is required. What is LSB? Searching does not seem to turn out any definition and the datasheet didnt offer any glue. I am able to get the xyz raw value and is trying to figure out how to do the conversion to SI unit thank