[android-porting] GPS Porting

2015-03-28 Thread Gianmaria Iaculo
Hello, I need a little help cause I'm getting confused on how to attach a GPS to my android porting. First: I'm working with 4.4.4 and I've a working RIL with an LTE modem from Telit. My GSM Module (LE910) also have a GPS chip so when attached it creates a ttyUSB wich produces NMEA sentences

[android-porting] GPS HAL on Android ICS

2013-08-08 Thread Pratik Rathod
Hello All, I am working on a custom board which is running Android ICS. My board is receiving NMEA stream over UDP. My current implementation is to receive the NMEA stream over UDP , parse the required parameters like latitude, longitude etc and feed them to mock location provider. Recently, I

Re: [android-porting] GPS causes system crash

2012-02-22 Thread Ivan Savygin
Thanks for answer, but i already found my mistake. Trouble was in piece of code where hardware has to be initialized, there was some mess with memory pointers that's why status_callback was changing its address Hi, have you first tried testing your GPS device with standard Ubuntu version, if

Re: [android-porting] GPS causes system crash

2012-02-20 Thread Raju Sana
Hi, have you first tried testing your GPS device with standard Ubuntu version, if you do the same you will find some pointers to bring up your device. I brought up my device in similar manner. Thanks, Venkat Raju. On Sat, Feb 11, 2012 at 1:55 PM, Ivan Savygin bendert...@gmail.com wrote:

[android-porting] GPS altitude has problem

2011-10-29 Thread Tong Vuu
Hi all, I have created an HAL for my GPS module via serial inteface (/dev/ ttyS4). I integrated it into Android successfully. However, it didn't report altitude information to Android application layer although it works fine with latitude and longitude. My application just only get the fix

[android-porting] GPS on Gingerbread

2011-07-27 Thread venkat k raju
HI all, any one please suggest me how to integrate GPS on beagleboard with Gingerbread. thanks in advance. -- thanksRegards k.v.raju -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] GPS on Gingerbread

2011-07-27 Thread hedwin
what about a gps usb device. On Wed, Jul 27, 2011 at 1:12 PM, venkat k raju kvraju@gmail.com wrote: HI all, any one please suggest me how to integrate GPS on beagleboard with Gingerbread. thanks in advance. -- thanksRegards k.v.raju -- unsubscribe:

[android-porting] GPS port for crespo

2011-05-18 Thread Itai
I want to build and test my gps port (libgps) on nexus s (crespo). However, after building from aosp version 2.3.3 + the proprietary drivers that were post in: http://code.google.com/android/nexus/drivers.html I find out that although the built-in gps seems to be working in my build (after

[android-porting] GPS Porting Problems On The Android 2.3

2011-05-06 Thread jack
Hi, I am going to porting a USB-based GPS module to Android 2.3.2 on arm device. -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] GPS Porting Problems On The Android 2.3

2011-05-06 Thread jack
Hi I am going to porting a USB-based GPS module to Android 2.3 on arm device. In the Android2.3 source,I find the file (sdk/emulator/gps/ gps_qemu.c). So i change the file and Android.mk, making them been builded to gps.default.so and been copied to the directory (/system/ lib/hw/). By

[android-porting] gps driver

2011-01-14 Thread sathya
Hi all I m writing a GPS driver with spi interface for ublox nao-6G.. Please guid me.. As i m a begineer ThanksRegards Sathyavathi -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] GPS-Driver: Permission denied

2010-11-16 Thread Dudero
Hello, I'm in Integration a GPS driver into my Android (2.1) and always get the following error message: Permission denied from: do { state-fd = open( /dev/s3c2410_serial0, O_RDWR ); } while (state-fd 0 errno == EINTR); if (state-fd 0) { LOGE(could not open gps serial

Re: [android-porting] GPS-Driver: Permission denied

2010-11-16 Thread Deva R
did u try changing ownership of the device? chown radio /dev/s3c2410_serial0 (from openmoko http://activationrecord.net/radekp/openmoko/android/init.rc ) On Tue, Nov 16, 2010 at 8:56 PM, Dudero sinfanh...@googlemail.com wrote: Hello, I'm in Integration a GPS driver into my Android (2.1)

[android-porting] GPS on Android

2010-10-20 Thread Ne0
Hi guys, Im trying to interface a USB based GPS device on Beagleboard running Android eclair. I have connected the GPS device through a USB hub. Everytime I connect the GPS device, i get the following msg on the console: usb 1-2.4: new full speed USB device using ehci-omap and address 5 My goal

Re: [android-porting] GPS on Android

2010-10-20 Thread Hamilton Vera
When you hook this GPS In a linux machine does it binds to a /dev/ttyACMx? On Wed, Oct 20, 2010 at 4:56 AM, Ne0 neeraj1...@gmail.com wrote: Hi guys, Im trying to interface a USB based GPS device on Beagleboard running Android eclair. I have connected the GPS device through a USB hub.

Re: [android-porting] GPS on Android

2010-10-20 Thread Ashwin Bihari
I've interfaced a UART based GPS device within Android and for that I wrote a driver that opened up the UART, grab the NMEA strings and parsed. I use the freerunner's GPS file as a starting point, especially for the NMEA parsing stuff. You can do the same, the only difference being that instead of

Re: [android-porting] GPS on Android

2010-10-20 Thread Hamilton Vera
In fact is the USB Modem (CDC ACM) support │ Symbol: USB_ACM [=y] │ │ Prompt: USB Modem (CDC ACM) support │ │ Defined at drivers/usb/class/Kconfig:7 │ │ Depends on: USB_SUPPORT USB │ │ Location: │ │ -

[android-porting] GPS Porting Problems...

2010-08-23 Thread tarikk
Hey there, I'm having slight confusion over how the GPS works exactly. I'm trying to implement GPS on an OMAP board. This is the error im getting when running a GPS app I/ActivityManager( 794): Starting activity: Intent {

Re: [android-porting] GPS via Uart on beagleboard with Android

2010-03-18 Thread Deva R
if GPS hal is updated (so as to read co-ordinates via ttySx device), and you give a .so for your platform, android should get location correctly from the gps device.. sometime back, GPS over uart was discussed in android lists.

[android-porting] GPS

2009-11-09 Thread king
Hi, i am going to port a gps module to android on arm device, The gps only needed to provide power and connect its RX and TX to the arm device. So far i can get the data from gps modules through the uart port of the arm device. I would like to ask how can i make it on the UI too? I have put a

[android-porting] GPS function not present in system diretory

2009-05-08 Thread deepak singal
Hi all, I am trying to port gps on my board using latest cupcake source code. I have checked out the latest source code and built android root file system. I am facing the following problem :- $ cd out/target/product/generic /**hardware/libhardware_legacy/vibrator/vibrator.c*/ $