aboutsummaryrefslogtreecommitdiff
path: root/src/ble/profile/server/lns.c
blob: e06b7cf6a6c219225d99b02d5abb5940b95f7247 (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
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
/*********************************************************************************************************
*               Copyright(c) 2017, Realtek Semiconductor Corporation. All rights reserved.
**********************************************************************************************************
* @file     lns.c
* @brief    Location and Navigation Service source file.
* @details  Interfaces to access Location and Navigation Service.
* @author
* @date     2017-09-22
* @version  v0.1
*********************************************************************************************************
*/

#include "stdint.h"
#include "gatt.h"
#include <string.h>
#include "trace.h"
#include "lns.h"


/********************************************************************************************************
* local static variables defined here, only used in this source file.
********************************************************************************************************/

#define LNS_POSITION_QUALITY_CHAR_SUPPORT
#define LNS_LN_CONTROL_POINT_CHAR_SUPPORT
#define LNS_LN_NAVIGATION_CHAR_SUPPORT

#define LNS_CP_PARA_NAME_OF_ROUTE_MAX_LEN                   10

#define LNS_LN_FEATURE_VALUE_INDEX                          2//read
#define LNS_LN_LOCATION_AND_SPEED_VALUE_INDEX               4//notify
#define LNS_LN_POSITION_QUALITY_VALUE_INDEX                 7//read
#define LNS_LN_CP_VALUE_INDEX                               9 //write, indicate
#define LNS_LN_NAVIGATION_VALUE_INDEX                       12//notify

#define LNS_LN_LOCATION_AND_SPEED_CCCD_INDEX                5
#define LNS_LN_CP_CCCD_INDEX                                10
#define LNS_LN_NAVIGATION_CCCD_INDEX                        13

#define GATT_UUID_SERVICE_LOCATION_AND_NAVIGATION           0x1819
#define GATT_UUID_CHAR_LNS_LOCATION_AND_SPEED               0x2A67
#define GATT_UUID_CHAR_LNS_NAVIGATION                       0x2A68
#define GATT_UUID_CHAR_LNS_POSITION_QUALITY                 0x2A69
#define GATT_UUID_CHAR_LNS_LN_FEATURE                       0x2A6A
#define GATT_UUID_CHAR_LNS_LN_CP                            0x2A6B



#define LN_CP_RSPCODE_RESERVED                              0x00
#define LN_CP_RSPCODE_SUCCESS                               0x01
#define LN_CP_RSPCODE_OPCODE_UNSUPPORT                      0x02
#define LN_CP_RSPCODE_INVALID_PARAMETER                     0x03
#define LN_CP_RSPCODE_OPERATION_FAILED                      0x04


#define LN_CTL_PNT_OPERATE_ACTIVE(x)                     \
    ( (x == LN_CP_OPCODE_SET_CUMULATIVE_VALUE)  || \
      (x == LN_CP_OPCODE_MASK_LOCATION_AND_SPEED_CHAR_CONTENT)  || \
      (x == LN_CP_OPCODE_NAVIGATION_CONTROL) || \
      (x == LN_CP_OPCODE_REQUEST_NUMBER_OF_ROUTES) || \
      (x == LN_CP_OPCODE_REQUEST_NAME_OF_ROUTE) || \
      (x == LN_CP_OPCODE_SELECT_ROUTE) || \
      (x == LN_CP_OPCODE_SET_FIX_RATE) || \
      (x == LN_CP_OPCODE_SET_ELEVATION) || \
      (x == LN_CP_OPCODE_RESPONSE_CODE) )

#define LNS_POSITION_AND_QUALITY_VALUE_MAX_LEN  16
#define LNS_LOCATION_AND_SPEED_VALUE_MAX_LEN    28
#define LNS_NAVIGATION_VALUE_MAX_LEN            19

uint32_t lns_ln_feature_support = 0;

T_LNS_NOTIFY_INDICATE_FLAG lns_notify_indicate_flag = {0};
T_LNS_CONTROL_POINT lns_ctl_pnt = {0};

T_POSITION_QUALITY_VALUE lns_position_quality_value = {0};
uint8_t lns_pq_value_for_read_cfm[LNS_POSITION_AND_QUALITY_VALUE_MAX_LEN] = {0};
uint8_t lns_pq_value_length_for_read_cfm = 0;

LOCATION_AND_SPEED_VALUE lns_location_and_speed_value = {0};
T_NAVIGATION_VALUE lns_navigation_value = {0};
uint16_t lns_cp_number_of_route = 0;
uint8_t lns_cp_name_of_route[LNS_CP_PARA_NAME_OF_ROUTE_MAX_LEN] = {0};
uint8_t lns_cp_name_of_route_len = 0;

/**<  Function pointer used to send event to application from location and navigation profile. */

static P_FUN_SERVER_GENERAL_CB pfn_lns_app_cb = NULL;


/**< @brief  profile/service definition.  */
static const T_ATTRIB_APPL lns_attr_tbl[] =
{
    /*----------------- Health Temperature Service -------------------*/
    /* <<Primary Service>>, .. 0,*/
    {
        (ATTRIB_FLAG_VALUE_INCL | ATTRIB_FLAG_LE),   /* wFlags     */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_PRIMARY_SERVICE),
            HI_WORD(GATT_UUID_PRIMARY_SERVICE),
            LO_WORD(GATT_UUID_SERVICE_LOCATION_AND_NAVIGATION),              /* service UUID */
            HI_WORD(GATT_UUID_SERVICE_LOCATION_AND_NAVIGATION)
        },
        UUID_16BIT_SIZE,                            /* bValueLen     */
        NULL,                                       /* pValueContext */
        GATT_PERM_READ                              /* wPermissions  */
    },

    /* <<Characteristic>>, .. 1, LN Feature*/
    {
        ATTRIB_FLAG_VALUE_INCL,                     /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHARACTERISTIC),
            HI_WORD(GATT_UUID_CHARACTERISTIC),
            GATT_CHAR_PROP_READ                     /* characteristic properties */
            /* characteristic UUID not needed here, is UUID of next attrib. */
        },
        1,                                          /* bValueLen */
        NULL,
        GATT_PERM_READ                              /* wPermissions */
    },
    /* Temperature Measurement value 2,*/
    {
        ATTRIB_FLAG_VALUE_APPL,                     /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHAR_LNS_LN_FEATURE),
            HI_WORD(GATT_UUID_CHAR_LNS_LN_FEATURE)
        },
        0,                                          /* bValueLen */
        NULL,
        GATT_PERM_READ                              /* wPermissions */
    },

    /* <<Characteristic>>, ..Location and Speed */
    {
        ATTRIB_FLAG_VALUE_INCL,                     /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHARACTERISTIC),
            HI_WORD(GATT_UUID_CHARACTERISTIC),
            GATT_CHAR_PROP_NOTIFY                     /* characteristic properties */
            /* characteristic UUID not needed here, is UUID of next attrib. */
        },
        1,                                          /* bValueLen */
        NULL,
        GATT_PERM_READ                              /* wPermissions */
    },
    {
        ATTRIB_FLAG_VALUE_APPL,                     /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHAR_LNS_LOCATION_AND_SPEED),
            HI_WORD(GATT_UUID_CHAR_LNS_LOCATION_AND_SPEED)
        },
        0,                                          /* bValueLen */
        NULL,
        GATT_PERM_READ                              /* wPermissions */
    },
    /* client characteristic configuration */
    {
        ATTRIB_FLAG_VALUE_INCL | ATTRIB_FLAG_CCCD_APPL,                   /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHAR_CLIENT_CONFIG),
            HI_WORD(GATT_UUID_CHAR_CLIENT_CONFIG),
            /* NOTE: this value has an instantiation for each client, a write to */
            /* this attribute does not modify this default value:                */
            LO_WORD(GATT_CLIENT_CHAR_CONFIG_DEFAULT), /* client char. config. bit field */
            HI_WORD(GATT_CLIENT_CHAR_CONFIG_DEFAULT)
        },
        2,                                          /* bValueLen */
        NULL,
        (GATT_PERM_READ | GATT_PERM_WRITE)          /* wPermissions */
    },

