Created
January 6, 2012 04:16
-
-
Save kanru/1568934 to your computer and use it in GitHub Desktop.
Android GPS using libhardware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOCAL_PATH:= $(call my-dir) | |
include $(CLEAR_VARS) | |
LOCAL_SRC_FILES:= \ | |
gps_test.cpp | |
LOCAL_SHARED_LIBRARIES := \ | |
libcutils libhardware | |
LOCAL_MODULE:= test-gps | |
LOCAL_MODULE_TAGS := optional | |
include $(BUILD_EXECUTABLE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <pthread.h> | |
#include <signal.h> | |
#include <hardware/gps.h> | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <sys/time.h> | |
const GpsInterface* gGpsInterface = NULL; | |
const AGpsInterface* gAGpsInterface = NULL; | |
const AGpsRilInterface* gAGpsRilInterface = NULL; | |
static const GpsInterface* get_gps_interface() | |
{ | |
int err; | |
hw_module_t* module; | |
const GpsInterface* interface = NULL; | |
err = hw_get_module(GPS_HARDWARE_MODULE_ID, (hw_module_t const**)&module); | |
if (!err) { | |
hw_device_t* device; | |
err = module->methods->open(module, GPS_HARDWARE_MODULE_ID, &device); | |
if (!err) { | |
gps_device_t* gps_device = (gps_device_t *)device; | |
interface = gps_device->get_gps_interface(gps_device); | |
} | |
} | |
return interface; | |
} | |
static const AGpsInterface* get_agps_interface(const GpsInterface *gps) | |
{ | |
const AGpsInterface* interface = NULL; | |
if (gps) { | |
interface = (const AGpsInterface*)gps->get_extension(AGPS_INTERFACE); | |
} | |
return interface; | |
} | |
static const AGpsRilInterface* get_agps_ril_interface(const GpsInterface *gps) | |
{ | |
const AGpsRilInterface* interface = NULL; | |
if (gps) { | |
interface = (const AGpsRilInterface*)gps->get_extension(AGPS_RIL_INTERFACE); | |
} | |
return interface; | |
} | |
static void location_callback(GpsLocation* location) | |
{ | |
fprintf(stdout, "*** location\n"); | |
fprintf(stdout, "flags:\t%d\n", location->flags); | |
fprintf(stdout, "lat: \t%lf\n", location->latitude); | |
fprintf(stdout, "long: \t%lf\n", location->longitude); | |
fprintf(stdout, "accur:\t%f\n", location->accuracy); | |
fprintf(stdout, "utc: \t%ld\n", (long)location->timestamp); | |
} | |
static void status_callback(GpsStatus* status) | |
{ | |
switch (status->status) { | |
case GPS_STATUS_NONE: | |
fprintf(stdout, "*** no gps\n"); | |
break; | |
case GPS_STATUS_SESSION_BEGIN: | |
fprintf(stdout, "*** session begin\n"); | |
break; | |
case GPS_STATUS_SESSION_END: | |
fprintf(stdout, "*** session end\n"); | |
break; | |
case GPS_STATUS_ENGINE_ON: | |
fprintf(stdout, "*** engine on\n"); | |
break; | |
case GPS_STATUS_ENGINE_OFF: | |
fprintf(stdout, "*** engine off\n"); | |
break; | |
default: | |
fprintf(stdout, "*** unknown status\n"); | |
} | |
} | |
static void sv_status_callback(GpsSvStatus* sv_info) | |
{ | |
fprintf(stdout, "*** sv info\n"); | |
fprintf(stdout, "num_svs:\t%d\n", sv_info->size); | |
} | |
static void nmea_callback(GpsUtcTime timestamp, const char* nmea, int length) | |
{ | |
fprintf(stdout, "*** nmea info\n"); | |
fprintf(stdout, "timestamp:\t%ld\n", (long)timestamp); | |
fprintf(stdout, "nmea: \t%s\n", nmea); | |
fprintf(stdout, "length: \t%d\n", length); | |
} | |
static void set_capabilities_callback(uint32_t capabilities) | |
{ | |
fprintf(stdout, "*** set capabilities\n"); | |
} | |
static void acquire_wakelock_callback() | |
{ | |
fprintf(stdout, "*** acquire wakelock\n"); | |
} | |
static void release_wakelock_callback() | |
{ | |
fprintf(stdout, "*** release wakelock\n"); | |
} | |
static pthread_t create_thread_callback(const char* name, void (*start)(void *), void* arg) | |
{ | |
pthread_t thread; | |
pthread_attr_t attr; | |
int err; | |
err = pthread_attr_init(&attr); | |
err = pthread_create(&thread, &attr, (void*(*)(void*))start, arg); | |
return thread; | |
} | |
GpsCallbacks callbacks = { | |
sizeof(GpsCallbacks), | |
location_callback, | |
status_callback, | |
sv_status_callback, | |
nmea_callback, | |
set_capabilities_callback, | |
acquire_wakelock_callback, | |
release_wakelock_callback, | |
create_thread_callback, | |
}; | |
static void | |
agps_status_cb(AGpsStatus *status) | |
{ | |
switch (status->status) { | |
case GPS_REQUEST_AGPS_DATA_CONN: | |
fprintf(stdout, "*** data_conn_open\n"); | |
gAGpsInterface->data_conn_open("internet"); | |
break; | |
case GPS_RELEASE_AGPS_DATA_CONN: | |
fprintf(stdout, "*** data_conn_closed\n"); | |
gAGpsInterface->data_conn_closed(); | |
break; | |
} | |
} | |
AGpsCallbacks callbacks2 = { | |
agps_status_cb, | |
create_thread_callback, | |
}; | |
static void | |
agps_ril_set_id_cb(uint32_t flags) | |
{ | |
fprintf(stdout, "*** set_id_cb\n"); | |
gAGpsRilInterface->set_set_id(AGPS_SETID_TYPE_IMSI, "000000000000000"); | |
} | |
static void | |
agps_ril_refloc_cb(uint32_t flags) | |
{ | |
fprintf(stdout, "*** refloc_cb\n"); | |
AGpsRefLocation location; | |
//gAGpsRilInterface->set_ref_location(&location, sizeof(location)); | |
} | |
AGpsRilCallbacks callbacks3 = { | |
agps_ril_set_id_cb, | |
agps_ril_refloc_cb, | |
create_thread_callback, | |
}; | |
void sigint_handler(int signum) | |
{ | |
fprintf(stdout, "*** cleanup\n"); | |
if (gGpsInterface) { | |
gGpsInterface->stop(); | |
gGpsInterface->cleanup(); | |
} | |
} | |
int main(int argc, char *argv[]) | |
{ | |
fprintf(stdout, "*** setup signal handler\n"); | |
signal(SIGINT, sigint_handler); | |
fprintf(stdout, "*** get gps interface\n"); | |
gGpsInterface = get_gps_interface(); | |
fprintf(stdout, "*** init gps interface\n"); | |
if (gGpsInterface && !gGpsInterface->init(&callbacks)) { | |
gAGpsInterface = get_agps_interface(gGpsInterface); | |
if (gAGpsInterface) { | |
gAGpsInterface->init(&callbacks2); | |
gAGpsInterface->set_server(AGPS_TYPE_SUPL, "supl.google.com", 7276); | |
} | |
gAGpsRilInterface = get_agps_ril_interface(gGpsInterface); | |
if (gAGpsRilInterface) { | |
gAGpsRilInterface->init(&callbacks3); | |
} | |
fprintf(stdout, "*** start gps track\n"); | |
gGpsInterface->delete_aiding_data(GPS_DELETE_ALL); | |
gGpsInterface->start(); | |
// timeval tv; | |
// gettimeofday(&tv, NULL); | |
// gGpsInterface->inject_time(tv.tv_sec, tv.tv_sec, 0); | |
gGpsInterface->set_position_mode(GPS_POSITION_MODE_MS_BASED, | |
GPS_POSITION_RECURRENCE_PERIODIC, | |
1000, 0, 0); | |
} | |
quit: | |
sleep(10000000); | |
return 0; | |
} |
Thanks for your code! I've compiled and run it successfully on Android 4.2.2.
i don't run the code ,but ,say thanks first.it's useful
First of all 'thanks for the code!'. Could someone ( @iamantony @kanru ) give me additional instuctions on e.g. where to place the mk-file, source file etc? Thanks in advance :)
AndroidManifest.xml file??
Aidez-moi, s'il vous plaît. Erreur : erreur fatale : hardware/gps.h : aucun fichier ou répertoire de ce type
I too have the same error
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Help please.
Error: fatal error: hardware/gps.h: No such file or directory