Merge "remove LOC_MODEM_EMULATOR from gps.utils"

This commit is contained in:
Linux Build Service Account 2018-11-10 00:22:49 -08:00 committed by Gerrit - the friendly Code Review server
commit 0056afe9bd
2 changed files with 0 additions and 15 deletions

View file

@ -57,14 +57,12 @@
/* Parameter data */
static uint32_t DEBUG_LEVEL = 0xff;
static uint32_t TIMESTAMP = 0;
static uint32_t LOC_MODEM_EMULATOR = 0;
/* Parameter spec table */
static const loc_param_s_type loc_param_table[] =
{
{"DEBUG_LEVEL", &DEBUG_LEVEL, NULL, 'n'},
{"TIMESTAMP", &TIMESTAMP, NULL, 'n'},
{"LOC_MODEM_EMULATOR", &LOC_MODEM_EMULATOR, NULL, 'n'},
};
static const int loc_param_num = sizeof(loc_param_table) / sizeof(loc_param_s_type);
@ -87,17 +85,6 @@ const char LOC_PATH_APDR_CONF[] = LOC_PATH_APDR_CONF_STR;
const char LOC_PATH_XTWIFI_CONF[] = LOC_PATH_XTWIFI_CONF_STR;
const char LOC_PATH_QUIPC_CONF[] = LOC_PATH_QUIPC_CONF_STR;
/*===========================================================================
FUNCTION loc_modem_emulator_enabled
DESCRIPTION
Provides access to Modem Emulator config item.
===========================================================================*/
uint32_t loc_modem_emulator_enabled()
{
return LOC_MODEM_EMULATOR;
}
/*===========================================================================
FUNCTION loc_set_config_entry

View file

@ -133,8 +133,6 @@ extern const char LOC_PATH_QUIPC_CONF[];
int loc_read_process_conf(const char* conf_file_name, uint32_t * process_count_ptr,
loc_process_info_s_type** process_info_table_ptr);
uint32_t loc_modem_emulator_enabled();
#ifdef __cplusplus
}
#endif