#ifdef LNS_POSITION_QUALITY_CHAR_SUPPORT
    /* <<Characteristic>>, .. Position Quality*/
    {
        ATTRIB_FLAG_VALUE_INCL,                     /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHARACTERISTIC),
            HI_WORD(GATT_UUID_CHARACTERISTIC),
            GATT_CHAR_PROP_READ                     /* characteristic properties */
            /* characteristic UUID not needed here, is UUID of next attrib. */
        },
        1,                                          /* bValueLen */
        NULL,
        GATT_PERM_READ                              /* wPermissions */
    },
    {
        ATTRIB_FLAG_VALUE_APPL,                     /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHAR_LNS_POSITION_QUALITY),
            HI_WORD(GATT_UUID_CHAR_LNS_POSITION_QUALITY)
        },
        0,                                          /* bValueLen */
        NULL,
        GATT_PERM_READ                              /* wPermissions */
    },
#endif

#ifdef LNS_LN_CONTROL_POINT_CHAR_SUPPORT
    /* <<Characteristic>>, .. LN Control Point*/
    {
        ATTRIB_FLAG_VALUE_INCL,                     /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHARACTERISTIC),
            HI_WORD(GATT_UUID_CHARACTERISTIC),
            (GATT_CHAR_PROP_WRITE | GATT_CHAR_PROP_INDICATE) /* characteristic properties */
            /* characteristic UUID not needed here, is UUID of next attrib. */
        },
        1,                                          /* bValueLen */
        NULL,
        GATT_PERM_READ                              /* wPermissions */
    },
    /* Measurement Interval value*/
    {
        ATTRIB_FLAG_VALUE_APPL,                     /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHAR_LNS_LN_CP),
            HI_WORD(GATT_UUID_CHAR_LNS_LN_CP)
        },
        0,                                          /* bValueLen */
        NULL,
        GATT_PERM_WRITE/* wPermissions */
    },
    /* client characteristic configuration */
    {
        ATTRIB_FLAG_VALUE_INCL | ATTRIB_FLAG_CCCD_APPL,                   /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHAR_CLIENT_CONFIG),
            HI_WORD(GATT_UUID_CHAR_CLIENT_CONFIG),
            /* NOTE: this value has an instantiation for each client, a write to */
            /* this attribute does not modify this default value:                */
            LO_WORD(GATT_CLIENT_CHAR_CONFIG_DEFAULT), /* client char. config. bit field */
            HI_WORD(GATT_CLIENT_CHAR_CONFIG_DEFAULT)
        },
        2,                                          /* bValueLen */
        NULL,
        (GATT_PERM_READ | GATT_PERM_WRITE)          /* wPermissions */
    },
#endif

#ifdef LNS_LN_NAVIGATION_CHAR_SUPPORT
    /* <<Characteristic>>, .. Navigation*/
    {
        ATTRIB_FLAG_VALUE_INCL,                     /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHARACTERISTIC),
            HI_WORD(GATT_UUID_CHARACTERISTIC),
            GATT_CHAR_PROP_NOTIFY/* characteristic properties */
            /* characteristic UUID not needed here, is UUID of next attrib. */
        },
        1,                                          /* bValueLen */
        NULL,
        GATT_PERM_READ                              /* wPermissions */
    },
    {
        ATTRIB_FLAG_VALUE_APPL,                     /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHAR_LNS_NAVIGATION),
            HI_WORD(GATT_UUID_CHAR_LNS_NAVIGATION)
        },
        0,                                          /* bValueLen */
        NULL,
        GATT_PERM_NOTIF_IND_AUTHEN_REQ/* wPermissions */
    },
    /* client characteristic configuration */
    {
        ATTRIB_FLAG_VALUE_INCL | ATTRIB_FLAG_CCCD_APPL,                   /* wFlags */
        {                                           /* bTypeValue */
            LO_WORD(GATT_UUID_CHAR_CLIENT_CONFIG),
            HI_WORD(GATT_UUID_CHAR_CLIENT_CONFIG),
            LO_WORD(GATT_CLIENT_CHAR_CONFIG_DEFAULT), /* client char. config. bit field */
            HI_WORD(GATT_CLIENT_CHAR_CONFIG_DEFAULT)
        },
        2,                                          /* bValueLen */
        NULL,
        (GATT_PERM_READ | GATT_PERM_WRITE)          /* wPermissions */
    }
#endif

};

/**< @brief  Health Temperature service size definition.  */
const uint16_t lns_attr_tbl_size = sizeof(lns_attr_tbl);

/**
 * @brief       Set a Location And Navigation service parameter.
 *
 *              NOTE: You can call this function with a Location And Navigation service parameter type and it will set the
 *                      Location And Navigation service parameter.  Location And Navigation service parameters are defined
 *                      in @ref T_LNS_PARAM_TYPE.
 *                      If the "len" field sets to the size of a "uint16_t" ,the
 *                      "p_value" field must point to a data with type of "uint16_t".
 *
 * @param[in]   param_type   Location And Navigation service parameter type: @ref T_LNS_PARAM_TYPE
 * @param[in]   len       Length of data to write
 * @param[in]   p_value Pointer to data to write.  This is dependent on
 *                      the parameter type and WILL be cast to the appropriate
 *                      data type (For example: if data type of param is uint16_t, p_value will be cast to
 *                      pointer of uint16_t).
 *
 * @return Operation result.
 * @retval true Operation success.
 * @retval false Operation failure.
 *
 * <b>Example usage</b>
 * \code{.c}
    void test(void)
    {
        T_LOCATION_AND_SPEED_VALUE_FLAG flag;
        flag.instantaneous_speed_present = 1;
        flag.total_distance_present = 1;
        flag.location_present = 1;
        flag.elevation_present = 1;
        flag.heading_present = 1;
        flag.rolling_time_present = 1;
        flag.utc_time_present = 1;
        flag.position_status = 1;
        flag.speed_and_distance_format = 1;
        flag.elevation_source = 1;
        flag.heading_source = 1;
        flag.rfu = 0;

        lns_set_parameter(LNS_LAS_PARAM_INC_FLAG, 2, &flag);
    }
 * \endcode
 */
