summaryrefslogtreecommitdiffstats
path: root/positioning/client/include/vehicle_service/POS_common_API.h
blob: 5ee30055430842b0c1ab395bab54875f249ea5e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
/*
 * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#ifndef POSITIONING_CLIENT_INCLUDE_VEHICLE_SERVICE_POS_COMMON_API_H_
#define POSITIONING_CLIENT_INCLUDE_VEHICLE_SERVICE_POS_COMMON_API_H_

/**
 * @file POS_common_API.h
 * @brief API definition file for common function
 */

/** @addtogroup BaseSystem
 *  @{
 */
/** @addtogroup vehicle_service
 *  @ingroup BaseSystem
 *  @{
 */
/** @addtogroup positioning
 *  @ingroup vehicle_service
 *  @{
 */
/*---------------------------------------------------------------------------------*
 * Incluce                                                                         *
 *---------------------------------------------------------------------------------*/
#include <vehicle_service/POS_define.h>
#include <gps_hal.h>

/*---------------------------------------------------------------------------------*
 * Definition                                                                      *
 *---------------------------------------------------------------------------------*/
/* State definitions can be used */
#define  SENSORLOCATION_STATUS_DISABLE  (0)  //!< \~english Not available
#define  SENSORLOCATION_STATUS_ENABLE   (1)  //!< \~english Available

/* State definitions can be used */
#define  SENSORMOTION_STATUS_DISABLE    (0)  //!< \~english Not available
#define  SENSORMOTION_STATUS_ENABLE     (1)  //!< \~english Available
/* Acquisition method */
#define  SENSOR_GET_METHOD_AUTO         (0)  //!< \~english Not specified
#define  SENSOR_GET_METHOD_GPS          (1)  //!< \~english GPS
#define  SENSOR_GET_METHOD_NAVI         (2)  //!< \~english Navigation
#define  SENSOR_GET_METHOD_DR           (3)  //!< \~english Dead Reckoning
#define  SENSOR_GET_METHOD_POS          (4)  //!< \~english positioning (Internal)


#define  LOCATIONINFO_NMEA_MAX         (1020)
//!< \~english Max length of 'Location Information'

/* Command ID */
/* Vehicle sensor information notification CID (Rate information) */

/**
 * \~english @brief  Delivery speed command ID
 * \~english @brief  If you want to catch above envents, use NSFW like below.
 * \~english @code
 * l_eStatus = FrameworkUnifiedAttachCallbackToDispatcher(h_app, POS_NTFY_SEND_THREAD, CID_POSIF_REGISTER_LISTENER_SPEED, CBCallbackA);
 * @endcode
 */
#define CID_POSIF_REGISTER_LISTENER_SPEED     (0x0203)

/**
 * \~english @brief  Delivery longitude and latitude command ID
 * \~english @brief  If you want to catch above envents, use NSFW like below.
 * \~english @code
 * l_eStatus = FrameworkUnifiedAttachCallbackToDispatcher(h_app, POS_NTFY_SEND_THREAD, CID_POSIF_REGISTER_LISTENER_LONLAT, CBCallbackA);
 * @endcode
 */
#define CID_POSIF_REGISTER_LISTENER_LONLAT    0x0781

/**
 * \~english @brief  Delivery altitude command ID
 * \~english @brief  If you want to catch above envents, use NSFW like below.
 * \~english @code
 * l_eStatus = FrameworkUnifiedAttachCallbackToDispatcher(h_app, POS_NTFY_SEND_THREAD, CID_POSIF_REGISTER_LISTENER_ALTITUDE, CBCallbackA);
 * @endcode
 */
#define CID_POSIF_REGISTER_LISTENER_ALTITUDE  0x0782

/**
 * \~english @brief  Delivery heading command ID
 * \~english @brief  If you want to catch above envents, use NSFW like below.
 * \~english @code
 * l_eStatus = FrameworkUnifiedAttachCallbackToDispatcher(h_app, POS_NTFY_SEND_THREAD, CID_POSIF_REGISTER_LISTENER_HEADING, CBCallbackA);
 * @endcode
 */
#define CID_POSIF_REGISTER_LISTENER_HEADING   0x0783

/*---------------------------------------------------------------------------------*
 * Typedef declaration                                                             *
 *---------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------*
 * Struct declaration                                                              *
 *---------------------------------------------------------------------------------*/
/**
 * @struct POS_POSDATA
 * \~english position information
 */
typedef struct {
  int8_t    status;       //!< \~english data status
  uint8_t   posSts;       //!< \~english position status
  uint16_t  posAcc;       //!< \~english position accuracy
  int32_t   longitude;    //!< \~english current longitude
  int32_t   latitude;     //!< \~english current latitude
  int32_t   altitude;     //!< \~english current altitude
  int16_t   heading;      //!< \~english current heading
  uint8_t   reserved[2];  //!< \~english reserve
} POS_POSDATA;

/**
 * @struct SENSORLOCATION_MSG_LONLATINFO
 * \~english longitude and latitude information data delivery message
 */
typedef struct {
  SENSORLOCATION_LONLATINFO_DAT data;
  //!< \~english longitude and latitude information data
} SENSORLOCATION_MSG_LONLATINFO;

/**
 * @struct SENSORLOCATION_MSG_ALTITUDEINFO
 * \~english altitude information data delivery message
 */
typedef struct {
  SENSORLOCATION_ALTITUDEINFO_DAT data;  //!< \~english altitude information data
} SENSORLOCATION_MSG_ALTITUDEINFO;

/**
 * @struct SENSORMOTION_MSG_HEADINGINFO
 * \~english heading information data delivery message
 */
typedef struct {
  SENSORMOTION_HEADINGINFO_DAT data;  //!< \~english heading information data
} SENSORMOTION_MSG_HEADINGINFO;

/**
 * @struct SENSORMOTION_MSG_SPEEDINFO
 * \~english speed information data delivery message
 */
typedef struct {
  SENSORMOTION_SPEEDINFO_DAT data;  //!< \~english speed information data
} SENSORMOTION_MSG_SPEEDINFO;


/**
 * @struct POS_LOCATIONINFO_NMEA
 * \~english Structure of Location Information (NMEA)
 */
typedef struct {
    uint32_t length;  //!< \~english length
    uint8_t  data[LOCATIONINFO_NMEA_MAX];  //!< \~english data
} POS_LOCATIONINFO_NMEA;


/*---------------------------------------------------------------------------------*
 * Prototype Declaration                                                           *
 *---------------------------------------------------------------------------------*/
