Merge "Change data type of HEPE to float"

This commit is contained in:
Linux Build Service Account 2013-05-09 15:14:27 -07:00 committed by Gerrit - the friendly Code Review server
commit 08f7f00ef5
2 changed files with 2 additions and 2 deletions

View file

@ -922,7 +922,7 @@ struct ulp_msg_inject_network_position : public loc_eng_msg {
loc_eng_msg(instance, ULP_MSG_INJECT_NETWORK_POSITION),
networkPosition(networkPos)
{
LOC_LOGV("flags: %d\n source: %d\n latitude: %f\n longitude: %f\n accuracy %d",
LOC_LOGV("flags: %d\n source: %d\n latitude: %f\n longitude: %f\n accuracy %f",
networkPosition.valid_flag,
networkPosition.position.pos_source,
networkPosition.position.latitude,

View file

@ -261,7 +261,7 @@ typedef struct {
/** longitude in degrees */
double longitude;
/** Horzizontal error estimate in meters */
uint16_t HEPE;
float HEPE;
} UlpNetworkPosition;
/** Represents access point information */