bool lns_set_parameter(T_LNS_PARAM_TYPE param_type, uint8_t len, void *p_value)
{
    bool ret = true;

    switch (param_type)
    {
    default:
        {
            ret = false;
            PROFILE_PRINT_ERROR0("lns_set_parameter failed\n");
        }
        break;

    case LNS_PARAM_LN_FEATURE_SUPPORT:
        {
            if (len != sizeof(uint32_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_ln_feature_support, p_value, len);
            }
        }
        break;

    //Location And Speed Value
    case LNS_LAS_PARAM_INC_FLAG:
        {
            if (len != sizeof(uint16_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_location_and_speed_value.flag, p_value, len);
            }
        }
        break;

    case LNS_LAS_PARAM_INSTANTANEOUS_SPEED:
        {
            if (len != sizeof(uint16_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_location_and_speed_value.instantaneous_speed, p_value, len);

            }
        }
        break;

    case LNS_LAS_PARAM_TOTAL_DISTANCE:
        {
            if (len != 3)
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_location_and_speed_value.total_distance, p_value, len);

            }
        }
        break;

    case LNS_LAS_PARAM_LOCATION_LATITUDE:
        {
            if (len != 3)
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_location_and_speed_value.location_latitude, p_value, len);

            }
        }
        break;

    case LNS_LAS_PARAM_LOCATION_LONGITUDE:
        {
            if (len != 3)
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_location_and_speed_value.location_latitude, p_value, len);

            }
        }
        break;

    case LNS_LAS_PARAM_ELEVATION:
        {
            if (len != 3)
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_location_and_speed_value.elevation, p_value, len);

            }
        }
        break;

    case LNS_LAS_PARAM_HEADING:
        {
            if (len != sizeof(uint16_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_location_and_speed_value.heading, p_value, len);

            }
        }
        break;

    case LNS_LAS_PARAM_ROLLING_TIME:
        {
            if (len != sizeof(uint8_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_location_and_speed_value.rolling_time, p_value, len);

            }
        }
        break;

    case LNS_LAS_PARAM_UTC_TIME:
        {
            if (len != 7)
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_location_and_speed_value.utc_time, p_value, len);

            }
        }
        break;

    case LNS_LAS_PARAM_POSITION_STATUS:
        {
            lns_location_and_speed_value.flag.position_status =  *(uint8_t *)p_value;
        }
        break;

    case LNS_LAS_PARAM_SPEED_AND_DISTANCE_FORMAT:
        {
            lns_location_and_speed_value.flag.speed_and_distance_format =  *(uint8_t *)p_value;
        }
        break;

    case LNS_LAS_PARAM_ELEVATION_SOURCE:
        {
            lns_location_and_speed_value.flag.elevation_source =  *(uint8_t *)p_value;
        }
        break;

    case LNS_LAS_PARAM_HEADING_SOURCE:
        {
            lns_location_and_speed_value.flag.heading_source =  *(uint8_t *)p_value;
        }
        break;

    //Navigation value
    case LNS_NAVIGATION_PARAM_INC_FLAG:
        {
            if (len != sizeof(uint16_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_navigation_value.flag, p_value, len);
            }
        }
        break;

    case LNS_NAVIGATION_PARAM_BEARING:
        {
            if (len != sizeof(uint16_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_navigation_value.bearing, p_value, len);

            }
        }
        break;

    case LNS_NAVIGATION_PARAM_HEADING:
        {
            if (len != sizeof(uint16_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_navigation_value.bearing, p_value, len);

            }
        }
        break;

    case LNS_NAVIGATION_PARAM_REMAINING_DISTANCE:
        {
            if (len != 3)
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_navigation_value.reamining_distance, p_value, len);

            }
        }
        break;

    case LNS_NAVIGATION_PARAM_REMAINING_VERTICAL_DISTANCE:
        {
            if (len != 3)
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_navigation_value.reamining_vertical_distance, p_value, len);

            }
        }
        break;

    case LNS_NAVIGATION_PARAM_ESTIMATED_TIME_OF_ARRIVAL:
        {
            if (len != 7)
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_navigation_value.estimated_time_of_arrival, p_value, len);

            }
        }
        break;

    case LNS_NAVIGATION_PARAM_POSITION_STATUS:
        {
            lns_navigation_value.flag.position_status =  *(uint8_t *)p_value;
        }
        break;
    case LNS_NAVIGATION_PARAM_HEADING_SOURCE:
        {
            lns_navigation_value.flag.heading_source =  *(uint8_t *)p_value;
        }
        break;

    case LNS_NAVIGATION_PARAM_NAVIGATION_INDICATOR_TYPE:
        {
            lns_navigation_value.flag.navigation_indicator_type =  *(uint8_t *)p_value;
        }
        break;

    case LNS_NAVIGATION_PARAM_WAYPOINT_REACHED:
        {
            lns_navigation_value.flag.waypoint_reached =  *(uint8_t *)p_value;
        }
        break;

    case LNS_NAVIGATION_PARAM_DESTINATION_REACHED:
        {
            lns_navigation_value.flag.destination_reached =  *(uint8_t *)p_value;
        }
        break;

    case LNS_PQ_PARAM_INC_FLAG:
        {
            if (len != sizeof(uint16_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_position_quality_value.flag, p_value, len);
            }
        }
        break;

    case LNS_PQ_PARAM_NUMBER_OF_BEACONS_IN_SOLUTION:
        {
            if (len != sizeof(uint8_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_position_quality_value.number_of_beacons_in_solution, p_value, len);
            }
        }
        break;

    case LNS_PQ_PARAM_NUMBER_OF_BEACONS_IN_VIEW:
        {
            if (len != sizeof(uint8_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_position_quality_value.number_of_beacons_in_view, p_value, len);
            }
        }
        break;


    case LNS_PQ_PARAM_TIME_TO_FIRST_FIX:
        {
            if (len != sizeof(uint16_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_position_quality_value.time_to_first_fix, p_value, len);
            }
        }
        break;

    case LNS_PQ_PARAM_EHPE:
        {
            if (len != sizeof(uint32_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_position_quality_value.ehpe, p_value, len);
            }
        }
        break;

    case LNS_PQ_PARAM_EVPE:
        {
            if (len != sizeof(uint32_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_position_quality_value.evpe, p_value, len);
            }
        }
        break;
    case LNS_PQ_PARAM_HDOP:
        {
            if (len != sizeof(uint8_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_position_quality_value.hdop, p_value, len);
            }
        }
        break;

    case LNS_PQ_PARAM_VDOP:
        {
            if (len != sizeof(uint8_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_position_quality_value.vdop, p_value, len);
            }
        }
        break;

    case LNS_CP_PARA_NUMBER_OF_ROUTE:
        {
            if (len != sizeof(uint16_t))
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_cp_number_of_route, p_value, len);
            }
        }
        break;

    case LNS_CP_PARA_NAME_OF_ROUTE:
        {
            if (len > LNS_CP_PARA_NAME_OF_ROUTE_MAX_LEN)
            {
                ret = false;
            }
            else
            {
                memcpy(&lns_cp_name_of_route, p_value, len);
                lns_cp_name_of_route_len = len;
            }
        }
        break;
    case LNS_PARAM_CTL_PNT_PROG_CLR:
        {
            if (len != 0)
            {
                ret = false;
            }
            else
            {
                lns_ctl_pnt.value[0] = LN_CP_OPCODE_RESERVED;
            }
        }
        break;

    }

    return ret;
}

