gnss.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. *
  3. * oFono - Open Source Telephony
  4. *
  5. * Copyright (C) 2008-2011 Intel Corporation. All rights reserved.
  6. * Copyright (C) 2011 ST-Ericsson AB.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. */
  22. #ifndef __OFONO_GNSS_H
  23. #define __OFONO_GNSS_H
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. #include <ofono/types.h>
  28. struct ofono_gnss;
  29. typedef void (*ofono_gnss_cb_t)(const struct ofono_error *error, void *data);
  30. struct ofono_gnss_driver {
  31. const char *name;
  32. int (*probe)(struct ofono_gnss *gnss, unsigned int vendor, void *data);
  33. void (*remove)(struct ofono_gnss *gnss);
  34. void (*send_element)(struct ofono_gnss *gnss,
  35. const char *xml,
  36. ofono_gnss_cb_t cb, void *data);
  37. void (*set_position_reporting)(struct ofono_gnss *gnss,
  38. ofono_bool_t enable,
  39. ofono_gnss_cb_t cb,
  40. void *data);
  41. };
  42. void ofono_gnss_notify_posr_request(struct ofono_gnss *gnss, const char *xml);
  43. void ofono_gnss_notify_posr_reset(struct ofono_gnss *gnss);
  44. int ofono_gnss_driver_register(const struct ofono_gnss_driver *d);
  45. void ofono_gnss_driver_unregister(const struct ofono_gnss_driver *d);
  46. struct ofono_gnss *ofono_gnss_create(struct ofono_modem *modem,
  47. unsigned int vendor,
  48. const char *driver, void *data);
  49. void ofono_gnss_register(struct ofono_gnss *gnss);
  50. void ofono_gnss_remove(struct ofono_gnss *gnss);
  51. void ofono_gnss_set_data(struct ofono_gnss *gnss, void *data);
  52. void *ofono_gnss_get_data(struct ofono_gnss *gnss);
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56. #endif /* __OFONO_GNSS_H */