ubxaid.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * ubxproto
  3. * Copyright (c) 2014, Alexey Edelev aka semlanik, All rights reserved.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 3.0 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library.
  17. *
  18. * Additionally to GNU Lesser General Public License you MUST NOT
  19. * static link this library and MUST add link to author
  20. * and source of this library in your application.
  21. *
  22. * Actual LGPL text https://www.gnu.org/licenses/lgpl.html
  23. *
  24. * File: ubxaid.h
  25. */
  26. #ifndef UBLOXAID_H
  27. #define UBLOXAID_H
  28. #include "ubxmessage.h"
  29. #ifdef __cplusplus
  30. extern "C"
  31. {
  32. #endif
  33. extern struct UBXMsgBuffer getAID_ALM_POLL();
  34. extern struct UBXMsgBuffer getAID_ALM_POLL_OPT(UBXU1_t svid);
  35. extern struct UBXMsgBuffer getAID_ALM(UBXU4_t svid, UBXU4_t week);
  36. extern struct UBXMsgBuffer getAID_ALM_OPT(UBXU4_t svid, UBXU4_t week, UBXU4_t dwrd[8]);
  37. extern struct UBXMsgBuffer getAID_ALPSRV(struct UBXMsg* clientMgs, const struct UBXAlpFileInfo *fileInfo);
  38. extern struct UBXMsgBuffer getAID_ALP_POLL(UBXU4_t predTow, UBXU4_t predDur, UBXI4_t age, UBXU2_t predWno, UBXU2_t almWno, UBXU1_t svs);
  39. extern struct UBXMsgBuffer getAID_ALP_END();
  40. extern struct UBXMsgBuffer getAID_ALP();
  41. extern struct UBXMsgBuffer getAID_AOP_POLL();
  42. extern struct UBXMsgBuffer getAID_AOP_POLL_OPT(UBXU1_t svid);
  43. extern struct UBXMsgBuffer getAID_AOP();
  44. extern struct UBXMsgBuffer getAID_AOP_OPT();
  45. extern struct UBXMsgBuffer getAID_DATA_POLL();
  46. extern struct UBXMsgBuffer getAID_EPH_POLL();
  47. extern struct UBXMsgBuffer getAID_EPH_POLL_OPT(UBXU1_t svid);
  48. extern struct UBXMsgBuffer getAID_EPH();
  49. extern struct UBXMsgBuffer getAID_EPH_OPT();
  50. extern struct UBXMsgBuffer getAID_HUI_POLL();
  51. extern struct UBXMsgBuffer getAID_HUI();
  52. extern struct UBXMsgBuffer getAID_INI_POLL();
  53. extern struct UBXMsgBuffer getAID_INI();
  54. extern struct UBXMsgBuffer getAID_REQ();
  55. #ifdef __cplusplus
  56. }
  57. #endif
  58. #endif // UBLOXAID_H