void lns_format_pq_value_for_read()
{
    uint8_t cur_offset = 0;

    memcpy(&lns_pq_value_for_read_cfm[cur_offset], &lns_position_quality_value.flag, 2);
    cur_offset += 2;

    if (lns_position_quality_value.flag.number_of_beacons_in_solution_present)
    {
        memcpy(&lns_pq_value_for_read_cfm[cur_offset],
               &lns_position_quality_value.number_of_beacons_in_solution, 1);
        cur_offset += 1;
    }

    if (lns_position_quality_value.flag.number_of_beacons_in_view_present)
    {
        memcpy(&lns_pq_value_for_read_cfm[cur_offset],
               &lns_position_quality_value.number_of_beacons_in_view, 1);
        cur_offset += 1;
    }

    if (lns_position_quality_value.flag.time_to_first_fix_present)
    {
        memcpy(&lns_pq_value_for_read_cfm[cur_offset], &lns_position_quality_value.time_to_first_fix, 2);
        cur_offset += 2;
    }

    if (lns_position_quality_value.flag.ehpe_present)
    {
        memcpy(&lns_pq_value_for_read_cfm[cur_offset], &lns_position_quality_value.ehpe, 4);
        cur_offset += 4;
    }

    if (lns_position_quality_value.flag.evpe_present)
    {
        memcpy(&lns_pq_value_for_read_cfm[cur_offset], &lns_position_quality_value.evpe, 4);
        cur_offset += 4;
    }

    if (lns_position_quality_value.flag.hdop_present)
    {
        memcpy(&lns_pq_value_for_read_cfm[cur_offset], &lns_position_quality_value.hdop, 1);
        cur_offset += 1;
    }

    if (lns_position_quality_value.flag.vdop_present)
    {
        memcpy(&lns_pq_value_for_read_cfm[cur_offset],
               &lns_position_quality_value.vdop, 1);
        cur_offset += 1;
    }

    lns_pq_value_length_for_read_cfm = cur_offset;

}

uint8_t lns_get_fisrt_value_offset_to_notify()
{

    uint8_t cur_offset = 2;

    if (lns_location_and_speed_value.flag.instantaneous_speed_present)
    {
        cur_offset += 2;
    }

    if (lns_location_and_speed_value.flag.total_distance_present)
    {
        cur_offset += 3;
    }

    if (lns_location_and_speed_value.flag.location_present)
    {
        cur_offset += 4;
        cur_offset += 4;
    }

    if (lns_location_and_speed_value.flag.elevation_present)
    {
        cur_offset += 3;
    }

    if (lns_location_and_speed_value.flag.heading_present)
    {
        cur_offset += 2;
    }


    if (lns_location_and_speed_value.flag.rolling_time_present)
    {
        cur_offset += 1;
    }

    if (cur_offset > 20)
    {
        return cur_offset - 1;
    }


    if (lns_location_and_speed_value.flag.utc_time_present)
    {
        cur_offset += 7;
    }

    if (cur_offset > 20)
    {
        return cur_offset - 7;
    }

    return cur_offset;

}

/**
 * @brief       Send location and speed value notification data.
 *              Application shall call @ref lns_set_parameter to set location and speed value first,
 *              and the call this api to send the notication value.
 *
 * @param[in]   conn_id  Connection id.
 * @param[in]   service_id  Service id.
 *
 * @return service id @ref T_SERVER_ID.
 *
 * <b>Example usage</b>
 * \code{.c}
    void test(void)
    {
        bool op_result;
        T_LOCATION_AND_SPEED_VALUE_FLAG flag;
        flag.instantaneous_speed_present = 1;
        flag.total_distance_present = 1;
        flag.location_present = 1;
        flag.elevation_present = 1;
        flag.heading_present = 1;
        flag.rolling_time_present = 1;
        flag.utc_time_present = 1;
        flag.position_status = 1;
        flag.speed_and_distance_format = 1;
        flag.elevation_source = 1;
        flag.heading_source = 1;
        flag.rfu = 0;

        lns_set_parameter(LNS_LAS_PARAM_INC_FLAG, 2, &flag);

        op_result = lns_location_and_speed_value_notify(p_parse_value->dw_param[0], lns_id);
    }
 * \endcode
 */
