7 Teleservice Application Framework
User Manual 231/374
Example
static sint32 ms32_RequestGPSData(const T_DBUS_Util* const opt_DBusInstance)
{
T_DBUS_GPS_Data t_DBus_GPS_Data;
// Call dbus util function
if(ygpsd_get_gps_data (opt_DBusInstance, &t_DBus_GPS_Data) != 0)
{
printf("Error fetching GPS data!\n");
return C_COM;
}
// To something with the received values
return C_NO_ERR;
}