/* SENSOR_API public API */
#ifdef __cplusplus
extern "C" {
#endif

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup tag_Positioning
/// \~english @par Brief
///     - Register for longitude and lattitude delivery
///
/// \~english @param [in] hApp
///     - HANDLE - App Handle
/// \~english @param [in] notifyName
///     - PCSTR - Destination thread name
/// \~english @param [in] ucCtrlFlg
///     - uint8_t - Delivery control flag(register)
/// \~english @param [in] ucDeliveryTiming
///     - uint8_t - Delivery timing(change/update)
/// \~english @param [in] ucGetMethod
///     - uint8_t - Get method(GPS/Navigation/Not specified)
///
/// \~english @par
///     - Delivery control flag(ucCtrlFlg)
///     - SENSOR_DELIVERY_REGIST - register
///     - Register for specified logtitude and latitude delivery
///     - Please note if call this function for multiple times, the data will be deliveried for multiple times.
///     - The specified longitude and latitude will be deliveried during the registration(first delivery)
///     - Delivery timing(ucDeliveryTiming)
///     - SENSOR_DELIVERY_TIMING_CHANGE - change. Specified longitude and latitude will be deliveried \n
///       only when it has been changed.
///     - SENSOR_DELIVERY_TIMING_UPDATE - update. Specified longitude and latitude will be deliveried \n
///       every time that has been updated by the vehicle sensors.
///     - Get method(ucGetMethod)
///     - SENSOR_GET_METHOD_GPS - GPS. The longitude and latitude from GPS will be deliveried.
///     - SENSOR_GET_METHOD_NAVI - Navi. The longitude and latitude from Navigation will be deliveried.
///     - SENSOR_GET_METHOD_AUTO - Not specified. The specified longitude and latitude will be deliveried \n
///       according to the current environment.
///     - Avaliable method is descriped as following:\n
///       In the following environment, if the SENSOR_GET_METHOD_AUTO is set,treated as default \n
///       In the following environment, if the unsupported method has been specified, \n
///       POS_RET_ERROR_PARAM will be returned.\n
///
/// \~english @retval POS_RET_NORMAL normal finish
/// \~english @retval POS_RET_ERROR_PARAM parameter error
/// \~english @retval POS_RET_ERROR_BUFFULL the register count is full
/// \~english @retval POS_RET_ERROR_INNER internal error
/// \~english @retval POS_RET_ERROR_NOSUPPORT unsupported
/// \~english @retval POS_RET_ERROR_RESOURCE lack of resource
///
/// \~english @par Precondition
///     - The creation/initialization(FrameworkunifiedCreateDispatcherWithoutLoop and etc.) of the dispatcher for App are completed.
///     - Availability of positioning service is TRUE.
///
/// \~english @par changes of the internal status
///     - There is no changes of the internal status by this API
///
/// \~english @par Failure condition
///     - The parameter ucDeliveryTiming is neither update(SENSOR_DELIVERY_TIMING_UPDATE) nor change \n
///       (SENSOR_DELIVERY_TIMING_CHANGE) [POS_RET_ERROR_PARAM]
///     - The parameter ucCtrlFlg is not register(SENSOR_DELIVERY_REGIST) [POS_RET_ERROR_PARAM]
///     - The parameter hApp is NULL [POS_RET_ERROR_PARAM]
///     - The parameter notifyName is NULL [POS_RET_ERROR_PARAM]
///     - The count of message in message queue is reach to the max [POS_RET_ERROR_RESOURCE]
///     - The count of mutex is reach to the max [POS_RET_ERROR_RESOURCE]
///     - The count of item in ProcessName-ProcessNo convert table is reach to the max [POS_RET_ERROR_RESOURCE]
///     - The event is created in same process, but the count of reference to the event \n
///       is reach to the max [POS_RET_ERROR_INNER]
///     - The event is created in system, but the count of reference to the event \n
///       is reach to the max  [POS_RET_ERROR_INNER]
///     - Memory allocate failed during the event table creation for the event registering. [POS_RET_ERROR_INNER]
///     - The thread can not register in the event table. [POS_RET_ERROR_INNER]
///     - Memory allocate failed in event table during the thread table creation. [POS_RET_ERROR_INNER]
///     - After register the thread table in event table, the event flag has already been registered. \n
///       [POS_RET_ERROR_INNER]
///     - After register the thread table in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///     - The event table is full. [POS_RET_ERROR_INNER]
///     - The memory for event HANDLE allocate failed. [POS_RET_ERROR_INNER]
///     - The thread can not be registered in event table. [POS_RET_ERROR_INNER]
///     - In event table, try to allocate the memory of the thread table creation, but failed. [POS_RET_ERROR_INNER]
///     - After register the thread in event table, the event flag has already been registered. [POS_RET_ERROR_INNER]
///     - After register the thread in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///     - Specified event ID has not been registered in table. [POS_RET_ERROR_INNER]
///     - Initialize event object failed. [POS_RET_ERROR_INNER]
///     - ProcessNo has not been registered in message control table when message transfered between processes.\n
///       [POS_RET_ERROR_INNER]
///     - Message transfer HANDLE get failed when message transfered between processes. [POS_RET_ERROR_INNER]
///     - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///     - The destination process name size is larger than 20 characters when message transfer between processes. \n
///       [POS_RET_ERROR_INNER]
///     - The message queue name has not been registered in control table when message transfer between processes.\n
///       [POS_RET_ERROR_INNER]
///     - Message transfer HANDLE create failed when message transfered between process. [POS_RET_ERROR_INNER]
///     - Message transfer HANDLE get failed from internal table when message transfered between processes. \n
///       [POS_RET_ERROR_INNER]
///     - Message transfer failed between process. [POS_RET_ERROR_INNER]
///     - Specified event HANDLE has not been registered in event HANDLE table during waiting event. \n
///       [POS_RET_ERROR_INNER]
///     - The count of thread beyond max in event management table during event waiting. [POS_RET_ERROR_INNER]
///     - The EV_FLAG_BIT is not set in flagID during getting event. [POS_RET_ERROR_INNER]
///     - The ID of message event queue has not been created during event getting. [POS_RET_ERROR_INNER]
///     - The flagID has not been registered during event getting. [POS_RET_ERROR_INNER]
///     - The interruption happened during event getting [POS_RET_ERROR_INNER]
///     - Whatever error happened during event getting. [POS_RET_ERROR_INNER]
///     - Getting event timeout. [POS_RET_ERROR_INNER]
///     - Error happened during event getting. [POS_RET_ERROR_INNER]
///     - The result of positioning service returned is SENSOR_RET_ERROR_PARAM. [POS_RET_ERROR_PARAM]
///     - The result of positioning service returned is SENSOR_RET_ERROR_BUFFULL. [POS_RET_ERROR_BUFFULL]
///     - The result of positioning service returned is SENSOR_RET_ERROR_RESOURCE. [POS_RET_ERROR_RESOURCE]
///     - The result of positioning service returned is not SENSOR_RET_ERROR_PARAM and SENSOR_RET_ERROR_BUFFULL \n
///       and SENSOR_RET_ERROR_RESOURCE. [POS_RET_ERROR_INNER]
///
/// \~english @par Detail
///     - Call this API to register longitude and latitude information delivery.\n
///       This API return the result of registered.
///        \n
///
/// \~english @par
///        Please note the following points when use this API.
///        - Duplication registering
///        - The same destination thread name has already been registered
///        - The registered delivery data updated and normal return.(first delivery)
///        - To one delivery destination, the same data will not be duplication deliveried at same time.
///        - After call this API, if the delivery destination thread name has been changed, please call this API again.
///
/// \~english @par
///          Notification of message
///        - After registered successfully, vehicle sensor information will been sent as system API \n
///          message with following format.\n
///          Command ID : @ref CID_POSIF_REGISTER_LISTENER_LONLAT \n
///          message structure
/// \~english @code
///   typedef struct {
///     SENSORLOCATION_LONLATINFO_DAT  data;  /* message data */
///   } SENSORLOCATION_MSG_LONLATINFO;
/// @endcode
///           message data structure \n
///
/// \~english @code
///   typedef struct {
///   uint8_t   getMethod;  /* get method */
///   uint8_t   SyncCnt;    /* Synchrony count */
///   uint8_t   isEnable;   /* enable or not */
///   uint8_t   posSts;     /* position status */
///   uint16_t  posAcc;     /* Position accuracy */
///   int32_t   Longitude;  /* Longitude */
///   int32_t   Latitude;   /* Latitude */
///   } SENSORLOCATION_LONLATINFO_DAT;
/// @endcode
///        - Get method(getMethod)
///        - SENSOR_GET_METHOD_GPS - longitude and latitude from GPS
///        - SENSOR_GET_METHOD_NAVI - longitude and latitude from Navigation
///        - Synchrony count(SyncCnt)
///        - Count for position data synchronous \n
///          When delivery altitude and heading data, position data can be synchronized by SyncCnt.\n
///          But the data of different method can not be synchronized by SyncCnt.\n
///          Example 1: [LonLat from GPS] and [Heading from GPS] can be synchronized by SyncCnt.\n
///          Example 2: [LonLat from GPS] and [LonLat from Navi] can not be synchronized by SyncCnt.\n
///          Caution: The sensor count in sensor data delivery is another data.
///        - Enable or not(isEnable) \n
///          To describe this delivery message is whether can be used or not
///        - 0 - not avaliable
///        - not 0 - avaliable
///        - when GPS data is specified,longitude and latitude is invalid at following condition:\n
///          so [not avaliable] provieded
///        - After system start, GPS unit has not received current location data and GPS unit \n
///          status is not positioning fixed.
///        - If it is not initialized status, certainly provide [avaliable] when Navigation data specified
///        - If the status is [not avaliable], data following can not be guaranteed.
///        - Position status(posSts)
///        - Bit0 : GPS data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_GSP)
///        - Bit1 : DGPS data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_DGPS)
///        - Bit2 : DR data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_DR)
///        - Bit3 : MapMatching data used result(1:used, 0:not used, definition of \n
///          maskbit:POS_LOC_INFO_USE_MAPMATCHING)
///        - Position accuracy(posAcc)
///        - Detected accruray of current position:1LSB=1m \n
///        - Longitude : (WGS-84)(10^-7degree as 1) \n
///          East longitude is positive value and west longitude is negative value.
///        - Latitude : (WGS-84)(10^-7degree as 1) \n
///          North latitude positive value and south latitude is negative value.
///
/// \~english @par Classification
///        - Public
///
/// \~english @par Type
///        - Method
///
/// \~english @see
///        - POS_GetLonLat
///
////////////////////////////////////////////////////////////////////////////////////////////
POS_RET_API POS_RegisterListenerLonLat(HANDLE hApp, PCSTR notifyName, uint8_t ucCtrlFlg, uint8_t ucDeliveryTiming,
                                        uint8_t ucGetMethod);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup tag_Positioning
/// \~english @par Brief
///        - Register altitude delivery
///
/// \~english @param [in] hApp
///        - HANDLE - App Handle
/// \~english @param [in] notifyName
///        - PCSTR - Destination thread name
/// \~english @param [in] ucCtrlFlg
///        - uint8_t - Delivery control flag(register)
/// \~english @param [in] ucDeliveryTiming
///        - uint8_t - Delivery timing(change/update)
/// \~english @param [in] ucGetMethod
///        - uint8_t - Get method(GPS/Not specified)
///
/// \~english @par
///        - Delivery control flag(ucCtrlFlg)
///        - SENSOR_DELIVERY_REGIST - register
///        - Register specified altitude delivery
///        - Please note that if the same data delivery has been registered for multiple times, the data will \n
///          also be deliveried for registered multiple times.
///        - The specified altitude will be deliveried at registered time (first delivery).
///        - Delivery timing(ucDeliveryTiming)
///        - SENSOR_DELIVERY_TIMING_CHANGE - change. Specified altitude will be deliveried only when it is changed.
///        - SENSOR_DELIVERY_TIMING_UPDATE - update. Specified altitude will be deliveried when it is updated by \n
///          vehicle sensor.
///        - Get method(ucGetMethod)
///        - SENSOR_GET_METHOD_GPS - GPS. The altitude from GPS will be deliveried.
///        - SENSOR_GET_METHOD_AUTO - Not specified. The altitude will be deliveried according to \n
///          the current environment
///        - Avaliable method is descriped as following in each environment. \n
///          In the following environment, if the SENSOR_GET_METHOD_AUTO is set,treated as default \n
///          In the following environment, if the unsupported method has been specified, \n
///          POS_RET_ERROR_PARAM will be returned.
///
/// \~english @retval POS_RET_NORMAL normal finish
/// \~english @retval POS_RET_ERROR_PARAM parameter error
/// \~english @retval POS_RET_ERROR_BUFFULL the register count is full
/// \~english @retval POS_RET_ERROR_INNER internal error
/// \~english @retval POS_RET_ERROR_NOSUPPORT unsupported
/// \~english @retval POS_RET_ERROR_RESOURCE lack of resource
///
/// \~english @par Precondition
///        - The creation/initialization(FrameworkunifiedCreateDispatcherWithoutLoop and etc.) of the dispatcher \n
///          for App are completed.
///        - Availability of positioning service is TRUE.
///
/// \~english @par changes of internal status
///        - There is no changes of internal status
///
/// \~english @par Failure condition
///        - The parameter ucDeliveryTiming is neither update(SENSOR_DELIVERY_TIMING_UPDATE) nor change \n
///          (SENSOR_DELIVERY_TIMING_CHANGE) [POS_RET_ERROR_PARAM]
///        - The parameter ucCtrlFlg is not registered(SENSOR_DELIVERY_REGIST) [POS_RET_ERROR_PARAM]
///        - The parameter hApp is NULL [POS_RET_ERROR_PARAM]
///        - The parameter notifyName is NULL [POS_RET_ERROR_PARAM]
///        - The count of message in message queue is reached to the max [POS_RET_ERROR_RESOURCE]
///        - The count of mutex is reached to the max [POS_RET_ERROR_RESOURCE]
///        - The count of item in ProcessName-ProcessNo convert table is reached to the max [POS_RET_ERROR_RESOURCE]
///        - The event is created in same process, but the count of reference to the event \n
///          is reach to max [POS_RET_ERROR_INNER]
///        - The event is created in system, but the count of reference to the event \n
///          is reach to the max  [POS_RET_ERROR_INNER]
///        - Memory allocate failed during the event table creation for that event registering. [POS_RET_ERROR_INNER]
///        - The thread can not register in the event table. [POS_RET_ERROR_INNER]
///        - Memory allocate failed in event table during the thread table creation. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag has already been registered. \n
///          [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - The event table is full during event creation. [POS_RET_ERROR_INNER]
///        - The memory for event HANDLE allocate failed during event table creation. [POS_RET_ERROR_INNER]
///        - The thread can not be registered in event table. [POS_RET_ERROR_INNER]
///        - In event table, try to allocate the memory of the thread table creation, but failed. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag has already been registered. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - Specified event ID has not been registered in table. [POS_RET_ERROR_INNER]
///        - Initialize event object failed. [POS_RET_ERROR_INNER]
///        - ProcessNo has not been registered in message control table when message transfered between processes.\n
///          [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - The destination process name size is larger than 20 characters when message transfer between processes.\n
///          [POS_RET_ERROR_INNER]
///        - The message queue name has not been registered in control table when message transfer between processes.\n
///          [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE create failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed from internal table when message transfered between processes.\n
///          [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - Specified event HANDLE has not been registered in event HANDLE table during event waiting. \n
///          [POS_RET_ERROR_INNER]
///        - The count of thread is reach to max in event management table during event waiting.[POS_RET_ERROR_INNER]
///        - The EV_FLAG_BIT is not set in flagID during event getting. [POS_RET_ERROR_INNER]
///        - The ID of message event queue has not been created during event getting. [POS_RET_ERROR_INNER]
///        - The flagID has not been registered during event getting. [POS_RET_ERROR_INNER]
///        - The interruption happened during event getting [POS_RET_ERROR_INNER]
///        - Whatever error happened during event getting. [POS_RET_ERROR_INNER]
///        - Getting event timeout. [POS_RET_ERROR_INNER]
///        - Error happened during event getting. [POS_RET_ERROR_INNER]
///        - The result of positioning service is SENSOR_RET_ERROR_PARAM. [POS_RET_ERROR_PARAM]
///        - The result of positioning service is SENSOR_RET_ERROR_BUFFULL. [POS_RET_ERROR_BUFFULL]
///        - The result of positioning service is SENSOR_RET_ERROR_RESOURCE. [POS_RET_ERROR_RESOURCE]
///        - The result of positioning service is not SENSOR_RET_ERROR_PARAM and SENSOR_RET_ERROR_BUFFULL and \n
///          SENSOR_RET_ERROR_RESOURCE. [POS_RET_ERROR_INNER]
///
/// \~english @par Detail
///        - Call this API to register altitude delivery. \n
///          This API will finish when get the return value.
///
/// \~english @par
///          Please note the following points when use this API.
///        - Duplication registering
///        - The same destination thread name has already been registered
///        - The registered delivery data updated and normal return.(first delivery)
///        - To one delivery destination, the same data will not be duplication deliveried at same timing.
///        - After call this API, if the delivery destination thread name is changed, please call this API again.
///
/// \~english @par
///          Notification of message
///        - After registered successfully, vehicle sensor will send system API message with following format. \n
///          Command ID : @ref CID_POSIF_REGISTER_LISTENER_ALTITUDE \n
///          message structure
/// \~english @code
///   typedef struct {
///   SENSORLOCATION_ALTITUDEINFO_DAT  data;  /* message data */
/// } SENSORLOCATION_MSG_ALTITUDEINFO;
/// @endcode
///          message data structure
/// \~english @code
/// typedef struct {
///   uint8_t   getMethod;  /* get method */
///   uint8_t   SyncCnt;    /* synchrony count */
///   uint8_t   isEnable;   /* enable or not */
///   uint8_t   Reserve[3]; /* Reserve */
///   int32_t   Altitude;   /* Altitude(unit:0.01m) */
/// } SENSORLOCATION_ALTITUDEINFO_DAT;
/// @endcode
///        - Get method(getMethod)
///        - SENSOR_GET_METHOD_GPS - altitude from GPS
///        - Synchrony count(SyncCnt)
///        - Count for position data synchronous \n
///          When delivery altitude and heading data, position data can be synchronized by SyncCnt. \n
///          But the data of different method can not be synchronized by SyncCnt.\n
///          example: [longitude and latitude from GPS] and [heading from GPS] can be synchronized by SyncCnt.\n
///          synchronized by SyncCnt. \n
///          Caution: The sensor count in sensor data delivery is another data.
///        - Enable or not(isEnable) \n
///          To describe this delivery message is whether can be used or not.
///        - 0 - not avaliable
///        - not 0 - avaliable
///        - when GPS data specified, Altitude is invalid at following condition(so [not avaliable] provieded):
///        - Immediately after system start, GPS unit has not received current location data and GPS unit status \n
///          is not positioning fix
///        - If the status is [not avaliable], data following can not be guaranteed.
///        - Altitude
///        - altitude data(unit 0.01m)
///
/// \~english @par Classification
///        - Public
///
/// \~english @par Type
///        - Method
///
/// \~english @see delivery
///        - POS_GetAltitude
///
////////////////////////////////////////////////////////////////////////////////////////////
POS_RET_API POS_RegisterListenerAltitude(HANDLE hApp, PCSTR notifyName, uint8_t ucCtrlFlg, uint8_t ucDeliveryTiming,
                                         uint8_t ucGetMethod);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup tag_Positioning
/// \~english @par Brief
///        - Register speed delivery
///
/// \~english @param [in] hApp
///        - HANDLE - App Handle
/// \~english @param [in] notifyName
///        - PCSTR - Destination thread name
/// \~english @param [in] ucCtrlFlg
///        - uint8_t - Delivery control flag(register)
/// \~english @param [in] ucDeliveryTiming
///        - uint8_t - Delivery timing(change/update)
/// \~english @param [in] ucGetMethod
///        - uint8_t - Get method(POS/Navi/Not specified)
///
/// \~english @par
///        - Delivery control flag(ucCtrlFlg)
///        - SENSOR_DELIVERY_REGIST - register
///        - Register specified speed delivery
///        - Please note that if the same data delivery has been registered for multiple times, the data will \n
///          also be deliveried for registered mutiple times.
///        - The specified speed will be deliveried at registered time (first delivery).
///        - Delivery timing(ucDeliveryTiming)
///        - SENSOR_DELIVERY_TIMING_CHANGE - change. Specified speed will be deliveried only when it is changed.
///        - SENSOR_DELIVERY_TIMING_UPDATE - update. Specified speed will be deliveried when it is updated by \n
///          vehicle sensor.
///        - Get method(ucGetMethod)
///        - SENSOR_GET_METHOD_POS - The speed calculated in positioning based on speed pulse will be deliveried.
///        - SENSOR_GET_METHOD_NAVI - Navi  The speed from Navi will be deliveried.
///        - SENSOR_GET_METHOD_AUTO - Not specified  The speed will be deliveried according to the current environment
///          deliveried.
///        - Avaliable method is descriped as following in each environment. \n
///          In the following environment, if the SENSOR_GET_METHOD_AUTO is set,treated as default \n
///          In the following environment, if the unsupported method has been specified, \n
///          POS_RET_ERROR_PARAM will be returned.
///
/// \~english @retval POS_RET_NORMAL normal end
/// \~english @retval POS_RET_ERROR_PARAM parameter error
/// \~english @retval POS_RET_ERROR_BUFFULL the register count is full
/// \~english @retval POS_RET_ERROR_INNER internal error
/// \~english @retval POS_RET_ERROR_NOSUPPORT unsupported
/// \~english @retval POS_RET_ERROR_RESOURCE lack of resource
///
/// \~english @par Precondition
///        - The creation/initialization(FrameworkunifiedCreateDispatcherWithoutLoop and etc.) of the Dispatcher for App \n
///          are completed.
///        - Availability of service positioning is TRUE.
///
/// \~english @par change of internal status
///        - There is no change of internal status
///
/// \~english @par Failure condition
///        - The parameter ucDeliveryTiming is neither update(SENSOR_DELIVERY_TIMING_UPDATE) \n
///          nor change(SENSOR_DELIVERY_TIMING_CHANGE) [POS_RET_ERROR_PARAM]
///        - The parameter ucCtrlFlg is not register(SENSOR_DELIVERY_REGIST) [POS_RET_ERROR_PARAM]
///        - The parameter hApp is NULL [POS_RET_ERROR_PARAM]
///        - The parameter notifyName is NULL [POS_RET_ERROR_PARAM]
///        - The count of message in message queue is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of mutex is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of item in ProcessName-ProcessNo convert table is reach to max [POS_RET_ERROR_RESOURCE]
///        - The event is created in same process, but the count of reference is reach to max [POS_RET_ERROR_INNER]
///        - The event is created in system, but the count of reference is reach to max  [POS_RET_ERROR_INNER]
///        - Memory allocate failed during the event table creation for event registering. [POS_RET_ERROR_INNER]
///        - The thread can not register in the event table. [POS_RET_ERROR_INNER]
///        - Memory allocate failed in event table during the thread table creation. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag has already been registered. \n
///          [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - The event table is full during event creation. [POS_RET_ERROR_INNER]
///        - The memory for event HANDLE allocate failed during event table creation. [POS_RET_ERROR_INNER]
///        - The thread can not be registered in event table. [POS_RET_ERROR_INNER]
///        - In event table, try to allocate the memory of the thread table creation, but failed. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag has already been registered. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - Specified event ID has not been registered in table. [POS_RET_ERROR_INNER]
///        - Initialize event object failed. [POS_RET_ERROR_INNER]
///        - ProcessNo has not been registered in message control table when message transfered between processes. \n
///          [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - The destination process name size is larger than 20 characters when message transfer between processes.\n
///          [POS_RET_ERROR_INNER]
///        - The message queue name has not been registered in control table when message transfer between processes.\n
///          [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE create failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed from internal table when message transfered between processes. \n
///          [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - Specified event HANDLE has not been registered in event HANDLE table during event waiting. \n
///          [POS_RET_ERROR_INNER]
///        - The count of thread is reach to max in event management table during event waiting. [POS_RET_ERROR_INNER]
///        - The EV_FLAG_BIT is not set in flagID during event getting. [POS_RET_ERROR_INNER]
///        - The ID of message event queue has not been created during event getting. [POS_RET_ERROR_INNER]
///        - The flagID has not been registered during event getting. [POS_RET_ERROR_INNER]
///        - The interruption happened during event getting [POS_RET_ERROR_INNER]
///        - Whatever error happened during event getting. [POS_RET_ERROR_INNER]
///        - Getting event timeout. [POS_RET_ERROR_INNER]
///        - Error happened during event getting. [POS_RET_ERROR_INNER]
///        - The result of positioning service is SENSOR_RET_ERROR_PARAM. [POS_RET_ERROR_PARAM]
///        - The result of positioning service is SENSOR_RET_ERROR_BUFFULL. [POS_RET_ERROR_BUFFULL]
///        - The result of positioning service is SENSOR_RET_ERROR_RESOURCE. [POS_RET_ERROR_RESOURCE]
///        - The result of positioning service is not SENSOR_RET_ERROR_PARAM and SENSOR_RET_ERROR_BUFFULL \n
///          and SENSOR_RET_ERROR_RESOURCE. [POS_RET_ERROR_INNER]
///
/// \~english @par Detail
///        - Call this API to register speed delivery. \n
///          This API will finish when get the return value.
///
/// \~english @par
///          Please note the following points when use this API.
///        - Duplication registering
///        - The same destination thread name has already been registered
///        - The registered delivery data updated and normal return.(first delivery)
///        - To one delivery destination, the same data will not be duplication deliveried at same timing.
///        - After call this API, if the delivery destination thread name is changed, please call this API again.
///
/// \~english @par
///          Notification of message
///        - After registered successfully, vehicle sensor will send system API message with following format. \n
///          Command ID : @ref CID_POSIF_REGISTER_LISTENER_SPEED \n
///           message structure
/// \~english @code
///   typedef struct {
///     SENSORMOTION_SPEEDINFO_DAT  data;  /* message data */
///   } SENSORMOTION_MSG_SPEEDINFO;
/// @endcode
///           message data structure
/// \~english @code
///   typedef struct {
///   uint8_t   getMethod;    /* get method */
///   uint8_t   SyncCnt;      /* synchrony count */
///   uint8_t   isEnable;     /* enable or not */
///   uint8_t   Reserve1[3];  /* Reserve */
///   uint16_t  Speed;        /* speed(unit:0.01m/sec) */
///   uint8_t   Reserve2[2];  /* Reserve */
///   } SENSORMOTION_SPEEDINFO_DAT;
/// @endcode
///        - Get method(getMethod)
///        - SENSOR_GET_METHOD_POS - The speed calculated in positioning based on speed pulse will be deliveried.
///        - SENSOR_GET_METHOD_NAVI - speed from Navi
///        - Synchrony count(SyncCnt)
///        - 0 (not change).
///        - Enable or not(isEnable) \n
///          To describe this data is whether enable or not.
///        - 0 - not avaliable
///        - not 0 - avaliable
///        - Speed is invalid at following condition when speed pulse specified, so [not avaliable] provieded
///        - Immediately after system start, the sensor data have not been received from SYS micon
///        - If it is not initialization status, certainly provide [avaliable] when Navi data specified
///        - If the status is [not avaliable], data following can not be guaranteed.
///        - Speed
///        - speed data(unit 0.01m/sec)
///
/// \~english @par Classification
///        - Public
///
/// \~english @par Type
///        - Method
///
/// \~english @see
///        - POS_GetSpeed
///
////////////////////////////////////////////////////////////////////////////////////////////
POS_RET_API POS_RegisterListenerSpeed(HANDLE hApp, PCSTR notifyName, uint8_t ucCtrlFlg, uint8_t ucDeliveryTiming,
                                      uint8_t ucGetMethod);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup tag_Positioning
/// \~english @par Brief
///        - Register heading delivery
///
/// \~english @param [in] hApp
///        - HANDLE - App Handle
/// \~english @param [in] notifyName
///        - PCSTR - Destination thread name
/// \~english @param [in] ucCtrlFlg
///        - uint8_t - Delivery control flag(register)
/// \~english @param [in] ucDeliveryTiming
///        - uint8_t - Delivery timing(change/update)
/// \~english @param [in] ucGetMethod
///        - uint8_t - Get method(GPS/Navi/Not specified)
///
/// \~english @par
///        - Delivery control flag(ucCtrlFlg)
///        - SENSOR_DELIVERY_REGIST - register
///        - Register specified heading delivery
///        - Please note that if the same data delivery has been registered for mutiple times, the data will \n
///          also be deliveried for registered mutiple times.
///        - The specified heading will be deliveried at registered time (first delivery).
///        - Delivery timing(ucDeliveryTiming)
///        - SENSOR_DELIVERY_TIMING_CHANGE - change. Specified heading will be deliveried only when it is changed.
///        - SENSOR_DELIVERY_TIMING_UPDATE - update. Specified heading will be deliveried when it is updated by \n
///          vehicle sensor.
///        - Get method(ucGetMethod)
///        - SENSOR_GET_METHOD_GPS - GPS. The heading from GPS will be deliveried.
///        - SENSOR_GET_METHOD_AUTO - Not specified. The heading will be deliveried \n
///          according to the current environment
///        - Avaliable method is descriped as following in each environment. \n
///          In the following environment, if the SENSOR_GET_METHOD_AUTO is set,treated as default \n
///          In the following environment, if the unsupported method has been specified, \n
///          POS_RET_ERROR_PARAM will be returned.
///
/// \~english @retval POS_RET_NORMAL normal finish
/// \~english @retval POS_RET_ERROR_PARAM parameter error
/// \~english @retval POS_RET_ERROR_BUFFULL the register count is full
/// \~english @retval POS_RET_ERROR_INNER internal error
/// \~english @retval POS_RET_ERROR_NOSUPPORT unsupported
/// \~english @retval POS_RET_ERROR_RESOURCE lack of resource
///
/// \~english @par Precondition
///        - The creation/initialization(FrameworkunifiedCreateDispatcherWithoutLoop and etc.) of the Dispatcher \n
///          for App are completed.
///        - Availability of positioning service is TRUE.
///
/// \~english @par changes of internal status
///        - There is no changes of internal status
///
/// \~english @par Failure condition
///        - The parameter ucDeliveryTiming is neither update(SENSOR_DELIVERY_TIMING_UPDATE) nor change \n
///          (SENSOR_DELIVERY_TIMING_CHANGE) [POS_RET_ERROR_PARAM]
///        - The parameter ucCtrlFlg is not register(SENSOR_DELIVERY_REGIST) [POS_RET_ERROR_PARAM]
///        - The parameter hApp is NULL [POS_RET_ERROR_PARAM]
///        - The parameter notifyName is NULL [POS_RET_ERROR_PARAM]
///        - The count of message in message queue is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of mutex is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of item in ProcessName-ProcessNo convert table is reach to max [POS_RET_ERROR_RESOURCE]
///        - The event is created in same process, but the count of reference is reach max [POS_RET_ERROR_INNER]
///        - The event is created in system, but the count of reference is reach to max  [POS_RET_ERROR_INNER]
///        - Memory allocate failed during the event table creation for event registering. [POS_RET_ERROR_INNER]
///        - The thread can not register in the event table. [POS_RET_ERROR_INNER]
///        - Memory allocate failed in event table during the thread table creation. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag has already \n
///          been registered. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - The event table is full during event creation. [POS_RET_ERROR_INNER]
///        - The memory for event HANDLE allocate failed during event table creation. [POS_RET_ERROR_INNER]
///        - The thread can not be registered in event table. [POS_RET_ERROR_INNER]
///        - In event table, try to allocate the memory of the thread table creation, but failed. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag has already been registered. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - Specified event ID has not been registered in table. [POS_RET_ERROR_INNER]
///        - Initialize event object failed. [POS_RET_ERROR_INNER]
///        - ProcessNo has not been registered in message control table when message transfered between processes. \n
///          [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - The destination process name size is larger than 20 characters when message transfer \n
///          between processes. [POS_RET_ERROR_INNER]
///        - The message queue name has not been registered in control table when message transfer between \n
///          processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE create failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed from internal table when message transfered between processes. \n
///          [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - Specified event HANDLE has not been registered in event HANDLE table during event waiting. \n
///          [POS_RET_ERROR_INNER]
///        - The count of thread is reach to  max in event management table during event waiting. [POS_RET_ERROR_INNER]
///        - The EV_FLAG_BIT is not set in flagID during event getting. [POS_RET_ERROR_INNER]
///        - The ID of message event queue has not been created during event getting. [POS_RET_ERROR_INNER]
///        - The flagID has not been registered during event getting. [POS_RET_ERROR_INNER]
///        - The interruption happened during event getting [POS_RET_ERROR_INNER]
///        - Whatever error happened during event getting. [POS_RET_ERROR_INNER]
///        - Getting event timeout. [POS_RET_ERROR_INNER]
///        - Error happened during event getting. [POS_RET_ERROR_INNER]
///        - The result of positioning service is SENSOR_RET_ERROR_PARAM. [POS_RET_ERROR_PARAM]
///        - The result of positioning service is SENSOR_RET_ERROR_BUFFULL. [POS_RET_ERROR_BUFFULL]
///        - The result of positioning service is SENSOR_RET_ERROR_RESOURCE. [POS_RET_ERROR_RESOURCE]
///        - The result of positioning service is not SENSOR_RET_ERROR_PARAM and SENSOR_RET_ERROR_BUFFULL \n
///          and SENSOR_RET_ERROR_RESOURCE. [POS_RET_ERROR_INNER]
///
/// \~english @par Detail
///        - Call this API to register heading delivery.
///          This API will finish when get the return value.
///
/// \~english @par
///          Please note the following points when use this API.
///        - Duplication registering
///        - The same destination thread name has already been registered
///        - The registered delivery data updated and normal return.(first delivery)
///        - To one delivery destination, the same data will not be duplication deliveried at same timing.
///        - After call this API, if the delivery destination thread name is changed, please call this API again.
///
/// \~english @par
///           Notification of message
///        - After registered successfully, vehicle sensor will send system API message with following format. \n
///          Command ID : @ref CID_POSIF_REGISTER_LISTENER_HEADING \n
///           message structure
/// \~english @code
///   typedef struct {
///     SENSORMOTION_HEADINGINFO_DAT  data;  /* message data */
///   } SENSORMOTION_MSG_HEADINGINFO;
/// @endcode
///           message data structure
/// \~english @code
///   typedef struct {
///   uint8_t   getMethod;    /* get method */
///   uint8_t   SyncCnt;      /* sync count */
///   uint8_t   isEnable;     /* enable or not */
///   uint8_t   posSts;       /* position status */
///   uint8_t   Reserve1[2];  /* Reserve */
///   uint16_t  Heading;      /* heading(unit:0.01degree) */
///   uint8_t   Reserve2[2];  /* Reserve */
///   } SENSORMOTION_HEADINGINFO_DAT;
/// @endcode
///        - Get method(getMethod)
///        - SENSOR_GET_METHOD_GPS - Heading from GPS
///        - SENSOR_GET_METHOD_NAVI - Heading from Navi
///        - Synchrony count(SyncCnt)
///        - Count for position data synchronous \n
///          When delivery altitude and heading data, position data can be synchronized by this count. \n
///          But the data of different method can not be synchronized by this count.\n
///          example 1: [longitude and latitude from GPS] and [heading from GPS] can be synchronized by the count. \n
///          example 2: [longitude and latitude from GPS] and [longitude and latitude from Navi] can not be \n
///          synchronized by the count. \n
///          Caution: The sensor count in sensor data delivery is another data.
///        - Enable or not(isEnable) \n
///          To describe this data is whether enable or not.
///        - 0 - not avaliable
///        - not 0 - avaliable
///        - Heading is invalid at following condition when GPS data specified, so [not avaliable] provieded \n
///        - Immediately after system start, GPS unit has not received current location data and GPS unit status \n
///          is not positioning fix
///        - If it is not initialization status, certainly provide [avaliable] when Navi data specified
///        - If the status is [not avaliable], data following can not be guaranteed.
///        - Position status(posSts)
///        - Bit0 : GPS data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_GSP)
///        - Bit1 : DGPS data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_DGPS)
///        - Bit2 : DR data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_DR)
///        - Bit3 : MapMatching data used result(1:used, 0:not used, definition of \n
///          maskbit:POS_LOC_INFO_USE_MAPMATCHING)
///        - Heading
///
/// \~english @par Classification
///        - Public
///
/// \~english @par Type
///        - Method
///
/// \~english @see
///        - POS_GetHeading
///
////////////////////////////////////////////////////////////////////////////////////////////
POS_RET_API POS_RegisterListenerHeading(HANDLE hApp, PCSTR notifyName, uint8_t ucCtrlFlg, uint8_t ucDeliveryTiming,
                                        uint8_t ucGetMethod);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup tag_Positioning
/// \~english @par Brief
///        - Get longitude and latitude information
///
/// \~english @param [in] hApp
///        - HANDLE - App Handle
/// \~english @param [out] dat
///        - SENSORLOCATION_LONLATINFO_DAT* - output pointer to longitude and latitude informaiton
/// \~english @param [in] ucGetMethod
///        - uint8_t - Get method(GPS/Navi/Not specified)
///
/// \~english @par
///        - Get method(ucGetMethod)
///        - SENSOR_GET_METHOD_GPS - GPS  The longitude and latitude from GPS will be deliveried.
///        - SENSOR_GET_METHOD_NAVI - Navi  The longitude and latitude from Navi will be deliveried.
///        - SENSOR_GET_METHOD_AUTO - Not specified  The longitude and latitude will be deliveried \n
///          according to the current environment.
///        - Avaliable method is descriped as following in each environment. \n
///          In the following environment, if the SENSOR_GET_METHOD_AUTO is set,treated as default \n
///          In the following environment, if the unsupported method has been specified, \n
///          POS_RET_ERROR_PARAM will be returned.
/// \~english @par
///        - SENSORLOCATION_LONLATINFO_DAT structure
/// \~english @code
///   typedef struct {
///   uint8_t   getMethod;  /* get method */
///   uint8_t   SyncCnt;    /* sync count */
///   uint8_t   isEnable;   /* enable or not */
///   uint8_t   posSts;     /* position status */
///   uint16_t  posAcc;     /* Position accuracy */
///   int32_t   Longitude;  /* Longitude */
///   int32_t   Latitude;   /* Latitude */
///   } SENSORLOCATION_LONLATINFO_DAT;
/// @endcode
///        - Get method(getMethod)
///        - SENSOR_GET_METHOD_GPS - longitude and latitude from GPS
///        - SENSOR_GET_METHOD_NAVI - longitude and latitude from Navi
///        - Synchrony count(SyncCnt)
///        - Count for position data synchronous\n
///          When delivery altitude and heading data, position data can be synchronized by this count. \n
///          But the data of different method can not be synchronized by this count. \n
///          example 1: [longitude and latitude from GPS] and [heading from GPS] can be synchronized by this count. \n
///          example 2: [longitude and latitude from GPS] and [longitude and latitude from Navi] can not be  \n
///          synchronized by this count. \n
///          Caution: The sensor count in sensor data delivery is another data.
///        - Enable or not(isEnable) \n
///          To describe this data is whether enable or not.
///        - 0 - not avaliable
///        - not 0 - avaliable
///        - longitude and latitude is invalid at following condition when GPS data specified, \n
///          so [not avaliable] provieded
///        - Immediately after system start, GPS unit has not received current location data and \n
///          GPS unit status is not positioning fix
///        - If it is not initialization status, certainly provide [avaliable] when Navi data specified\n
///        - If the status is [not avaliable], data following can not be guaranteed.
///        - Position status(posSts)
///        - Bit0 : GPS data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_GSP)
///        - Bit1 : DGPS data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_DGPS)
///        - Bit2 : DR data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_DR)
///        - Bit3 : MapMatching data used result(1:used, 0:not used, definition of \n
///          maskbit:POS_LOC_INFO_USE_MAPMATCHING)
///        - Position accuracy(posAcc)
///        - Detected accruray of current position:1LSB=1m
///        - Longitude : (WGS-84)(10^-7degree as 1) \n
///          East longitude is positive value and west longitude is minus value.
///        - Latitude : (WGS-84)(10^-7degree as 1)\n
///          North latitudeis positive value and south latitude is minus value.
///
/// \~english @retval POS_RET_NORMAL normal finish
/// \~english @retval POS_RET_ERROR_PARAM parameter error
/// \~english @retval POS_RET_ERROR_INNER internal error
/// \~english @retval POS_RET_ERROR_NOSUPPORT unsupported
/// \~english @retval POS_RET_ERROR_RESOURCE lack of resource
///
/// \~english @par Precondition
///        - The creation/initialization(FrameworkunifiedCreateDispatcherWithoutLoop and etc.) of the Dispatcher \n
///          for App are completed.
///        - Availability of positioning service is TRUE.
///
/// \~english @par change of internal status
///        - There is no change of internal status
///
/// \~english @par Failure condition
///        - The parameter hApp is NULL [POS_RET_ERROR_PARAM]
///        - The parameter dat is NULL [POS_RET_ERROR_PARAM]
///        - The count of message in message queue is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of mutex is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of item in ProcessName-ProcessNo convert table is reach to max [POS_RET_ERROR_RESOURCE]
///        - The event is created in same process, but the count of reference is reach to max [POS_RET_ERROR_INNER]
///        - The event is created in system, but the count of reference is reach to max  [POS_RET_ERROR_INNER]
///        - Memory allocate failed during the event table creation for event registering. [POS_RET_ERROR_INNER]
///        - The thread can not register in the event table. [POS_RET_ERROR_INNER]
///        - Memory allocate failed in event table during the thread table creation. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag has already been registered. \n
///          [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - The event table is full during event creation. [POS_RET_ERROR_INNER]
///        - The memory for event HANDLE allocate failed during event table creation. [POS_RET_ERROR_INNER]
///        - The thread can not be registered in event table. [POS_RET_ERROR_INNER]
///        - In event table, try to allocate the memory of the thread table creation, but failed. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag has already been registered. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - Specified event ID has not been registered in table. [POS_RET_ERROR_INNER]
///        - Initialize event object failed. [POS_RET_ERROR_INNER]
///        - The memory for storing semaphore control data allocate failed. [POS_RET_ERROR_INNER]
///        - Specified semaphore ID has not been registered when lock semaphore. [POS_RET_ERROR_INNER]
///        - Internal mutex HANDLE is NULL when lock mutex. [POS_RET_ERROR_INNER]
///        - Internal mutex HANDLE has not been registered in mutex table when lock mutex. [POS_RET_ERROR_INNER]
///        - The owner of specified mutex is not itself when lock mutex. [POS_RET_ERROR_INNER]
///        - Mutex has been multiple locked [POS_RET_ERROR_INNER]
///        - The HANDLE is NULL when getting usable share memory address. [POS_RET_ERROR_INNER]
///        - Can not get usable share memory address. [POS_RET_ERROR_INNER]
///        - Memory allocate failed for share memory map. [POS_RET_ERROR_INNER]
///        - Memory allocate failed for share memory management. [POS_RET_ERROR_INNER]
///        - Can not open share memory. [POS_RET_ERROR_INNER]
///        - Failed to mapping share memory. [POS_RET_ERROR_INNER]
///        - No empty field in share memory. [POS_RET_ERROR_INNER]
///        - Failed to guarantee share memory. [POS_RET_ERROR_INNER]
///        - ProcessNo has not been registered in message control table when message transfered between processes. \n
///          [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - The destination process name size is larger than 20 characters when message transfer \n
///          between processes. [POS_RET_ERROR_INNER]
///        - The message queue name has not been registered in control table when message transfer \n
///          between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE create failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed from internal table when message transfered between processes. \n
///          [POS_RET_ERROR_INNER]
///        - Message transfer failed between process. [POS_RET_ERROR_INNER]
///        - Specified event HANDLE has not been registered in event HANDLE table during event waiting. \n
///          [POS_RET_ERROR_INNER]
///        - The count of thread is reach to max in event management table during event waiting. [POS_RET_ERROR_INNER]
///        - The EV_FLAG_BIT is not set in flagID during event getting. [POS_RET_ERROR_INNER]
///        - The ID of message event queue has not been created during event getting. [POS_RET_ERROR_INNER]
///        - The flagID has not been registered during event getting. [POS_RET_ERROR_INNER]
///        - The interruption happened during event getting [POS_RET_ERROR_INNER]
///        - Whatever error happened during event getting. [POS_RET_ERROR_INNER]
///        - The HANDLE is NULL when getting usable share memory address for accessing received data. \n
///          [POS_RET_ERROR_INNER]
///        - Can not get usable share memory address for accessing received data. [POS_RET_ERROR_INNER]
///        - Memory for share memory map allocate failed for accessing received data. [POS_RET_ERROR_INNER]
///        - Memory for share memory management allocate failed for accessing received data. [POS_RET_ERROR_INNER]
///        - Can not open share memory for accessing received data. [POS_RET_ERROR_INNER]
///        - Failed to mapping share memory for accessing received data. [POS_RET_ERROR_INNER]
///        - The size of data stored in share memory is larger than the size of received data. [POS_RET_ERROR_INNER]
///        - The result of getting sensor data get is POS_RET_ERROR_RESOURCE. [POS_RET_ERROR_RESOURCE]
///        - The result of getting sensor data get is not POS_RET_ERROR_RESOURCE. [POS_RET_ERROR_INNER]
///
/// \~english @par Detail
///        - Call this API to get longitude and latitude from vehicle sensor
///
/// \~english @par Classification
///        - Public
///
/// \~english @par Type
///        - Sync
///
/// \~english @see
///        - POS_RegisterListenerLonLat
///
////////////////////////////////////////////////////////////////////////////////////////////
POS_RET_API POS_GetLonLat(HANDLE hApp, SENSORLOCATION_LONLATINFO_DAT *dat, uint8_t ucGetMethod);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup tag_Positioning
/// \~english @par Brief
///        - Get altitude data
///
/// \~english @param [in] hApp
///        - HANDLE - App Handle
/// \~english @param [out] dat
///        - SENSORLOCATION_ALTITUDEINFO_DAT* - output pointer to altitude data
/// \~english @param [in] ucGetMethod
///        - uint8_t - Get method(GPS/Not specified)
///
/// \~english @par
///        - Get method(ucGetMethod)
///        - SENSOR_GET_METHOD_GPS - GPS  The altitude from GPS will be deliveried.
///        - SENSOR_GET_METHOD_AUTO - Not specified  The altitude will be deliveried \n
///          according to the current environment
///        - Avaliable method is descriped as following in each environment. \n
///          In the following environment, if the SENSOR_GET_METHOD_AUTO is set,treated as default \n
///          In the following environment, if the unsupported method has been specified, \n
///          POS_RET_ERROR_PARAM will be returned.
/// \~english @par
///        - SENSORLOCATION_ALTITUDEINFO_DAT structure
/// \~english @code
/// typedef struct {
///   uint8_t   getMethod;  /* get method */
///   uint8_t   SyncCnt;    /* sync count */
///   uint8_t   isEnable;   /* enable or not */
///   uint8_t   Reserve[3]; /* Reserve */
///   int32_t   Altitude;   /* Altitude(unit:0.01m) */
/// } SENSORLOCATION_ALTITUDEINFO_DAT;
/// @endcode
///        - Get method(getMethod)
///        - SENSOR_GET_METHOD_GPS - altitude from GPS
///        - Synchrony count(SyncCnt)
///        - Count for position data synchronous \n
///          When delivery altitude and heading data, position data can be synchronized by this count. \n
///          But the data of different method can not be synchronized by this count. \n
///          example: [longitude and latitude from GPS] and [heading from GPS] can be synchronized by the count. \n
///          synchronized by the count. \n
///          Caution: The sensor count in sensor data delivery is another data.
///        - Enable or not(isEnable)\n
///          To describe this data is whether enable or not.
///        - 0 - not avaliable
///        - not 0 - avaliable
///        - Altitude is invalid at following condition when GPS data specified, so [not avaliable] provieded
///        - Immediately after system start, GPS unit has not received current location data and GPS unit \n
///          status is not positioning fix
///        - If the status is [not avaliable], data following can not be guaranteed.
///        - Altitude
///        - altitude data(unit 0.01m)
///
/// \~english @retval POS_RET_NORMAL normal finish
/// \~english @retval POS_RET_ERROR_PARAM parameter error
/// \~english @retval POS_RET_ERROR_INNER internal error
/// \~english @retval POS_RET_ERROR_NOSUPPORT unsupported
/// \~english @retval POS_RET_ERROR_RESOURCE lack of resource
///
/// \~english @par Precondition
///        - The creation/initialization(FrameworkunifiedCreateDispatcherWithoutLoop and etc.) of \n
///          the Dispatcher for App are completed.
///        - Availability of positioning service is TRUE.
///
/// \~english @par changes of internal status
///        - There is no changes of internal status
///
/// \~english @par Failure condition
///        - The parameter hApp is NULL [POS_RET_ERROR_PARAM]
///        - The parameter dat is NULL [POS_RET_ERROR_PARAM]
///        - The count of message in message queue is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of mutex is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of item in ProcessName-ProcessNo convert table is reach to max [POS_RET_ERROR_RESOURCE]
///        - The event is created in same process, but the count of reference is reach to max [POS_RET_ERROR_INNER]
///        - The event is created in system, but the count of reference is reach to max  [POS_RET_ERROR_INNER]
///        - Memory allocate falied during the event table creation for event registering. [POS_RET_ERROR_INNER]
///        - The thread can not register in the event table. [POS_RET_ERROR_INNER]
///        - Memory allocate failed in event table during the thread table creation. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag has already been \n
///          registered. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - The event table is full during event creation. [POS_RET_ERROR_INNER]
///        - The memory for event HANDLE allocate failed during event table creation. [POS_RET_ERROR_INNER]
///        - The thread can not be registered in event table. [POS_RET_ERROR_INNER]
///        - In event table, try to allocate the memory of the thread table creation, but failed. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag has already been registered. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - Specified event ID has not been registered in table. [POS_RET_ERROR_INNER]
///        - Initialize event object failed. [POS_RET_ERROR_INNER]
///        - The memory for storing semaphore control data allocate failed. [POS_RET_ERROR_INNER]
///        - Specified semaphore ID has not been registered when lock semaphore. [POS_RET_ERROR_INNER]
///        - Internal mutex HANDLE is NULL when lock mutex. [POS_RET_ERROR_INNER]
///        - Internal mutex HANDLE has not been registered in mutex table when lock mutex. [POS_RET_ERROR_INNER]
///        - The owner of specified mutex is not itself when lock mutex. [POS_RET_ERROR_INNER]
///        - Mutex has been multiple locked [POS_RET_ERROR_INNER]
///        - The HANDLE is NULL when getting usable share memory address. [POS_RET_ERROR_INNER]
///        - Can not get usable share memory address. [POS_RET_ERROR_INNER]
///        - Memory allocate failed for share memory map. [POS_RET_ERROR_INNER]
///        - Memory allocate failed for share memory management. [POS_RET_ERROR_INNER]
///        - Can not open share memory. [POS_RET_ERROR_INNER]
///        - Failed to mapping share memory. [POS_RET_ERROR_INNER]
///        - No empty field in share memory. [POS_RET_ERROR_INNER]
///        - Failed to guarantee share memory. [POS_RET_ERROR_INNER]
///        - ProcessNo has not been registered in message control table when message \n
///          transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - The destination process name size is larger than 20 characters when message transfer \n
///          between processes. [POS_RET_ERROR_INNER]
///        - The message queue name has not been registered in control table when message \n
///          transfer between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE create failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed from internal table when message transfered \n
///          between processes. [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - Specified event HANDLE has not been registered in event HANDLE table during \n
///          event waiting. [POS_RET_ERROR_INNER]
///        - The count of thread is reach to max in event management table during event waiting. [POS_RET_ERROR_INNER]
///        - The EV_FLAG_BIT is not set in flagID during event getting. [POS_RET_ERROR_INNER]
///        - The ID of message event queue has not been created during event getting. [POS_RET_ERROR_INNER]
///        - The flagID has not been registered during event getting. [POS_RET_ERROR_INNER]
///        - The interruption happened during event getting [POS_RET_ERROR_INNER]
///        - Whatever error happened during event getting. [POS_RET_ERROR_INNER]
///        - The HANDLE is NULL when getting usable share memory address for accessing
///          received data. [POS_RET_ERROR_INNER]
///        - Can not get usable share memory address for accessing received data. [POS_RET_ERROR_INNER]
///        - Memory for share memory map allocate failed for accessing received data. [POS_RET_ERROR_INNER]
///        - Memory for share memory management allocate failed for accessing received data. [POS_RET_ERROR_INNER]
///        - Can not open share memory for accessing received data. [POS_RET_ERROR_INNER]
///        - Failed to mapping share memory for accessing received data. [POS_RET_ERROR_INNER]
///        - The size of data stored in share memory is larger than the size of received data. [POS_RET_ERROR_INNER]
///        - The result of getting sensor data is POS_RET_ERROR_RESOURCE. [POS_RET_ERROR_RESOURCE]
///        - The result of getting sensor data is not POS_RET_ERROR_RESOURCE. [POS_RET_ERROR_INNER]
///
/// \~english @par Detail
///        - Call this API to get altitude from vehicle sensor
///
/// \~english @par Classification
///        - Public
///
/// \~english @par Type
///        - Sync
///
/// \~english @see
///        - POS_RegisterListenerAltitude
////////////////////////////////////////////////////////////////////////////////////////////
POS_RET_API POS_GetAltitude(HANDLE hApp, SENSORLOCATION_ALTITUDEINFO_DAT *dat, uint8_t ucGetMethod);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup tag_Positioning
/// \~english @par Brief
///        - Get speed data
///
/// \~english @param [in] hApp
///        - HANDLE - App Handle
/// \~english @param [out] dat
///        - SENSORMOTION_SPEEDINFO_DAT* - output buffer pointer to store speed data
/// \~english @param [in] ucGetMethod
///        - uint8_t - Get method(POS/Navi/Not specified)
///
/// \~english @par
///        - Get method(ucGetMethod)
///        - SENSOR_GET_METHOD_POS - The speed calculated in positioning based on speed pulse will be deliveried.
///        - SENSOR_GET_METHOD_NAVI - Navi  The speed from Navi will be deliveried.
///        - SENSOR_GET_METHOD_AUTO - Not specified  The speed will be deliveried according to current \n
///          environment.
///        - Avaliable method is descriped as following in each environment. \n
///          In the following environment, if the SENSOR_GET_METHOD_AUTO is set,treated as default \n
///          In the following environment, if the unsupported method has been specified, \n
///          POS_RET_ERROR_PARAM will be returned.
///
/// \~english @par
///        - SENSORMOTION_SPEEDINFO_DAT structure
/// \~english @code
///   typedef struct {
///   uint8_t   getMethod;    /* get method */
///   uint8_t   SyncCnt;      /* sync count */
///   uint8_t   isEnable;     /* enable or not */
///   uint8_t   Reserve1[3];  /* Reserve */
///   uint16_t  Speed;        /* speed(unit:0.01m/sec) */
///   uint8_t   Reserve2[2];  /* Reserve */
///   } SENSORMOTION_SPEEDINFO_DAT;
/// @endcode
///        - Get method(getMethod)
///        - SENSOR_GET_METHOD_POS - The speed calculated in positioning based on speed pulse will be deliveried.
///        - Sync count(SyncCnt)
///        - 0.
///        - Enable or not(isEnable) \n
///          To describe this data is whether enable or not.
///        - 0 - not avaliable
///        - not 0 - avaliable
///        - Speed is invalid at following condition when speed pulse specified, so [not avaliable] provieded
///        - Immediately after system start, the sensor data have not been received from SYS micon
///        - If it is not initialization status, certainly provide [avaliable] when Navi data specified
///        - If the status is [not avaliable], data following can not be guaranteed.
///        - Speed
///        - speed data(unit 0.01m/sec)
///
/// \~english @retval POS_RET_NORMAL normal finish
/// \~english @retval POS_RET_ERROR_PARAM parameter error
/// \~english @retval POS_RET_ERROR_INNER internal error
/// \~english @retval POS_RET_ERROR_NOSUPPORT unsupported
/// \~english @retval POS_RET_ERROR_RESOURCE lack of resource
///
/// \~english @par Precondition
///        - The creation/initialization(FrameworkunifiedCreateDispatcherWithoutLoop and etc.) \n
///          of the dispatcher for App are completed.
///        - Availability of positioning service is TRUE.
///
/// \~english @par changes of internal status
///        - There is no changes of internal status
///
/// \~english @par Failure condition
///        - The parameter hApp is NULL [POS_RET_ERROR_PARAM]
///        - The parameter dat is NULL [POS_RET_ERROR_PARAM]
///        - The count of message in message queue is reach to  max [POS_RET_ERROR_RESOURCE]
///        - The count of mutex is reach to  max [POS_RET_ERROR_RESOURCE]
///        - The count of item in ProcessName-ProcessNo convert table is reach to  max [POS_RET_ERROR_RESOURCE]
///        - The event is created in same process, but the count of reference is reach to max [POS_RET_ERROR_INNER]
///        - The event is created in system, but the count of reference is reach to max  [POS_RET_ERROR_INNER]
///        - Memory allocate falied when the event table creation that for event registering. [POS_RET_ERROR_INNER]
///        - The thread can not register in the event table. [POS_RET_ERROR_INNER]
///        - Memory allocate failed in event table when the thread table creation. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag has already been \n
///          registered. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - The event table is full when event creation. [POS_RET_ERROR_INNER]
///        - The memory for event HANDLE allocate failed when event table creation. [POS_RET_ERROR_INNER]
///        - The thread can not be registered in event table. [POS_RET_ERROR_INNER]
///        - In event table, to allocate the memory of the thread table creation, but failed. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag has already been registered. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - Specified event ID has not been registered in table. [POS_RET_ERROR_INNER]
///        - Initialize event object failed. [POS_RET_ERROR_INNER]
///        - The memory for storing semaphore control data allocate failed. [POS_RET_ERROR_INNER]
///        - Specified semaphore ID has not been registered when semaphore lock. [POS_RET_ERROR_INNER]
///        - Internal mutex HANDLE is NULL when mutex lock. [POS_RET_ERROR_INNER]
///        - Internal mutex HANDLE has not been registered in mutex table when mutex lock. [POS_RET_ERROR_INNER]
///        - The owner of specified mutex is not itself when mutex lock. [POS_RET_ERROR_INNER]
///        - Mutex has been multiple locked [POS_RET_ERROR_INNER]
///        - The HANDLE is NULL when getting usable share memory address. [POS_RET_ERROR_INNER]
///        - Can not get usable share memory address. [POS_RET_ERROR_INNER]
///        - Memory allocate failed for share memory map. [POS_RET_ERROR_INNER]
///        - Memory allocate failed for share memory management. [POS_RET_ERROR_INNER]
///        - Can not open share memory. [POS_RET_ERROR_INNER]
///        - Failed to mapping share memory. [POS_RET_ERROR_INNER]
///        - No empty field in share memory. [POS_RET_ERROR_INNER]
///        - Failed to guarantee share memory. [POS_RET_ERROR_INNER]
///        - ProcessNo has not been registered in message control table when message transfered \n
///          between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - The destination process name size is larger than 20 characters when message transfer \n
///          between processes. [POS_RET_ERROR_INNER]
///        - The message queue name has not been registered in control table when message transfer \n
///          between processes [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE create failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed from internal table when message transfered between \n
///          processes. [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - Specified event HANDLE has not been registered in event HANDLE table during event \n
///          waiting. [POS_RET_ERROR_INNER]
///        - The count of thread is reach to max in event management table during event waiting. [POS_RET_ERROR_INNER]
///        - The EV_FLAG_BIT is not set in flagID during event getting. [POS_RET_ERROR_INNER]
///        - The ID of message event queue has not been created during event getting. [POS_RET_ERROR_INNER]
///        - The flagID has not been registered during event getting. [POS_RET_ERROR_INNER]
///        - The interruption happened during event getting [POS_RET_ERROR_INNER]
///        - Whatever error happened during event getting. [POS_RET_ERROR_INNER]
///        - The HANDLE is NULL when getting usable share memory address for accessing \n
///          received data. [POS_RET_ERROR_INNER]
///        - Can not get usable share memory address for accessing received data. [POS_RET_ERROR_INNER]
///        - Memory for share memory map allocate failed for accessing received data. [POS_RET_ERROR_INNER]
///        - Memory for share memory management allocate failed for accessing received data. [POS_RET_ERROR_INNER]
///        - Can not open share memory for accessing received data. [POS_RET_ERROR_INNER]
///        - Failed to mapping share memory for accessing received data. [POS_RET_ERROR_INNER]
///        - The size of data stored in share memory is larger than the size of received data. [POS_RET_ERROR_INNER]
///        - The result of getting sensor data is POS_RET_ERROR_RESOURCE. [POS_RET_ERROR_RESOURCE]
///        - The result of getting sensor data is not POS_RET_ERROR_RESOURCE. [POS_RET_ERROR_INNER]
///
/// \~english @par Detail
///        - Call this API to get speed from vehicle sensor.
///
/// \~english @par Classification
///        - Public
///
/// \~english @par Type
///        - Sync
///
/// \~english @see
///        - POS_RegisterListenerSpeed
///
////////////////////////////////////////////////////////////////////////////////////////////
POS_RET_API POS_GetSpeed(HANDLE hApp, SENSORMOTION_SPEEDINFO_DAT *dat, uint8_t ucGetMethod);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup tag_Positioning
/// \~english @par Brief
///        - Get heading data
///
/// \~english @param [in] hApp
///        - HANDLE - App Handle
/// \~english @param [out] dat
///        - SENSORMOTION_HEADINGINFO_DAT* - output buffer pointer to store heading data
/// \~english @param [in] ucGetMethod
///        - uint8_t - Get method(GPS/Navi/Not specified)
///
/// \~english @par
///        - Get method(ucGetMethod)
///        - SENSOR_GET_METHOD_GPS - GPS  The heading from GPS will be deliveried.
///        - SENSOR_GET_METHOD_NAVI - Navi  The heading from Navi will be deliveried.
///        - SENSOR_GET_METHOD_AUTO - Not specified  The heading which most suitable in current environment \n
///        - Avaliable method is descriped as following in each environment. \n
///          In corresponding environment, the SENSOR_GET_METHOD_AUTO is set as default. \n
///          In corresponding environment, if the unsupported method has been specified, \n
///          POS_RET_ERROR_PARAM will be returned.
/// \~english @par
///        - SENSORMOTION_HEADINGINFO_DAT structure
/// \~english @code
///   typedef struct {
///   uint8_t   getMethod;    /* get method */
///   uint8_t   SyncCnt;      /* sync count */
///   uint8_t   isEnable;     /* enable or not */
///   uint8_t   posSts;       /* position status */
///   uint8_t   Reserve1[2];  /* Reserve */
///   uint16_t  Heading;      /* heading(unit:0.01degree) */
///   uint8_t   Reserve2[2];  /* Reserve */
///   } SENSORMOTION_HEADINGINFO_DAT;
/// @endcode
///        - Get method(getMethod)
///        - SENSOR_GET_METHOD_GPS - Heading from GPS
///        - SENSOR_GET_METHOD_NAVI - Heading from Navi
///        - Synchrony count(SyncCnt)
///        - Count for position data synchronous \n
///          When delivery altitude and heading data, position data can be synchronized by this count. \n
///          But the data of different method can not be synchronized by this count. \n
///          example 1: [longitude and latitude from GPS] and [heading from GPS] can be synchronized by the count. \n
///          example 2: [longitude and latitude from GPS] and [longitude and latitude from Navi] can not be \n
///          synchronized by the count. \n
///          Caution: The sensor count in sensor data delivery is another data.
///        - Enable or not(isEnable) \n
///          To describe this data is whether enable or not.
///        - 0 - not avaliable
///        - not 0 - avaliable
///        - Heading is invalid at following condition when GPS data specified, so [not avaliable] provieded
///        - Immediately after system start, GPS unit has not received current location data and GPS unit \n
///          status is not positioning fix
///        - If it is not initialization status, certainly provide [avaliable] when Navi data specified
///        - If the status is [not avaliable], data following can not be guaranteed.
///        - Position status(posSts)
///        - Bit0 : GPS data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_GSP)
///        - Bit1 : DGPS data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_DGPS)
///        - Bit2 : DR data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_DR)
///        - Bit3 : MapMatching data use result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_MAPMATCHING)
///        - Heading
///
/// \~english @retval POS_RET_NORMAL normal finish
/// \~english @retval POS_RET_ERROR_PARAM parameter error
/// \~english @retval POS_RET_ERROR_INNER internal error
/// \~english @retval POS_RET_ERROR_NOSUPPORT unsupported
/// \~english @retval POS_RET_ERROR_RESOURCE lack of resource
///
/// \~english @par Precondition
///        - The creation/initialization(FrameworkunifiedCreateDispatcherWithoutLoop and etc.) of the Dispatcher
///        - for App are completed.
///        - Availability of positioning service is TRUE.
///
/// \~english @par changes of internal status
///        - There is no changes of internal status
///
/// \~english @par Failure condition
///        - The parameter hApp is NULL [POS_RET_ERROR_PARAM]
///        - The parameter dat is NULL [POS_RET_ERROR_PARAM]
///        - The count of message in message queue is reach to  max [POS_RET_ERROR_RESOURCE]
///        - The count of mutex is reach to  max [POS_RET_ERROR_RESOURCE]
///        - The count of item in ProcessName-ProcessNo convert table is reach to max [POS_RET_ERROR_RESOURCE]
///        - The event is created in same process, but the count of reference is reach to max [POS_RET_ERROR_INNER]
///        - The event is created in system, but the count of reference is reach to max  [POS_RET_ERROR_INNER]
///        - Memory allocate falied during the event table creation for event registering. [POS_RET_ERROR_INNER]
///        - The thread can not register in the event table. [POS_RET_ERROR_INNER]
///        - Memory allocate failed in event table during the thread table creation. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag has already been \n
///          registered. [POS_RET_ERROR_INNER]
///        - After register the thread table in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - The event table is full during event creation. [POS_RET_ERROR_INNER]
///        - The memory for event HANDLE allocate failed during event table creation. [POS_RET_ERROR_INNER]
///        - The thread can not be registered in event table. [POS_RET_ERROR_INNER]
///        - In event table, try to allocate the memory of the thread table creation, but failed. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag has already been registered. [POS_RET_ERROR_INNER]
///        - After register the thread in event table, the event flag register failed. [POS_RET_ERROR_INNER]
///        - Specified event ID has not been registered in table. [POS_RET_ERROR_INNER]
///        - Initialize event object failed. [POS_RET_ERROR_INNER]
///        - The memory for storing semaphore control data allocate failed. [POS_RET_ERROR_INNER]
///        - Specified semaphore ID has not been registered when semaphore lock. [POS_RET_ERROR_INNER]
///        - Internal mutex HANDLE is NULL when mutex lock. [POS_RET_ERROR_INNER]
///        - Internal mutex HANDLE has not been registered in mutex table when mutex lock. [POS_RET_ERROR_INNER]
///        - The owner of specified mutex is not itself when mutex lock. [POS_RET_ERROR_INNER]
///        - Mutex has been multiple locked [POS_RET_ERROR_INNER]
///        - The HANDLE is NULL when getting usable share memory address. [POS_RET_ERROR_INNER]
///        - Can not get usable share memory address. [POS_RET_ERROR_INNER]
///        - Memory allocate failed for share memory map. [POS_RET_ERROR_INNER]
///        - Memory allocate failed for share memory management. [POS_RET_ERROR_INNER]
///        - Can not open share memory. [POS_RET_ERROR_INNER]
///        - Failed to mapping share memory. [POS_RET_ERROR_INNER]
///        - No empty field in share memory. [POS_RET_ERROR_INNER]
///        - Failed to guarantee share memory. [POS_RET_ERROR_INNER]
///        - ProcessNo has not been registered in message control table when message transfered \n
///          between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - The destination process name size is larger than 20 characters when message transfer \n
///          between processes. [POS_RET_ERROR_INNER]
///        - The message queue name has not been registered in control table when message transfer \n
///          between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE create failed when message transfered between processes. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed from internal table when message transfered between \n
///          processes. [POS_RET_ERROR_INNER]
///        - Message transfer failed between processes. [POS_RET_ERROR_INNER]
///        - Specified event HANDLE has not been registered in event HANDLE table \n
///          during event waiting[POS_RET_ERROR_INNER]
///        - The count of thread is reach to  max in event management table during event waiting. [POS_RET_ERROR_INNER]
///        - The EV_FLAG_BIT is not set in flagID during event getting. [POS_RET_ERROR_INNER]
///        - The ID of message event queue has not been created during event getting. [POS_RET_ERROR_INNER]
///        - The flagID has not been registered during event getting. [POS_RET_ERROR_INNER]
///        - The interruption happened during event getting [POS_RET_ERROR_INNER]
///        - Whatever error happened during event getting. [POS_RET_ERROR_INNER]
///        - The HANDLE is NULL when getting usable share memory address for accessing received \n
///          data. [POS_RET_ERROR_INNER]
///        - Can not get usable share memory address for accessing received data. [POS_RET_ERROR_INNER]
///        - Memory for share memory map allocate failed for accessing received data. [POS_RET_ERROR_INNER]
///        - Memory for share memory management allocate failed for accessing received data. [POS_RET_ERROR_INNER]
///        - Can not open share memory for accessing received data. [POS_RET_ERROR_INNER]
///        - Failed to mapping share memory for accessing received data. [POS_RET_ERROR_INNER]
///        - The size of data stored in share memory is larger than the size of received data. [POS_RET_ERROR_INNER]
///        - The result of getting sensor data is POS_RET_ERROR_RESOURCE. [POS_RET_ERROR_RESOURCE]
///        - The result of getting sensor data is not POS_RET_ERROR_RESOURCE. [POS_RET_ERROR_INNER]
///
/// \~english @par Detail
///        - Call this API to get heading from vehicle sensor.
///
/// \~english @par Classification
///        - Public
///
/// \~english @par Type
///        - Sync
///
/// \~english @see
///        - POS_RegisterListenerHeading
///
////////////////////////////////////////////////////////////////////////////////////////////
POS_RET_API POS_GetHeading(HANDLE hApp, SENSORMOTION_HEADINGINFO_DAT *dat, uint8_t ucGetMethod);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup tag_Positioning
/// \~english @par Brief
///        - Set speed information
///
/// \~english @param [in] hApp
///        - HANDLE - App Handle
/// \~english @param [in] navispeed
///        - uint16_t - speed data[unit: 1.0km/h]
///
/// \~english @retval POS_RET_NORMAL normal finish
/// \~english @retval POS_RET_ERROR_PARAM parameter error
/// \~english @retval POS_RET_ERROR_INNER internal error
/// \~english @retval POS_RET_ERROR_NOSUPPORT unsupported
/// \~english @retval POS_RET_ERROR_RESOURCE lack of resource
///
/// \~english @par Precondition
///        - The creation/initialization(FrameworkunifiedCreateDispatcherWithoutLoop and etc.) of \n
///          the Dispatcher for App are completed.
///        - Availability of positioning service is TRUE.
///
/// \~english @par changes of internal status
///        - There is no changes of internal status
///
/// \~english @par Failure condition
///        - The parameter hApp is NULL [POS_RET_ERROR_PARAM]
///        - The data size is larger than specified value(POS_MSG_INFO_DSIZE) [POS_RET_ERROR_RESOURCE]
///        - The count of message in message queue is reach to  max [POS_RET_ERROR_RESOURCE]
///        - The count of mutex is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of item in ProcessName-ProcessNo convert table is reach to max [POS_RET_ERROR_RESOURCE]
///        - The message queue name has not been registered in control table. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE create failed. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed from internal table. [POS_RET_ERROR_INNER]
///        - Speed data setting message transfer failed. [POS_RET_ERROR_INNER]
///
/// \~english @par Detail
///        - Call this API to set speed to vehicle sensor. \n
///          This API will finish when get the return value. \n
///          The speed set by this API is saved in positioning as the speed calculated by Navi.
///
/// \~english @par
///        - Please note the following points when use this API.
///        - This API is only called by Navi proxy.
///
/// \~english @par Classification
///        - Public
///
/// \~english @par Type
///        - Fire and Forget
///
/// \~english @see
///        - None
///
////////////////////////////////////////////////////////////////////////////////////////////
POS_RET_API POS_SetSpeedInfo(HANDLE hApp, uint16_t navispeed);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup tag_Positioning
/// \~english @par Brief
///        - Set location information
///
/// \~english @param [in] hApp
///        - HANDLE - App Handle
/// \~english @param [in] pstPosData
///        - POS_POSDATA * - pointer to location information
///
/// \~english @par
///        - POS_POSDATA structure
/// \~english @code
/// typedef struct
/// {
///   int8_t    status;       /* data status */
///   uint8_t   posSts;       /* position status */
///   uint16_t  posAcc;       /* Position accuracy 1LSB=1m */
///   int32_t   Longitude;    /* Longitude(unit:1/128sec) */
///   int32_t   Latitude;     /* Latitude(unit:1/128sec) */
///   int32_t   altitude;     /* altitude (unit:0.01m) */
///   int16_t   heading;      /* heading (unit:1degree) */
///   uint8_t   reserved[2];  /* reserve */
///   } POS_POSDATA;
/// @endcode
///
/// \~english @par
///        - data status(status) \n
///          Do not set the invalid data(do not update data).
///        - data valid/invalid status
///        - Bit0 : latitude(1:valid, 0:invalid, definition of maskbit:POS_LOC_INFO_LAT)
///        - Bit1 : longitude(1:valid, 0:invalid, definition of maskbit:POS_LOC_INFO_LON)
///        - Bit2 : altitude (1:valid, 0:invalid, definition of maskbit:POS_LOC_INFO_ALT)
///        - Bit3 : heading (1:valid, 0:invalid, definition of maskbit:POS_LOC_INFO_HEAD)
///        - Bit4~7 : reserve
///        - Position status(posSts)
///        - Bit0 : GPS data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_GSP)
///        - Bit1 : DGPS data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_DGPS)
///        - Bit2 : DR data used result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_DR)
///        - Bit3 : MapMatching data use result(1:used, 0:not used, definition of maskbit:POS_LOC_INFO_USE_MAPMATCHING)
///        - Bit4~7 : reserve
///        - Position accuracy(posAcc)
///        - Detected accruray of current position:1LSB=1m
///        - longitude
///        - data range: -180deg ~ +180deg
///        - +: east longitude -: west longitude
///        - latitude
///        - data range:-90deg ~ +90deg
///        - +: north latitude -: south latitude
///        - heading
///        - data range:-179deg ~ +180deg
///        - Based on north, west(counter-clockwise) is +, east(clockwise) is -
///
/// \~english @retval POS_RET_NORMAL normal finish
/// \~english @retval POS_RET_ERROR_PARAM parameter error
/// \~english @retval POS_RET_ERROR_INNER internal error
/// \~english @retval POS_RET_ERROR_NOSUPPORT unsupported
/// \~english @retval POS_RET_ERROR_RESOURCE lack of resource
///
/// \~english @par Precondition
///        - The creation/initialization(FrameworkunifiedCreateDispatcherWithoutLoop and etc.) of the Dispatcher \n
///          for App are completed.
///        - Availability of positioning service is TRUE.
///
/// \~english @par change of internal status
///        - There is no change of internal status
///
/// \~english @par Failure condition
///        - The parameter pstPosData is NULL [POS_RET_ERROR_PARAM]
///        - The parameter hApp is NULL [POS_RET_ERROR_PARAM]
///        - The data status in parameter pstPosData is invalid value(0). [POS_RET_ERROR_PARAM]
///        - The data status in parameter pstPosData is abnormal value(<15). [POS_RET_ERROR_PARAM]
///        - The data size is larger than specified value(POS_MSG_INFO_DSIZE) [POS_RET_ERROR_RESOURCE]
///        - The count of message in message queue is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of mutex is reach to max [POS_RET_ERROR_RESOURCE]
///        - The count of item in ProcessName-ProcessNo convert table is reach to max [POS_RET_ERROR_RESOURCE]
///        - The message queue name has not been registered in control table. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE create failed. [POS_RET_ERROR_INNER]
///        - Message transfer HANDLE get failed from internal table. [POS_RET_ERROR_INNER]
///        - Location data setting message transfer failed. [POS_RET_ERROR_INNER]
///
/// \~english @par Detail
///        - Call this API to set location to vehicle sensor. \n
///          This API will finish when get the return value. \n
///          The location set by this API is saved in positioning as the location calculated by Navi. \n
///          If one of longitude and latitude is valid, the another data will be used as valid data no \n
///          matter what status it is. \n
///          If one of longitude and latitude is valid, the position accuracy data will be used as valid data.
///
/// \~english @par
///        - Please note the following points when use this API.
///        - This API is only called by Navi proxy.
///
/// \~english @par Classification
///        - Public
///
/// \~english @par Type
///        - Fire and Forget
///
/// \~english @see
///        - None
///
////////////////////////////////////////////////////////////////////////////////////////////
POS_RET_API POS_SetLocationInfo(HANDLE hApp, POS_POSDATA* pstPosData);

#ifdef __cplusplus
}
#endif
/** @}*/  // end of positioning
/** @}*/  // end of vehicle_service
/** @}*/  // end of BaseSystem
#endif  // POSITIONING_CLIENT_INCLUDE_VEHICLE_SERVICE_POS_COMMON_API_H_