bool lns_location_and_speed_value_notify(uint8_t conn_id, T_SERVER_ID service_id)
{
    bool ret = true;

    T_LOCATION_AND_SPEED_VALUE_FLAG flag = {0};
    uint8_t location_and_speed_value[20];


    uint8_t cur_offset = 2;
    uint8_t first_notify_value_offset = lns_get_fisrt_value_offset_to_notify();

    if (lns_location_and_speed_value.flag.instantaneous_speed_present)
    {
        flag.instantaneous_speed_present = 1;
        memcpy(&location_and_speed_value[cur_offset], &lns_location_and_speed_value.instantaneous_speed, 2);
        cur_offset += 2;
    }

    if (lns_location_and_speed_value.flag.total_distance_present)
    {
        flag.total_distance_present = 1;
        memcpy(&location_and_speed_value[cur_offset], &lns_location_and_speed_value.total_distance, 3);
        cur_offset += 3;
    }

    if (lns_location_and_speed_value.flag.location_present)
    {
        flag.location_present = 1;
        memcpy(&location_and_speed_value[cur_offset], &lns_location_and_speed_value.location_latitude, 4);
        cur_offset += 4;
        memcpy(&location_and_speed_value[cur_offset], &lns_location_and_speed_value.location_longitude, 4);
        cur_offset += 4;
    }

    if (lns_location_and_speed_value.flag.elevation_present)
    {
        flag.elevation_present = 1;
        memcpy(&location_and_speed_value[cur_offset], &lns_location_and_speed_value.elevation, 3);
        cur_offset += 3;
    }

    if (lns_location_and_speed_value.flag.heading_present)
    {
        flag.heading_present = 1;
        memcpy(&location_and_speed_value[cur_offset],
               &lns_location_and_speed_value.heading, 2);
        cur_offset += 2;
    }

    if (cur_offset == first_notify_value_offset)
    {
        //copy flag
        memcpy(&location_and_speed_value[0], &flag, 2);
        //send first notification here
        server_send_data(conn_id, service_id, LNS_LN_LOCATION_AND_SPEED_VALUE_INDEX,
                         location_and_speed_value, cur_offset, GATT_PDU_TYPE_NOTIFICATION);

        //send remain data
        memset(&flag, 0, 2);
        cur_offset = 2;
        if (lns_location_and_speed_value.flag.rolling_time_present)
        {
            memcpy(&location_and_speed_value[cur_offset],
                   &lns_location_and_speed_value.rolling_time, 1);
            flag.rolling_time_present = 1;
            cur_offset += 1;
        }

        if (lns_location_and_speed_value.flag.utc_time_present)
        {

            memcpy(&location_and_speed_value[cur_offset],
                   &lns_location_and_speed_value.utc_time, 7);
            flag.utc_time_present = 1;
            cur_offset += 7;
        }
        memcpy(&location_and_speed_value[0], &flag, 2);
        //send second notification
        server_send_data(conn_id, service_id, LNS_LN_LOCATION_AND_SPEED_VALUE_INDEX,
                         location_and_speed_value, cur_offset, GATT_PDU_TYPE_NOTIFICATION);

        return ret;
    }

    if (lns_location_and_speed_value.flag.rolling_time_present)
    {
        flag.rolling_time_present = 1;
        memcpy(&location_and_speed_value[cur_offset],
               &lns_location_and_speed_value.rolling_time, 1);
        cur_offset += 1;
    }

    if (cur_offset == first_notify_value_offset)
    {
        //copy flag
        memcpy(&location_and_speed_value[0], &flag, 2);
        //send first notification here
        server_send_data(conn_id, service_id, LNS_LN_LOCATION_AND_SPEED_VALUE_INDEX,
                         location_and_speed_value, cur_offset, GATT_PDU_TYPE_NOTIFICATION);


        //send remain data
        memset(&flag, 0, 2);
        cur_offset = 2;
        if (lns_location_and_speed_value.flag.utc_time_present)
        {
            memcpy(&location_and_speed_value[cur_offset],
                   &lns_location_and_speed_value.utc_time, 7);
            flag.utc_time_present = 1;
            cur_offset += 7;
        }
        memcpy(&location_and_speed_value[0], &lns_location_and_speed_value.flag, 2);
        //send second notification
        server_send_data(conn_id, service_id, LNS_LN_LOCATION_AND_SPEED_VALUE_INDEX,
                         location_and_speed_value, cur_offset, GATT_PDU_TYPE_NOTIFICATION);

        return ret;
    }

    if (lns_location_and_speed_value.flag.utc_time_present)
    {
        if (cur_offset <= 13)
        {
            memcpy(&location_and_speed_value[cur_offset],
                   &lns_location_and_speed_value.utc_time, 7);
            flag.utc_time_present = 1;
            cur_offset += 7;
        }
        else if ((cur_offset > 13) && (cur_offset <= 19))
        {
            memcpy(&location_and_speed_value[cur_offset],
                   &lns_location_and_speed_value.utc_time, (20 - cur_offset));
            flag.utc_time_present = 1;
            cur_offset = 20;
        }
    }
    memcpy(&location_and_speed_value[0], &lns_location_and_speed_value.flag, 2);
    //send nortification
    server_send_data(conn_id, service_id, LNS_LN_LOCATION_AND_SPEED_VALUE_INDEX,
                     location_and_speed_value, cur_offset, GATT_PDU_TYPE_NOTIFICATION);

    return ret;
}

/**
 * @brief       Send navigation value notification data.
 *              Application shall call @ref lns_set_parameter to set navigation value first,
 *              and the call this api to send the notication value.
 *
 * @param[in]   conn_id  Connection id.
 * @param[in]   service_id  Service id.
 *
 * @return service id @ref T_SERVER_ID.
 *
 * <b>Example usage</b>
 * \code{.c}
    void test(void)
    {
        bool op_result;

        T_NAVIGATION_VALUE_FLAG flag;
        flag.remaining_distance_present = 1;
        flag.remaining_vertical_distance_present = 1;
        flag.estimated_time_of_arrival_present = 1;
        flag.position_status = 1;
        flag.heading_source = 1;
        flag.navigation_indicator_type = 1;
        flag.waypoint_reached = 1;
        flag.destination_reached = 1;
        flag.rfus = 0;

        lns_set_parameter(LNS_NAVIGATION_PARAM_INC_FLAG, 2, &flag);

        op_result = lns_navigation_value_notify(p_parse_value->dw_param[0], lns_id);

    }
 * \endcode
 */
bool lns_navigation_value_notify(uint8_t conn_id, T_SERVER_ID service_id)
{
    uint8_t navigation_value[LNS_NAVIGATION_VALUE_MAX_LEN];
    uint8_t iCurOffset = 0;

    memcpy(&navigation_value[iCurOffset], &lns_navigation_value.flag, 2);
    iCurOffset += 2;
    memcpy(&navigation_value[iCurOffset], &lns_navigation_value.bearing, 2);
    iCurOffset += 2;
    memcpy(&navigation_value[iCurOffset], &lns_navigation_value.heading, 2);
    iCurOffset += 2;

    if (lns_navigation_value.flag.remaining_distance_present)
    {
        memcpy(&navigation_value[iCurOffset], &lns_navigation_value.reamining_distance, 3);
        iCurOffset += 3;
    }

    if (lns_navigation_value.flag.remaining_vertical_distance_present)
    {
        memcpy(&navigation_value[iCurOffset], &lns_navigation_value.reamining_vertical_distance, 3);
        iCurOffset += 3;
    }

    if (lns_navigation_value.flag.estimated_time_of_arrival_present)
    {
        memcpy(&navigation_value[iCurOffset], &lns_navigation_value.estimated_time_of_arrival, 7);
        iCurOffset += 7;
    }

    PROFILE_PRINT_INFO0("lns_navigation_value_notify");
    return server_send_data(conn_id, service_id, LNS_LN_NAVIGATION_VALUE_INDEX, navigation_value,
                            iCurOffset, GATT_PDU_TYPE_NOTIFICATION);
}

bool lns_ln_ctl_pnt_value_indicate(uint8_t conn_id, T_SERVER_ID service_id, uint8_t op_code,
                                   uint8_t rsp_code,
                                   uint8_t *p_parameter, uint8_t para_len)
{
    uint16_t attrib_index = LNS_LN_CP_VALUE_INDEX;

    uint8_t *p_data;
    uint16_t data_len;

    lns_ctl_pnt.value[0] = LN_CP_OPCODE_RESPONSE_CODE;
    lns_ctl_pnt.value[1] = op_code;    /* Control Point request opcode. */
    lns_ctl_pnt.value[2] = rsp_code;

    if (p_parameter != NULL && para_len != 0)
    {
        memcpy(&lns_ctl_pnt.value[3], p_parameter, para_len);
    }

    lns_ctl_pnt.cur_length = 3 * sizeof(uint8_t) + para_len;


    p_data = lns_ctl_pnt.value;
    data_len = lns_ctl_pnt.cur_length;

    // send indication to client
    return server_send_data(conn_id, service_id, attrib_index, p_data, data_len,
                            GATT_PDU_TYPE_INDICATION);
}




