Gps service / inc /

gps-service.h

  1. #ifndef __$(appName)_H__
  2. #define __$(appName)_H__
  3.  
  4. #include <dlog.h>
  5.  
  6. /* This is a sample application demonstrating proper usage of GPS module. It is a service-like application
  7. * running in the background, broadcasting information to another application that is supposed to present data to user.
  8. *
  9. * Using GPS module, following geolocation data are aquired:
  10. * - longitude
  11. * - latitude
  12. * - satellites information - number of active satellites
  13. *
  14. * Data is broadcasted to another application using bundle and message port. Coordinates are broadcasted every one second,
  15. * whereas satellites information is broadcasted after any change has been observed.
  16. *
  17. * 2 types of messages:
  18. * 1. Position update - it contains current longitude and latitude as well as tag indicating whether current position
  19. * is within initial circle boundary or not. It is sent every one second.
  20. * 2. Satellites update - it contains number of satellites in view. It is send every 5 seconds.
  21. *
  22. * Note that satellite data is not supported on Tizen Emulator.
  23. */
  24.  
  25. #ifdef LOG_TAG
  26. #undef LOG_TAG
  27. #endif
  28. #define LOG_TAG "$(appName)"
  29.  
  30. #endif /* __$(appName)_H__ */