static void lns_ctl_pnt_set_cumulative_value(uint8_t conn_id, T_SERVER_ID service_id,
                                             uint8_t rsp_code)
{
    uint8_t              op_code = LN_CP_OPCODE_SET_CUMULATIVE_VALUE;
    lns_ln_ctl_pnt_value_indicate(conn_id, service_id, op_code, rsp_code, NULL, 0);
}

static void lns_ctl_pnt_mask_location_speed_char_content(uint8_t conn_id, T_SERVER_ID service_id,
                                                         uint8_t rsp_code)
{
    uint8_t              op_code = LN_CP_OPCODE_MASK_LOCATION_AND_SPEED_CHAR_CONTENT;
    lns_ln_ctl_pnt_value_indicate(conn_id, service_id, op_code, rsp_code, NULL, 0);
}

static void lns_ctl_pnt_navigation_control(uint8_t conn_id, T_SERVER_ID service_id,
                                           uint8_t rsp_code)
{
    uint8_t              op_code = LN_CP_OPCODE_NAVIGATION_CONTROL;
    lns_ln_ctl_pnt_value_indicate(conn_id, service_id, op_code, rsp_code, NULL, 0);
}

static void lns_ctl_pnt_request_number_of_routes(uint8_t conn_id, T_SERVER_ID service_id,
                                                 uint8_t rsp_code, uint16_t number_of_route)
{
    uint8_t              op_code = LN_CP_OPCODE_REQUEST_NUMBER_OF_ROUTES;
    lns_ln_ctl_pnt_value_indicate(conn_id, service_id, op_code, rsp_code, (uint8_t *)&number_of_route,
                                  2);
}

static void lns_ctl_pnt_request_name_of_route(uint8_t conn_id, T_SERVER_ID service_id,
                                              uint8_t rsp_code, uint8_t *pNameOfRoute, uint8_t len)
{
    uint8_t              op_code = LN_CP_OPCODE_REQUEST_NAME_OF_ROUTE;
    lns_ln_ctl_pnt_value_indicate(conn_id, service_id, op_code, rsp_code, pNameOfRoute, len);
}

static void lns_ctl_pnt_select_route(uint8_t conn_id, T_SERVER_ID service_id, uint8_t rsp_code)
{
    uint8_t              op_code = LN_CP_OPCODE_SELECT_ROUTE;
    lns_ln_ctl_pnt_value_indicate(conn_id, service_id, op_code, rsp_code, NULL, 0);
}

static void lns_ctl_pnt_set_fix_rate(uint8_t conn_id, T_SERVER_ID service_id, uint8_t rsp_code)
{
    uint8_t              op_code = LN_CP_OPCODE_SET_FIX_RATE;
    lns_ln_ctl_pnt_value_indicate(conn_id, service_id, op_code, rsp_code, NULL, 0);
}

static void lns_ctl_pnt_set_elevation(uint8_t conn_id, T_SERVER_ID service_id, uint8_t rsp_code)
{
    uint8_t              op_code = LN_CP_OPCODE_SET_ELEVATION;
    lns_ln_ctl_pnt_value_indicate(conn_id, service_id, op_code, rsp_code, NULL, 0);
}

static uint8_t lns_handle_ctl_pnt_proc_2(uint8_t service_id, uint16_t write_length,
                                         uint8_t *value_ptr)
{
    T_LNS_CALLBACK_DATA callback_data;
    uint8_t resp_code  = LN_CP_RSPCODE_SUCCESS;
    uint16_t parameter_length = 0;
    memcpy(lns_ctl_pnt.value, value_ptr, write_length);
    if (write_length >= 1)
    {
        parameter_length = write_length - 1;
    }

    PROFILE_PRINT_INFO1("lns_handle_ctl_pnt_proc request: OpCode=0x%x", lns_ctl_pnt.value[0]);

    callback_data.msg_type = SERVICE_CALLBACK_TYPE_WRITE_CHAR_VALUE;
    callback_data.msg_data.write.opcode = (T_LN_CP_OPCODE)lns_ctl_pnt.value[0];

    switch (lns_ctl_pnt.value[0])
    {
    case LN_CP_OPCODE_NAVIGATION_CONTROL:
        {
            if (parameter_length == 1)
            {
                memcpy(&callback_data.msg_data.write.cp_parameter.navigation_control,
                       &lns_ctl_pnt.value[1], 1);
            }
            else
            {
                resp_code = LN_CP_RSPCODE_INVALID_PARAMETER;
            }
        }

        break;

    case LN_CP_OPCODE_SET_CUMULATIVE_VALUE:
        {
            if (parameter_length == 3)
            {
                memcpy(&callback_data.msg_data.write.cp_parameter.cumulative_total_distance,
                       &lns_ctl_pnt.value[1], 3);
            }
            else
            {
                resp_code = LN_CP_RSPCODE_INVALID_PARAMETER;
            }
        }
        break;

    case LN_CP_OPCODE_MASK_LOCATION_AND_SPEED_CHAR_CONTENT:
        {
            if (parameter_length == 2)
            {
                memcpy(&callback_data.msg_data.write.cp_parameter.mask_location_and_speed,
                       &lns_ctl_pnt.value[1], 2);
            }
            else
            {
                resp_code = LN_CP_RSPCODE_INVALID_PARAMETER;
            }
        }
        break;

    case LN_CP_OPCODE_REQUEST_NUMBER_OF_ROUTES:
        {
            //no parameter
        }
        break;
    case LN_CP_OPCODE_REQUEST_NAME_OF_ROUTE:
        {
            if (parameter_length == 2)
            {
                memcpy(&callback_data.msg_data.write.cp_parameter.number_of_desired_route,
                       &lns_ctl_pnt.value[1], 1);
            }
            else
            {
                resp_code = LN_CP_RSPCODE_INVALID_PARAMETER;
            }
        }
        break;

    case LN_CP_OPCODE_SELECT_ROUTE:
        {
            if (parameter_length == 2)
            {
                memcpy(&callback_data.msg_data.write.cp_parameter.select_route_desired_route_number,
                       &lns_ctl_pnt.value[1], 2);
            }
            else
            {
                resp_code = LN_CP_RSPCODE_INVALID_PARAMETER;
            }
        }
        break;

    case LN_CP_OPCODE_SET_FIX_RATE:
        {
            if (parameter_length == 1)
            {
                memcpy(&callback_data.msg_data.write.cp_parameter.set_fix_rate,
                       &lns_ctl_pnt.value[1], 1);
            }
            else
            {
                resp_code = LN_CP_RSPCODE_INVALID_PARAMETER;
            }
        }
        break;

    case LN_CP_OPCODE_SET_ELEVATION:
        {
            if (parameter_length == 3)
            {
                memcpy(&callback_data.msg_data.write.cp_parameter.set_elevation,
                       &lns_ctl_pnt.value[1], 3);
            }
            else
            {
                resp_code = LN_CP_RSPCODE_INVALID_PARAMETER;
            }
        }
        break;

    default:
        {
            resp_code = LN_CP_RSPCODE_OPCODE_UNSUPPORT;
        }
        break;
    }

    if (resp_code == LN_CP_RSPCODE_SUCCESS)
    {
        pfn_lns_app_cb(service_id, (void *)&callback_data);
    }
    return resp_code;
}

/**
 * @brief  handle control point write (request).
 *
 * @param[in] conn_id  Connection id.
 * @param[in] service_id  Service id.
 * @param[in] write_length      write request data length.
 * @param[in] value_ptr         pointer to write request data.
 * @return none
 * @retval  void
*/
static T_APP_RESULT lns_handle_ctl_pnt_proc(uint8_t conn_id, T_SERVER_ID service_id,
                                            uint16_t write_length, uint8_t *p_value)
{
    T_APP_RESULT  cause  = APP_RESULT_SUCCESS;
    memcpy(lns_ctl_pnt.value, p_value, write_length);

    PROFILE_PRINT_INFO1("lns_handle_ctl_pnt_proc request: op_code=0x%x", lns_ctl_pnt.value[0]);

    switch (lns_ctl_pnt.value[0])
    {
    case LN_CP_OPCODE_NAVIGATION_CONTROL:
        {
            if (!lns_notify_indicate_flag.navigation_enable)
            {
                cause = APP_RESULT_CCCD_IMPROPERLY_CONFIGURED;
            }
        }
        break;

    default:
        {
        }
        break;
    }
    return cause;
}

static void  lns_ctl_pnt_write_ind_post_proc(uint8_t conn_id, T_SERVER_ID service_id,
                                             uint16_t attrib_index, uint16_t write_length, uint8_t *p_value)
{
    uint8_t resp_code = LN_CP_RSPCODE_SUCCESS;

    bool error = false;
    memcpy(lns_ctl_pnt.value, p_value, write_length);
    lns_ctl_pnt.cur_length = write_length;

    PROFILE_PRINT_INFO1("lns_ctl_pnt_write_ind_post_proc: OpCode=0x%x", lns_ctl_pnt.value[0]);

    resp_code = lns_handle_ctl_pnt_proc_2(service_id, write_length, p_value);

    switch (lns_ctl_pnt.value[0])
    {
    default:
        {
            error = true;
        }
        break;

    case LN_CP_OPCODE_SET_CUMULATIVE_VALUE:
        {
            lns_ctl_pnt_set_cumulative_value(conn_id, service_id, resp_code);
        }
        break;

    case LN_CP_OPCODE_MASK_LOCATION_AND_SPEED_CHAR_CONTENT:
        {
            lns_ctl_pnt_mask_location_speed_char_content(conn_id, service_id, resp_code);
        }
        break;

    case LN_CP_OPCODE_NAVIGATION_CONTROL:
        {
            lns_ctl_pnt_navigation_control(conn_id, service_id, resp_code);
        }
        break;

    case LN_CP_OPCODE_REQUEST_NUMBER_OF_ROUTES:
        {
            lns_ctl_pnt_request_number_of_routes(conn_id, service_id, resp_code, lns_cp_number_of_route);
        }
        break;
    case LN_CP_OPCODE_REQUEST_NAME_OF_ROUTE:
        {
            lns_ctl_pnt_request_name_of_route(conn_id, service_id, resp_code, lns_cp_name_of_route,
                                              lns_cp_name_of_route_len);
        }
        break;

    case LN_CP_OPCODE_SELECT_ROUTE:
        {
            lns_ctl_pnt_select_route(conn_id, service_id, resp_code);
        }
        break;

    case LN_CP_OPCODE_SET_FIX_RATE:
        {
            lns_ctl_pnt_set_fix_rate(conn_id, service_id, resp_code);
        }
        break;

    case LN_CP_OPCODE_SET_ELEVATION:
        {
            lns_ctl_pnt_set_elevation(conn_id, service_id, resp_code);
        }
        break;
    }

    if (error)
    {
        lns_ln_ctl_pnt_value_indicate(conn_id, service_id, lns_ctl_pnt.value[0],
                                      LN_CP_RSPCODE_OPCODE_UNSUPPORT, NULL, 0);
    }

}

/**
 * @brief read characteristic data from service.
 *
 * @param[in] conn_id           Connection id.
 * @param[in] service_id        Service id.
 * @param[in] attrib_index          Attribute index of getting characteristic data.
 * @param[in] offset                Used for Blob Read.
 * @param[in] p_length            length of getting characteristic data.
 * @param[in] pp_value            data got from service.
 * @return Profile procedure result
*/
T_APP_RESULT lns_attr_read_cb(uint8_t conn_id, T_SERVER_ID service_id, uint16_t attrib_index,
                              uint16_t offset, uint16_t *p_length, uint8_t **pp_value)
{
    T_APP_RESULT cause = APP_RESULT_SUCCESS;

    PROFILE_PRINT_INFO2("lns_attr_read_cb iAttribIndex = %d iOffset %x", attrib_index, offset);

    *p_length = 0;
    lns_ctl_pnt.value[0] = LN_CP_OPCODE_RESERVED;//////

    switch (attrib_index)
    {
    case LNS_LN_FEATURE_VALUE_INDEX:
        {
            *p_length = sizeof(lns_ln_feature_support);
            *pp_value = (uint8_t *)&lns_ln_feature_support;
        }
        break;

    case LNS_LN_POSITION_QUALITY_VALUE_INDEX:
        {
            T_LNS_CALLBACK_DATA callback_data;
            callback_data.msg_type = SERVICE_CALLBACK_TYPE_READ_CHAR_VALUE;
            callback_data.msg_data.read_value_index = LNS_READ_POSITION_QUALITY_VALUE;
            pfn_lns_app_cb(service_id, (void *)&callback_data);
            //after app call lns_set_parameter to set Position Quality Value, profile will response this value to remote device
            lns_format_pq_value_for_read();
            *p_length = lns_pq_value_length_for_read_cfm;
            *pp_value = lns_pq_value_for_read_cfm;
        }
        break;

    default:
        {
            PROFILE_PRINT_ERROR1("lns_attr_read_cb  iAttribIndex = %d not found", attrib_index);
            cause  = APP_RESULT_ATTR_NOT_FOUND;
        }
        break;
    }

    return cause;
}

/**
 * @brief write characteristic data from service.
 *
 * @param[in] conn_id           Connection id.
 * @param[in] service_id        Service id.
 * @param[in] attrib_index      Attribute index of characteristic.
 * @param[in] write_type        Write type.
 * @param length            length of value to be written.
 * @param p_value            value to be written.
 * @param[in] p_write_ind_post_proc pointer of a function to handle attribute write.
 * @return Profile procedure result
*/
T_APP_RESULT lns_attr_write_cb(uint8_t conn_id, T_SERVER_ID service_id, uint16_t attrib_index,
                               T_WRITE_TYPE write_type,
                               uint16_t length, uint8_t *p_value, P_FUN_WRITE_IND_POST_PROC *p_write_ind_post_proc)
{
    T_APP_RESULT cause  = APP_RESULT_SUCCESS;
    PROFILE_PRINT_INFO2("lns_attr_write_cb attrib_index = %d length %x", attrib_index, length);

    switch (attrib_index)
    {
    case LNS_LN_CP_VALUE_INDEX:
        {
            /* Attribute value has variable size, make sure written value size is valid. */
            if ((length > LNS_MAX_CTL_PNT_VALUE) || (p_value == NULL))
            {
                cause  = APP_RESULT_INVALID_VALUE_SIZE;
            }
            /* Make sure Control Point is not "Process already in progress". */
            else if (lns_ctl_pnt.value[0] == LN_CP_OPCODE_RESPONSE_CODE)
            {
                PROFILE_PRINT_ERROR1("lns_attr_write_cb: lns_ctl_pnt.value[0] %d ", lns_ctl_pnt.value[0]);
                cause  = APP_RESULT_PROC_ALREADY_IN_PROGRESS;
            }
            /* Make sure Control Point is configured indication enable. */
            else if (!lns_notify_indicate_flag.ln_cp_indicate_enable)
            {
                cause = APP_RESULT_CCCD_IMPROPERLY_CONFIGURED;
            }
            else
            {
                cause = lns_handle_ctl_pnt_proc(conn_id, service_id, length, p_value);
                if (cause == APP_RESULT_SUCCESS)
                {
                    *p_write_ind_post_proc = lns_ctl_pnt_write_ind_post_proc;
                }
                else
                {
                    *p_write_ind_post_proc = NULL;
                }
            }

        }
        break;

    default:
        {
            PROFILE_PRINT_ERROR1("lns_attr_write_cb  attrib_index = %d not found", attrib_index);
            cause = APP_RESULT_ATTR_NOT_FOUND;
        }
        break;
    }

    return cause;
}

/**
 * @brief update CCCD bits from stack.
 *
 * @param[in] conn_id           Connection id.
 * @param[in] service_id        Service id.
 * @param[in] index          Attribute index of characteristic data.
 * @param[in] ccc_bits         CCCD bits from stack.
 * @return None
*/
void lns_cccd_update_cb(uint8_t conn_id, T_SERVER_ID service_id, uint16_t index, uint16_t ccc_bits)
{
    T_LNS_CALLBACK_DATA callback_data;
    bool bHandle = true;

    PROFILE_PRINT_INFO2("lns_cccd_update_cb index = %d ccc_bits %x", index, ccc_bits);

    switch (index)
    {
    case LNS_LN_LOCATION_AND_SPEED_CCCD_INDEX:
        {
            if (ccc_bits & GATT_CLIENT_CHAR_CONFIG_NOTIFY)
            {
                // Enable Notification
                lns_notify_indicate_flag.location_and_speed_notify_enable = 1;
                callback_data.msg_data.notification_indification_index =
                    LNS_NOTIFY_INDICATE_LOCATION_AND_SPEED_ENABLE;
            }
            else
            {
                lns_notify_indicate_flag.location_and_speed_notify_enable = 0;
                callback_data.msg_data.notification_indification_index =
                    LNS_NOTIFY_INDICATE_LOCATION_AND_SPEED_DISABLE;
            }
        }
        break;

    case LNS_LN_CP_CCCD_INDEX:
        {
            if (ccc_bits & GATT_CLIENT_CHAR_CONFIG_INDICATE)
            {
                // Enable Indofication
                lns_notify_indicate_flag.ln_cp_indicate_enable = 1;
                callback_data.msg_data.notification_indification_index = LNS_NOTIFY_INDICATE_CP_ENABLE;
            }
            else
            {
                lns_notify_indicate_flag.ln_cp_indicate_enable = 0;
                callback_data.msg_data.notification_indification_index = LNS_NOTIFY_INDICATE_CP_DISABLE;
            }

        }
        break;

    case LNS_LN_NAVIGATION_CCCD_INDEX:
        {
            if (ccc_bits & GATT_CLIENT_CHAR_CONFIG_NOTIFY)
            {
                // Enable Notification
                lns_notify_indicate_flag.navigation_enable = 1;
                callback_data.msg_data.notification_indification_index = LNS_NOTIFY_INDICATE_NAVIGATION_ENABLE;
            }
            else
            {
                lns_notify_indicate_flag.navigation_enable = 0;
                callback_data.msg_data.notification_indification_index = LNS_NOTIFY_INDICATE_NAVIGATION_DISABLE;
            }
        }
        break;

    default:
        {
            bHandle = false;
            PROFILE_PRINT_ERROR1("lns_cccd_update_cb Index = %d not found", index);
        }
        break;

    }
    /* Notify Application. */
    if (pfn_lns_app_cb && (bHandle == true))
    {
        callback_data.msg_type = SERVICE_CALLBACK_TYPE_INDIFICATION_NOTIFICATION;
        pfn_lns_app_cb(service_id, (void *)&callback_data);
    }
    return;
}

/**
 * @brief LOCATION AND NAVIGATION Service Callbacks.
*/
const T_FUN_GATT_SERVICE_CBS lns_cbs =
{
    lns_attr_read_cb,  // Read callback function pointer
    lns_attr_write_cb, // Write callback function pointer
    lns_cccd_update_cb  // CCCD update callback function pointer
};

/**
  * @brief       Add location and navigation service to the BLE stack database.
  *
  *
  * @param[in]   p_func  Callback when service attribute was read, write or cccd update.
  * @return Service id generated by the BLE stack: @ref T_SERVER_ID.
  * @retval 0xFF Operation failure.
  * @retval others Service id assigned by stack.
  *
  * <b>Example usage</b>
  * \code{.c}
    void profile_init()
    {
     server_init(1);
     lns_id = lns_add_service(app_handle_profile_message);
    }
  * \endcode
  */
uint8_t lns_add_service(void *p_func)
{
    uint8_t service_id;
    if (false == server_add_service(&service_id,
                                    (uint8_t *)lns_attr_tbl,
                                    lns_attr_tbl_size,
                                    lns_cbs))
    {
        PROFILE_PRINT_ERROR1("lns_add_service: ServiceId %d", service_id);
        service_id = 0xff;
    }
    pfn_lns_app_cb = (P_FUN_SERVER_GENERAL_CB)p_func;
    return service_id;
}