-
Notifications
You must be signed in to change notification settings - Fork 118
/
inols-err.log
8668 lines (8616 loc) · 836 KB
/
inols-err.log
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
Started logging.
2022/05/12 16:02:31 logging to d:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\inols.log
2022/05/12 16:02:31 Initial board configuration: {"WisBlock RAK11300 Board" rakwireless:mbed_rp2040:WisCoreRAK11300Board}
2022/05/12 16:02:31 Language server build path: C:\Users\ltp\AppData\Local\Temp\arduino-language-server289636263
2022/05/12 16:02:31 Language server build sketch root: C:\Users\ltp\AppData\Local\Temp\arduino-language-server289636263\sketch
2022/05/12 16:02:31 [92mIDE --> LS CL: REQUEST initialize 0: [0m
2022/05/12 16:02:31 IDE --> initialize 0 [93m locked[0m
2022/05/12 16:02:31 IDE --> initialize 0 [93m unlocked[0m
2022/05/12 16:02:31 INIT--- initializing workbench
2022/05/12 16:02:31 INIT--- [93m locked[0m
2022/05/12 16:02:31 --> initialize(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest)
2022/05/12 16:02:31 [91mIDE <-- LS CL: ANSWER UNBOUND (0): [0m
2022/05/12 16:02:31 running: c:\Users\ltp\AppData\Local\Programs\Arduino IDE\resources\app\node_modules\arduino-ide-extension\build\arduino-cli.exe --config-file c:\Users\ltp\.arduinoIDE\arduino-cli.yaml compile --fqbn rakwireless:mbed_rp2040:WisCoreRAK11300Board --only-compilation-database --clean --source-override C:\Users\ltp\AppData\Local\Temp\865066202 --build-path C:\Users\ltp\AppData\Local\Temp\arduino-language-server289636263 --format json D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest
2022/05/12 16:02:31 [92mIDE --> LS CL: NOTIFICATION initialized: [0m
2022/05/12 16:02:56 arduino-cli output: {
"compiler_out": "",
"compiler_err": "",
"builder_result": {
"build_path": "C:\\Users\\ltp\\AppData\\Local\\Temp\\arduino-language-server289636263",
"used_libraries": [
{
"name": "SPI",
"architectures": [
"*"
],
"install_dir": "C:\\Users\\ltp\\AppData\\Local\\Arduino15\\packages\\rakwireless\\hardware\\mbed_rp2040\\0.0.5\\libraries\\SPI",
"source_dir": "C:\\Users\\ltp\\AppData\\Local\\Arduino15\\packages\\rakwireless\\hardware\\mbed_rp2040\\0.0.5\\libraries\\SPI",
"container_platform": "rakwireless:mbed_rp2040@0.0.5",
"is_legacy": true,
"location": 2,
"provides_includes": [
"SPI.h"
]
},
{
"name": "RAK13801-UWB-Library",
"author": "RAKWireless \u003crakwireless.com\u003e",
"maintainer": "RAKWireless \u003crakwireless.com\u003e",
"sentence": "Arduino library to use Decawave DW1000 IC.",
"paragraph": "This library is intended to be used with Decawave DW1000 IC and modules. It provides an API for hardware abstraction and high-level utilities for RTLS applications.",
"website": "https://github.com/RAKWireless/RAK13801-UWB-Library",
"category": "Uncategorized",
"architectures": [
"*"
],
"install_dir": "C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library",
"source_dir": "c:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\src",
"real_name": "RAK13801-UWB-Library",
"version": "1.0.0",
"license": "Unspecified",
"location": 1,
"layout": 1,
"examples": [
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\BasicConnectivityTest",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\BasicReceiver",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\BasicSender",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\SimpleAntennaCalibration",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\StandardRTLSAnchorB_TWR",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\StandardRTLSAnchorC_TWR",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\StandardRTLSAnchorMain_TWR",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\StandardRTLSTag_TWR",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\TransmitSpectrumPowerCalibration",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\TwoWayRangingInitiator",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\TwoWayRangingResponder"
],
"provides_includes": [
"DW1000Ng.hpp",
"DW1000NgCompileOptions.hpp",
"DW1000NgConfiguration.hpp",
"DW1000NgConstants.hpp",
"DW1000NgRTLS.hpp",
"DW1000NgRanging.hpp",
"DW1000NgRegisters.hpp",
"DW1000NgTime.hpp",
"DW1000NgUtils.hpp",
"SPIporting.hpp",
"deprecated.hpp",
"require_cpp11.hpp"
]
}
]
},
"success": true
}
2022/05/12 16:02:56 running: c:\Users\ltp\AppData\Local\Programs\Arduino IDE\resources\app\node_modules\arduino-ide-extension\build\arduino-cli.exe --config-file c:\Users\ltp\.arduinoIDE\arduino-cli.yaml config dump --format json
2022/05/12 16:02:56 Arduino Data Dir -> c:\Users\ltp\AppData\Local\Arduino15
2022/05/12 16:02:56 Starting clangd: c:\Users\ltp\AppData\Local\Programs\Arduino IDE\resources\app\node_modules\arduino-ide-extension\build\bin\clangd.exe -log=verbose --compile-commands-dir=C:\Users\ltp\AppData\Local\Temp\arduino-language-server289636263 -query-driver=c:\Users\ltp\AppData\Local\Arduino15\packages\**
2022/05/12 16:02:56 logging to d:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\inols-clangd.log
2022/05/12 16:02:56 logging to d:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\inols-clangd-err.log
2022/05/12 16:02:56 [91mIDE LS --> CL: REQUEST initialize 0: [0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: ANSWER initialize 0 (0): [0m
2022/05/12 16:02:57 [91mIDE LS --> CL: NOTIFICATION initialized: [0m
2022/05/12 16:02:57 INIT--- initializing workbench (done)
2022/05/12 16:02:57 INIT--- [93m unlocked[0m
2022/05/12 16:02:57 IDE --> initialized notif1 [93m read-locked[0m
2022/05/12 16:02:57 IDE --> initialized notif1 notification is not propagated to clangd
2022/05/12 16:02:57 IDE --> initialized notif1 [93m read-unlocked[0m
2022/05/12 16:02:57 [92mIDE --> LS CL: NOTIFICATION textDocument/didOpen: [0m
2022/05/12 16:02:57 IDE --> textDocument/didOpen notif2 [93m locked[0m
2022/05/12 16:02:57 IDE --> textDocument/didOpen notif2 (file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino@1 as 'cpp')
2022/05/12 16:02:57 increasing .ino tracked files count: 1
2022/05/12 16:02:57 IDE --> textDocument/didOpen notif2 to clang: didOpen(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server289636263/sketch/BasicConnectivityTest.ino.cpp@1 as 'cpp')
2022/05/12 16:02:57 IDE --> textDocument/didOpen notif2 sent to Clang
2022/05/12 16:02:57 [91mIDE LS --> CL: NOTIFICATION textDocument/didOpen: [0m
2022/05/12 16:02:57 IDE --> textDocument/didOpen notif2 Queued resfreshing document symbols
2022/05/12 16:02:57 IDE --> textDocument/didOpen notif2 [93m unlocked[0m
2022/05/12 16:02:57 [92mIDE --> LS CL: REQUEST textDocument/codeAction 1: [0m
2022/05/12 16:02:57 SYLD--- [93m read-locked[0m
2022/05/12 16:02:57 SYLD--- requesting documentSymbol for file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server289636263/sketch/BasicConnectivityTest.ino.cpp
2022/05/12 16:02:57 SYLD--- [93m read-unlocked[0m
2022/05/12 16:02:57 IDE --> textDocument/codeAction 1 [93m read-locked[0m
2022/05/12 16:02:57 --> codeAction(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:0:0)
2022/05/12 16:02:57 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 1: [0m
2022/05/12 16:02:57 --> codeAction(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server289636263/sketch/BasicConnectivityTest.ino.cpp:2:0)
2022/05/12 16:02:57 IDE --> textDocument/codeAction 1 sent to Clang
2022/05/12 16:02:57 [91mIDE LS --> CL: REQUEST textDocument/codeAction 2: [0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: REQUEST window/workDoneProgress/create 0: [0m
2022/05/12 16:02:57 [91mIDE LS --> CL: ANSWER UNBOUND (0): [0m
2022/05/12 16:02:57 [91mIDE <-- LS CL: REQUEST window/workDoneProgress/create 0: [0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress BEGIN indexing [0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 0/1 0%[0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 0/36 0%[0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 0/36 0%[0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 0/36 0%[0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 1/36 2.7777777777777777%[0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 1/36 2.7777777777777777%[0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 1/36 2.7777777777777777%[0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 2/36 5.555555555555555%[0m
2022/05/12 16:02:57 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 2/36 5.555555555555555%[0m
2022/05/12 16:02:58 [92mIDE LS <-- CL: NOTIFICATION textDocument/publishDiagnostics: [0m
2022/05/12 16:02:58 CLG <-- textDocument/publishDiagnostics notif11 (queued)
2022/05/12 16:02:58 CLG <-- textDocument/publishDiagnostics notif11 [93m read-locked[0m
2022/05/12 16:02:58 CLG <-- textDocument/publishDiagnostics notif11 (running)
2022/05/12 16:02:58 CLG <-- textDocument/publishDiagnostics notif11 publishDiagnostics(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server289636263/sketch/BasicConnectivityTest.ino.cpp):
2022/05/12 16:02:58 CLG <-- textDocument/publishDiagnostics notif11 > 0:9 - 1: pp_file_not_found
2022/05/12 16:02:58 CLG <-- textDocument/publishDiagnostics notif11 > 50:2 - 1: unknown_typename_suggest
2022/05/12 16:02:58 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 1 (1): [0m
2022/05/12 16:02:58 [92mIDE LS <-- CL: ANSWER textDocument/codeAction 2 (2): [0m
2022/05/12 16:02:58 SYLD--- [93m read-locked[0m
2022/05/12 16:02:58 SYLD--- symbol: Function setup 42:0-42:12
2022/05/12 16:02:58 SYLD--- > void setup()
2022/05/12 16:02:58 SYLD--- symbol: Function loop 44:0-44:11
2022/05/12 16:02:58 SYLD--- > void loop()
2022/05/12 16:02:58 SYLD--- symbol: Function setup 46:0-81:1
2022/05/12 16:02:58 SYLD--- TRIMMED> void setup()
2022/05/12 16:02:58 SYLD--- symbol: Function loop 83:0-97:1
2022/05/12 16:02:58 SYLD--- TRIMMED> void loop()
2022/05/12 16:02:58 SYLD--- [93m read-unlocked[0m
2022/05/12 16:02:58 SYLD--- (done)
2022/05/12 16:02:58 <-- codeAction(0 elements)
2022/05/12 16:02:58 <-- codeAction(0 elements)
2022/05/12 16:02:58 IDE --> textDocument/codeAction 1 [93m read-unlocked[0m
2022/05/12 16:02:58 [91mIDE <-- LS CL: ANSWER UNBOUND (1): [0m
2022/05/12 16:02:58 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 2: [0m
2022/05/12 16:02:58 IDE --> textDocument/documentSymbol 2 [93m read-locked[0m
2022/05/12 16:02:58 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:02:58 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server289636263/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:02:58 IDE --> textDocument/documentSymbol 2 sent to Clang
2022/05/12 16:02:58 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 3: [0m
2022/05/12 16:02:58 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 3 (3): [0m
2022/05/12 16:02:58 URI: converted 0:9-0:10 to /not-ino:0:9-0:10
2022/05/12 16:02:58 <-- documentSymbol(9 document symbols)
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Variable 14:0-14:25
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Variable 15:0-15:30
2022/05/12 16:02:58 URI: converted 50:2-50:8 to D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino:43:2-43:8
2022/05/12 16:02:58 CLG <-- textDocument/publishDiagnostics notif11 to IDE: publishDiagnostics(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino):
2022/05/12 16:02:58 CLG <-- textDocument/publishDiagnostics notif11 > 43:2 - 1: unknown_typename_suggest
2022/05/12 16:02:58 [91mIDE <-- LS CL: NOTIFICATION textDocument/publishDiagnostics: [0m
2022/05/12 16:02:58 CLG <-- textDocument/publishDiagnostics notif11 [93m read-unlocked[0m
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Variable 16:0-16:30
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Variable 18:0-30:1
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Variable 32:0-38:1
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Function 42:0-42:12
2022/05/12 16:02:58 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:02:58 > convert Function 44:0-44:11
2022/05/12 16:02:58 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:02:58 > convert Function 46:0-81:1
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Function 83:0-97:1
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 IDE --> textDocument/documentSymbol 2 [93m read-unlocked[0m
2022/05/12 16:02:58 [91mIDE <-- LS CL: ANSWER UNBOUND (2): [0m
2022/05/12 16:02:58 [92mIDE --> LS CL: ANSWER window/workDoneProgress/create 0 (0): [0m
2022/05/12 16:02:58 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:02:58 IDE --> $/cancelRequest notif3 [93m read-locked[0m
2022/05/12 16:02:58 IDE --> $/cancelRequest notif3 sent to Clang
2022/05/12 16:02:58 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:02:58 IDE --> $/cancelRequest notif3 [93m read-unlocked[0m
2022/05/12 16:02:58 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 3: [0m
2022/05/12 16:02:58 IDE --> textDocument/documentSymbol 3 [93m read-locked[0m
2022/05/12 16:02:58 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:02:58 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress BEGIN indexing [0m
2022/05/12 16:02:58 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 2/36 5.555555555555555%[0m
2022/05/12 16:02:58 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server289636263/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:02:58 IDE --> textDocument/documentSymbol 3 sent to Clang
2022/05/12 16:02:58 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 4: [0m
2022/05/12 16:02:58 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 4 (4): [0m
2022/05/12 16:02:58 <-- documentSymbol(9 document symbols)
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Variable 14:0-14:25
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Variable 15:0-15:30
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Variable 16:0-16:30
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Variable 18:0-30:1
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Variable 32:0-38:1
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Function 42:0-42:12
2022/05/12 16:02:58 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:02:58 > convert Function 44:0-44:11
2022/05/12 16:02:58 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:02:58 > convert Function 46:0-81:1
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 > convert Function 83:0-97:1
2022/05/12 16:02:58 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:02:58 IDE --> textDocument/documentSymbol 3 [93m read-unlocked[0m
2022/05/12 16:02:58 [91mIDE <-- LS CL: ANSWER UNBOUND (3): [0m
2022/05/12 16:02:58 [92mIDE --> LS CL: REQUEST textDocument/codeAction 4: [0m
2022/05/12 16:02:58 IDE --> textDocument/codeAction 4 [93m read-locked[0m
2022/05/12 16:02:58 --> codeAction(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:7:3)
2022/05/12 16:02:58 --> codeAction(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server289636263/sketch/BasicConnectivityTest.ino.cpp:9:3)
2022/05/12 16:02:58 IDE --> textDocument/codeAction 4 sent to Clang
2022/05/12 16:02:58 [91mIDE LS --> CL: REQUEST textDocument/codeAction 5: [0m
2022/05/12 16:02:58 [92mIDE LS <-- CL: ANSWER textDocument/codeAction 5 (5): [0m
2022/05/12 16:02:58 <-- codeAction(0 elements)
2022/05/12 16:02:58 <-- codeAction(0 elements)
2022/05/12 16:02:58 IDE --> textDocument/codeAction 4 [93m read-unlocked[0m
2022/05/12 16:02:58 [91mIDE <-- LS CL: ANSWER UNBOUND (4): [0m
2022/05/12 16:02:58 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:02:58 IDE --> $/cancelRequest notif4 [93m read-locked[0m
2022/05/12 16:02:58 IDE --> $/cancelRequest notif4 sent to Clang
2022/05/12 16:02:58 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:02:58 IDE --> $/cancelRequest notif4 [93m read-unlocked[0m
2022/05/12 16:02:58 [92mIDE --> LS CL: REQUEST textDocument/codeAction 5: [0m
2022/05/12 16:02:58 IDE --> textDocument/codeAction 5 [93m read-locked[0m
2022/05/12 16:02:58 --> codeAction(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:7:3)
2022/05/12 16:02:58 --> codeAction(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server289636263/sketch/BasicConnectivityTest.ino.cpp:9:3)
2022/05/12 16:02:58 IDE --> textDocument/codeAction 5 sent to Clang
2022/05/12 16:02:58 [91mIDE LS --> CL: REQUEST textDocument/codeAction 6: [0m
2022/05/12 16:02:58 [92mIDE LS <-- CL: ANSWER textDocument/codeAction 6 (6): [0m
2022/05/12 16:02:58 <-- codeAction(0 elements)
2022/05/12 16:02:58 <-- codeAction(0 elements)
2022/05/12 16:02:58 IDE --> textDocument/codeAction 5 [93m read-unlocked[0m
2022/05/12 16:02:58 [91mIDE <-- LS CL: ANSWER UNBOUND (5): [0m
2022/05/12 16:02:58 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 3/36 8.333333333333334%[0m
2022/05/12 16:02:58 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 3/36 8.333333333333334%[0m
2022/05/12 16:02:58 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 3/36 8.333333333333334%[0m
2022/05/12 16:02:58 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 3/36 8.333333333333334%[0m
2022/05/12 16:02:59 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 4/36 11.11111111111111%[0m
2022/05/12 16:02:59 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 4/36 11.11111111111111%[0m
2022/05/12 16:02:59 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 4/36 11.11111111111111%[0m
2022/05/12 16:02:59 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 4/36 11.11111111111111%[0m
2022/05/12 16:02:59 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 5/36 13.88888888888889%[0m
2022/05/12 16:02:59 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 5/36 13.88888888888889%[0m
2022/05/12 16:02:59 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 5/36 13.88888888888889%[0m
2022/05/12 16:02:59 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 5/36 13.88888888888889%[0m
2022/05/12 16:02:59 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 6/36 16.666666666666668%[0m
2022/05/12 16:02:59 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 6/36 16.666666666666668%[0m
2022/05/12 16:02:59 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 6/36 16.666666666666668%[0m
2022/05/12 16:02:59 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 6/36 16.666666666666668%[0m
2022/05/12 16:03:00 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 7/36 19.444444444444443%[0m
2022/05/12 16:03:00 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 7/36 19.444444444444443%[0m
2022/05/12 16:03:00 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 7/36 19.444444444444443%[0m
2022/05/12 16:03:00 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 8/36 22.22222222222222%[0m
2022/05/12 16:03:00 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 8/36 22.22222222222222%[0m
2022/05/12 16:03:00 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 8/36 22.22222222222222%[0m
2022/05/12 16:03:00 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 8/36 22.22222222222222%[0m
2022/05/12 16:03:00 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 9/36 25%[0m
2022/05/12 16:03:00 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 9/36 25%[0m
2022/05/12 16:03:00 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 9/36 25%[0m
2022/05/12 16:03:00 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 9/36 25%[0m
2022/05/12 16:03:00 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 10/36 27.77777777777778%[0m
2022/05/12 16:03:00 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 10/36 27.77777777777778%[0m
2022/05/12 16:03:00 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 10/36 27.77777777777778%[0m
2022/05/12 16:03:00 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 10/36 27.77777777777778%[0m
2022/05/12 16:03:00 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 11/36 30.555555555555557%[0m
2022/05/12 16:03:00 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 11/36 30.555555555555557%[0m
2022/05/12 16:03:00 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 11/36 30.555555555555557%[0m
2022/05/12 16:03:00 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 11/36 30.555555555555557%[0m
2022/05/12 16:03:01 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 12/36 33.333333333333336%[0m
2022/05/12 16:03:01 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 12/36 33.333333333333336%[0m
2022/05/12 16:03:01 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 12/36 33.333333333333336%[0m
2022/05/12 16:03:01 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 12/36 33.333333333333336%[0m
2022/05/12 16:03:01 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 13/36 36.111111111111114%[0m
2022/05/12 16:03:01 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 13/36 36.111111111111114%[0m
2022/05/12 16:03:01 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 13/36 36.111111111111114%[0m
2022/05/12 16:03:01 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 13/36 36.111111111111114%[0m
2022/05/12 16:03:01 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 14/36 38.888888888888886%[0m
2022/05/12 16:03:01 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 14/36 38.888888888888886%[0m
2022/05/12 16:03:01 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 14/36 38.888888888888886%[0m
2022/05/12 16:03:01 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 14/36 38.888888888888886%[0m
2022/05/12 16:03:02 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 15/36 41.666666666666664%[0m
2022/05/12 16:03:02 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 15/36 41.666666666666664%[0m
2022/05/12 16:03:02 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 15/36 41.666666666666664%[0m
2022/05/12 16:03:02 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 15/36 41.666666666666664%[0m
2022/05/12 16:03:02 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 16/36 44.44444444444444%[0m
2022/05/12 16:03:02 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 16/36 44.44444444444444%[0m
2022/05/12 16:03:02 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 16/36 44.44444444444444%[0m
2022/05/12 16:03:02 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 16/36 44.44444444444444%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 17/36 47.22222222222222%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 17/36 47.22222222222222%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 17/36 47.22222222222222%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 17/36 47.22222222222222%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 18/36 50%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 18/36 50%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 18/36 50%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 18/36 50%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 19/36 52.77777777777778%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 19/36 52.77777777777778%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 19/36 52.77777777777778%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 19/36 52.77777777777778%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 20/36 55.55555555555556%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 20/36 55.55555555555556%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 20/36 55.55555555555556%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 21/36 58.333333333333336%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 21/36 58.333333333333336%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 21/36 58.333333333333336%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 21/36 58.333333333333336%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 22/36 61.111111111111114%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 22/36 61.111111111111114%[0m
2022/05/12 16:03:03 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 22/36 61.111111111111114%[0m
2022/05/12 16:03:03 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 22/36 61.111111111111114%[0m
2022/05/12 16:03:04 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 23/36 63.888888888888886%[0m
2022/05/12 16:03:04 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 23/36 63.888888888888886%[0m
2022/05/12 16:03:04 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 23/36 63.888888888888886%[0m
2022/05/12 16:03:04 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 23/36 63.888888888888886%[0m
2022/05/12 16:03:04 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 24/36 66.66666666666667%[0m
2022/05/12 16:03:04 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 24/36 66.66666666666667%[0m
2022/05/12 16:03:04 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 24/36 66.66666666666667%[0m
2022/05/12 16:03:04 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 24/36 66.66666666666667%[0m
2022/05/12 16:03:04 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 25/36 69.44444444444444%[0m
2022/05/12 16:03:04 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 25/36 69.44444444444444%[0m
2022/05/12 16:03:04 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 25/36 69.44444444444444%[0m
2022/05/12 16:03:04 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 25/36 69.44444444444444%[0m
2022/05/12 16:03:05 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 26/36 72.22222222222223%[0m
2022/05/12 16:03:05 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 26/36 72.22222222222223%[0m
2022/05/12 16:03:05 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 26/36 72.22222222222223%[0m
2022/05/12 16:03:05 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 26/36 72.22222222222223%[0m
2022/05/12 16:03:05 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 27/36 75%[0m
2022/05/12 16:03:05 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 27/36 75%[0m
2022/05/12 16:03:05 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 27/36 75%[0m
2022/05/12 16:03:05 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 27/36 75%[0m
2022/05/12 16:03:06 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 28/36 77.77777777777777%[0m
2022/05/12 16:03:06 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 28/36 77.77777777777777%[0m
2022/05/12 16:03:06 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 28/36 77.77777777777777%[0m
2022/05/12 16:03:06 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 29/36 80.55555555555556%[0m
2022/05/12 16:03:06 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 29/36 80.55555555555556%[0m
2022/05/12 16:03:06 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 29/36 80.55555555555556%[0m
2022/05/12 16:03:06 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 29/36 80.55555555555556%[0m
2022/05/12 16:03:06 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 30/36 83.33333333333333%[0m
2022/05/12 16:03:06 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 30/36 83.33333333333333%[0m
2022/05/12 16:03:06 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 30/36 83.33333333333333%[0m
2022/05/12 16:03:06 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 30/36 83.33333333333333%[0m
2022/05/12 16:03:07 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 31/36 86.11111111111111%[0m
2022/05/12 16:03:07 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 31/36 86.11111111111111%[0m
2022/05/12 16:03:07 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 31/36 86.11111111111111%[0m
2022/05/12 16:03:07 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 31/36 86.11111111111111%[0m
2022/05/12 16:03:07 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 32/36 88.88888888888889%[0m
2022/05/12 16:03:07 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 32/36 88.88888888888889%[0m
2022/05/12 16:03:07 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 32/36 88.88888888888889%[0m
2022/05/12 16:03:07 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 32/36 88.88888888888889%[0m
2022/05/12 16:03:08 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 33/36 91.66666666666667%[0m
2022/05/12 16:03:08 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 33/36 91.66666666666667%[0m
2022/05/12 16:03:09 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 34/36 94.44444444444444%[0m
2022/05/12 16:03:09 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 34/36 94.44444444444444%[0m
2022/05/12 16:03:09 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 35/36 97.22222222222223%[0m
2022/05/12 16:03:09 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 35/36 97.22222222222223%[0m
2022/05/12 16:03:09 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress END [0m
2022/05/12 16:03:09 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress END [0m
2022/05/12 16:03:11 [92mIDE --> LS CL: REQUEST textDocument/codeAction 6: [0m
2022/05/12 16:03:11 IDE --> textDocument/codeAction 6 [93m read-locked[0m
2022/05/12 16:03:11 --> codeAction(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:6:24)
2022/05/12 16:03:11 --> codeAction(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server289636263/sketch/BasicConnectivityTest.ino.cpp:8:24)
2022/05/12 16:03:11 IDE --> textDocument/codeAction 6 sent to Clang
2022/05/12 16:03:11 [91mIDE LS --> CL: REQUEST textDocument/codeAction 7: [0m
2022/05/12 16:03:11 [92mIDE LS <-- CL: ANSWER textDocument/codeAction 7 (7): [0m
2022/05/12 16:03:11 <-- codeAction(0 elements)
2022/05/12 16:03:11 <-- codeAction(0 elements)
2022/05/12 16:03:11 IDE --> textDocument/codeAction 6 [93m read-unlocked[0m
2022/05/12 16:03:11 [91mIDE <-- LS CL: ANSWER UNBOUND (6): [0m
2022/05/12 16:03:15 [92mIDE --> LS CL: REQUEST shutdown 7: [0m
2022/05/12 16:03:15 IDE --> shutdown 7 [93m read-locked[0m
2022/05/12 16:03:15 IDE --> shutdown 7 sent to Clang
2022/05/12 16:03:15 [91mIDE LS --> CL: REQUEST shutdown 8: [0m
2022/05/12 16:03:15 [92mIDE LS <-- CL: ANSWER shutdown 8 (8): [0m
2022/05/12 16:03:15 IDE --> shutdown 7 [93m read-unlocked[0m
2022/05/12 16:03:15 [91mIDE <-- LS CL: ANSWER UNBOUND (7): [0m
2022/05/12 16:03:15 [92mIDE --> LS CL: NOTIFICATION exit: [0m
2022/05/12 16:03:15 IDE --> exit notif5 [93m read-locked[0m
2022/05/12 16:03:15 IDE --> exit notif5 sent to Clang
2022/05/12 16:03:15 [91mIDE LS --> CL: NOTIFICATION exit: [0m
2022/05/12 16:03:15 IDE --> exit notif5 [93m read-unlocked[0m
2022/05/12 16:03:15 Lost connection with clangd!
2022/05/12 16:03:15 removing buildpath
Started logging.
2022/05/12 16:04:14 logging to d:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\inols.log
2022/05/12 16:04:14 Initial board configuration: {"WisBlock RAK11300 Board" rakwireless:mbed_rp2040:WisCoreRAK11300Board}
2022/05/12 16:04:14 Language server build path: C:\Users\ltp\AppData\Local\Temp\arduino-language-server122242143
2022/05/12 16:04:14 Language server build sketch root: C:\Users\ltp\AppData\Local\Temp\arduino-language-server122242143\sketch
2022/05/12 16:04:14 [92mIDE --> LS CL: REQUEST initialize 0: [0m
2022/05/12 16:04:14 IDE --> initialize 0 [93m locked[0m
2022/05/12 16:04:14 IDE --> initialize 0 [93m unlocked[0m
2022/05/12 16:04:14 INIT--- initializing workbench
2022/05/12 16:04:14 INIT--- [93m locked[0m
2022/05/12 16:04:14 [91mIDE <-- LS CL: ANSWER UNBOUND (0): [0m
2022/05/12 16:04:14 --> initialize(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest)
2022/05/12 16:04:14 running: c:\Users\ltp\AppData\Local\Programs\Arduino IDE\resources\app\node_modules\arduino-ide-extension\build\arduino-cli.exe --config-file c:\Users\ltp\.arduinoIDE\arduino-cli.yaml compile --fqbn rakwireless:mbed_rp2040:WisCoreRAK11300Board --only-compilation-database --clean --source-override C:\Users\ltp\AppData\Local\Temp\415367218 --build-path C:\Users\ltp\AppData\Local\Temp\arduino-language-server122242143 --format json D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest
2022/05/12 16:04:14 [92mIDE --> LS CL: NOTIFICATION initialized: [0m
2022/05/12 16:04:39 arduino-cli output: {
"compiler_out": "",
"compiler_err": "",
"builder_result": {
"build_path": "C:\\Users\\ltp\\AppData\\Local\\Temp\\arduino-language-server122242143",
"used_libraries": [
{
"name": "SPI",
"architectures": [
"*"
],
"install_dir": "C:\\Users\\ltp\\AppData\\Local\\Arduino15\\packages\\rakwireless\\hardware\\mbed_rp2040\\0.0.5\\libraries\\SPI",
"source_dir": "C:\\Users\\ltp\\AppData\\Local\\Arduino15\\packages\\rakwireless\\hardware\\mbed_rp2040\\0.0.5\\libraries\\SPI",
"container_platform": "rakwireless:mbed_rp2040@0.0.5",
"is_legacy": true,
"location": 2,
"provides_includes": [
"SPI.h"
]
},
{
"name": "RAK13801-UWB-Library",
"author": "RAKWireless \u003crakwireless.com\u003e",
"maintainer": "RAKWireless \u003crakwireless.com\u003e",
"sentence": "Arduino library to use Decawave DW1000 IC.",
"paragraph": "This library is intended to be used with Decawave DW1000 IC and modules. It provides an API for hardware abstraction and high-level utilities for RTLS applications.",
"website": "https://github.com/RAKWireless/RAK13801-UWB-Library",
"category": "Uncategorized",
"architectures": [
"*"
],
"install_dir": "C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library",
"source_dir": "c:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\src",
"real_name": "RAK13801-UWB-Library",
"version": "1.0.0",
"license": "Unspecified",
"location": 1,
"layout": 1,
"examples": [
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\BasicConnectivityTest",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\BasicReceiver",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\BasicSender",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\SimpleAntennaCalibration",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\StandardRTLSAnchorB_TWR",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\StandardRTLSAnchorC_TWR",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\StandardRTLSAnchorMain_TWR",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\StandardRTLSTag_TWR",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\TransmitSpectrumPowerCalibration",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\TwoWayRangingInitiator",
"C:\\Users\\ltp\\Documents\\Arduino\\libraries\\RAK13801-UWB-Library\\examples\\TwoWayRangingResponder"
],
"provides_includes": [
"DW1000Ng.hpp",
"DW1000NgCompileOptions.hpp",
"DW1000NgConfiguration.hpp",
"DW1000NgConstants.hpp",
"DW1000NgRTLS.hpp",
"DW1000NgRanging.hpp",
"DW1000NgRegisters.hpp",
"DW1000NgTime.hpp",
"DW1000NgUtils.hpp",
"SPIporting.hpp",
"deprecated.hpp",
"require_cpp11.hpp"
]
}
]
},
"success": true
}
2022/05/12 16:04:39 running: c:\Users\ltp\AppData\Local\Programs\Arduino IDE\resources\app\node_modules\arduino-ide-extension\build\arduino-cli.exe --config-file c:\Users\ltp\.arduinoIDE\arduino-cli.yaml config dump --format json
2022/05/12 16:04:39 Arduino Data Dir -> c:\Users\ltp\AppData\Local\Arduino15
2022/05/12 16:04:39 Starting clangd: c:\Users\ltp\AppData\Local\Programs\Arduino IDE\resources\app\node_modules\arduino-ide-extension\build\bin\clangd.exe -log=verbose --compile-commands-dir=C:\Users\ltp\AppData\Local\Temp\arduino-language-server122242143 -query-driver=c:\Users\ltp\AppData\Local\Arduino15\packages\**
2022/05/12 16:04:39 logging to d:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\inols-clangd.log
2022/05/12 16:04:39 logging to d:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\inols-clangd-err.log
2022/05/12 16:04:39 [91mIDE LS --> CL: REQUEST initialize 0: [0m
2022/05/12 16:04:39 [92mIDE LS <-- CL: ANSWER initialize 0 (0): [0m
2022/05/12 16:04:39 [91mIDE LS --> CL: NOTIFICATION initialized: [0m
2022/05/12 16:04:39 INIT--- initializing workbench (done)
2022/05/12 16:04:39 INIT--- [93m unlocked[0m
2022/05/12 16:04:39 IDE --> initialized notif1 [93m read-locked[0m
2022/05/12 16:04:39 IDE --> initialized notif1 notification is not propagated to clangd
2022/05/12 16:04:39 IDE --> initialized notif1 [93m read-unlocked[0m
2022/05/12 16:04:39 [92mIDE --> LS CL: NOTIFICATION textDocument/didOpen: [0m
2022/05/12 16:04:39 IDE --> textDocument/didOpen notif2 [93m locked[0m
2022/05/12 16:04:39 IDE --> textDocument/didOpen notif2 (file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino@1 as 'cpp')
2022/05/12 16:04:39 increasing .ino tracked files count: 1
2022/05/12 16:04:39 IDE --> textDocument/didOpen notif2 to clang: didOpen(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp@1 as 'cpp')
2022/05/12 16:04:39 IDE --> textDocument/didOpen notif2 sent to Clang
2022/05/12 16:04:39 [91mIDE LS --> CL: NOTIFICATION textDocument/didOpen: [0m
2022/05/12 16:04:39 IDE --> textDocument/didOpen notif2 Queued resfreshing document symbols
2022/05/12 16:04:39 IDE --> textDocument/didOpen notif2 [93m unlocked[0m
2022/05/12 16:04:39 SYLD--- [93m read-locked[0m
2022/05/12 16:04:39 SYLD--- requesting documentSymbol for file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp
2022/05/12 16:04:39 SYLD--- [93m read-unlocked[0m
2022/05/12 16:04:39 [92mIDE --> LS CL: REQUEST textDocument/codeAction 1: [0m
2022/05/12 16:04:39 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 1: [0m
2022/05/12 16:04:39 IDE --> textDocument/codeAction 1 [93m read-locked[0m
2022/05/12 16:04:39 --> codeAction(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:6:24)
2022/05/12 16:04:39 [92mIDE LS <-- CL: REQUEST window/workDoneProgress/create 0: [0m
2022/05/12 16:04:39 [91mIDE LS --> CL: ANSWER UNBOUND (0): [0m
2022/05/12 16:04:39 [91mIDE <-- LS CL: REQUEST window/workDoneProgress/create 0: [0m
2022/05/12 16:04:39 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress BEGIN indexing [0m
2022/05/12 16:04:39 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 0/1 0%[0m
2022/05/12 16:04:39 --> codeAction(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp:8:24)
2022/05/12 16:04:39 IDE --> textDocument/codeAction 1 sent to Clang
2022/05/12 16:04:39 [91mIDE LS --> CL: REQUEST textDocument/codeAction 2: [0m
2022/05/12 16:04:39 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 0/36 0%[0m
2022/05/12 16:04:39 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 0/36 0%[0m
2022/05/12 16:04:39 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 0/36 0%[0m
2022/05/12 16:04:39 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 0/36 0%[0m
2022/05/12 16:04:39 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 1/36 2.7777777777777777%[0m
2022/05/12 16:04:39 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 1/36 2.7777777777777777%[0m
2022/05/12 16:04:40 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 2/36 5.555555555555555%[0m
2022/05/12 16:04:40 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 2/36 5.555555555555555%[0m
2022/05/12 16:04:40 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 3/36 8.333333333333334%[0m
2022/05/12 16:04:40 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 3/36 8.333333333333334%[0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: NOTIFICATION textDocument/publishDiagnostics: [0m
2022/05/12 16:04:41 CLG <-- textDocument/publishDiagnostics notif13 (queued)
2022/05/12 16:04:41 CLG <-- textDocument/publishDiagnostics notif13 [93m read-locked[0m
2022/05/12 16:04:41 CLG <-- textDocument/publishDiagnostics notif13 (running)
2022/05/12 16:04:41 CLG <-- textDocument/publishDiagnostics notif13 publishDiagnostics(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp):
2022/05/12 16:04:41 CLG <-- textDocument/publishDiagnostics notif13 > 0:9 - 1: pp_file_not_found
2022/05/12 16:04:41 CLG <-- textDocument/publishDiagnostics notif13 > 50:2 - 1: unknown_typename_suggest
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 1 (1): [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/codeAction 2 (2): [0m
2022/05/12 16:04:41 SYLD--- [93m read-locked[0m
2022/05/12 16:04:41 SYLD--- symbol: Function setup 42:0-42:12
2022/05/12 16:04:41 SYLD--- > void setup()
2022/05/12 16:04:41 SYLD--- symbol: Function loop 44:0-44:11
2022/05/12 16:04:41 SYLD--- > void loop()
2022/05/12 16:04:41 SYLD--- symbol: Function setup 46:0-81:1
2022/05/12 16:04:41 SYLD--- TRIMMED> void setup()
2022/05/12 16:04:41 SYLD--- symbol: Function loop 83:0-97:1
2022/05/12 16:04:41 SYLD--- TRIMMED> void loop()
2022/05/12 16:04:41 SYLD--- [93m read-unlocked[0m
2022/05/12 16:04:41 SYLD--- (done)
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 1 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (1): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/codeAction 2: [0m
2022/05/12 16:04:41 IDE --> textDocument/codeAction 2 [93m read-locked[0m
2022/05/12 16:04:41 --> codeAction(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:0:0)
2022/05/12 16:04:41 URI: converted 0:9-0:10 to /not-ino:0:9-0:10
2022/05/12 16:04:41 URI: converted 50:2-50:8 to D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino:43:2-43:8
2022/05/12 16:04:41 CLG <-- textDocument/publishDiagnostics notif13 to IDE: publishDiagnostics(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino):
2022/05/12 16:04:41 CLG <-- textDocument/publishDiagnostics notif13 > 43:2 - 1: unknown_typename_suggest
2022/05/12 16:04:41 [91mIDE <-- LS CL: NOTIFICATION textDocument/publishDiagnostics: [0m
2022/05/12 16:04:41 CLG <-- textDocument/publishDiagnostics notif13 [93m read-unlocked[0m
2022/05/12 16:04:41 --> codeAction(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp:2:0)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 2 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/codeAction 3: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/codeAction 3 (3): [0m
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 2 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (2): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 3: [0m
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 3 [93m read-locked[0m
2022/05/12 16:04:41 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:04:41 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 3 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 4: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 4 (4): [0m
2022/05/12 16:04:41 <-- documentSymbol(9 document symbols)
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 14:0-14:25
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 15:0-15:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 16:0-16:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 18:0-30:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 32:0-38:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 42:0-42:12
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 44:0-44:11
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 46:0-81:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 83:0-97:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 3 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (3): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/documentHighlight 4: [0m
2022/05/12 16:04:41 IDE --> textDocument/documentHighlight 4 [93m read-locked[0m
2022/05/12 16:04:41 --> textDocument/documentHighlight(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:6:32)
2022/05/12 16:04:41 --> textDocument/documentHighlight(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp:8:32)
2022/05/12 16:04:41 IDE --> textDocument/documentHighlight 4 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/documentHighlight 5: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentHighlight 5 (5): [0m
2022/05/12 16:04:41 IDE --> textDocument/documentHighlight 4 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (4): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif3 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif3 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif3 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 5: [0m
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 5 [93m read-locked[0m
2022/05/12 16:04:41 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:04:41 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 5 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 6: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 6 (6): [0m
2022/05/12 16:04:41 <-- documentSymbol(9 document symbols)
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 14:0-14:25
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 15:0-15:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 16:0-16:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 18:0-30:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 32:0-38:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 42:0-42:12
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 44:0-44:11
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 46:0-81:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 83:0-97:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 5 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (5): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/codeAction 6: [0m
2022/05/12 16:04:41 IDE --> textDocument/codeAction 6 [93m read-locked[0m
2022/05/12 16:04:41 --> codeAction(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:6:32)
2022/05/12 16:04:41 --> codeAction(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp:8:32)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 6 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/codeAction 7: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/codeAction 7 (7): [0m
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 6 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (6): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif4 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif4 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif4 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif5 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif5 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif5 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif6 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif6 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif6 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 7: [0m
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 7 [93m read-locked[0m
2022/05/12 16:04:41 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:04:41 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 7 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 8: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 8 (8): [0m
2022/05/12 16:04:41 <-- documentSymbol(9 document symbols)
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 14:0-14:25
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 15:0-15:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 16:0-16:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 18:0-30:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 32:0-38:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 42:0-42:12
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 44:0-44:11
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 46:0-81:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 83:0-97:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 7 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (7): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif7 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif7 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif7 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 8: [0m
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 8 [93m read-locked[0m
2022/05/12 16:04:41 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:04:41 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 8 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 9: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 9 (9): [0m
2022/05/12 16:04:41 <-- documentSymbol(9 document symbols)
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 14:0-14:25
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 15:0-15:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 16:0-16:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 18:0-30:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 32:0-38:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 42:0-42:12
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 44:0-44:11
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 46:0-81:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 83:0-97:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 8 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (8): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif8 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif8 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif8 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 9: [0m
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 9 [93m read-locked[0m
2022/05/12 16:04:41 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:04:41 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 9 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 10: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 10 (10): [0m
2022/05/12 16:04:41 <-- documentSymbol(9 document symbols)
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 14:0-14:25
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 15:0-15:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 16:0-16:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 18:0-30:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 32:0-38:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 42:0-42:12
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 44:0-44:11
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 46:0-81:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 83:0-97:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 9 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (9): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif9 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif9 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif9 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 10: [0m
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 10 [93m read-locked[0m
2022/05/12 16:04:41 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:04:41 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 10 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 11: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 11 (11): [0m
2022/05/12 16:04:41 <-- documentSymbol(9 document symbols)
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 14:0-14:25
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 15:0-15:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 16:0-16:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 18:0-30:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 32:0-38:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 42:0-42:12
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 44:0-44:11
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 46:0-81:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 83:0-97:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 10 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (10): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif10 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif10 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif10 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 11: [0m
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 11 [93m read-locked[0m
2022/05/12 16:04:41 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:04:41 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 11 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 12: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 12 (12): [0m
2022/05/12 16:04:41 <-- documentSymbol(9 document symbols)
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 14:0-14:25
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 15:0-15:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 16:0-16:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 18:0-30:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 32:0-38:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 42:0-42:12
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 44:0-44:11
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 46:0-81:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 83:0-97:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 11 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (11): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif11 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif11 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif11 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 12: [0m
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 12 [93m read-locked[0m
2022/05/12 16:04:41 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:04:41 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 12 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 13: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 13 (13): [0m
2022/05/12 16:04:41 <-- documentSymbol(9 document symbols)
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 14:0-14:25
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 15:0-15:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 16:0-16:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 18:0-30:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 32:0-38:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 42:0-42:12
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 44:0-44:11
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 46:0-81:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 83:0-97:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 12 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (12): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif12 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif12 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif12 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/documentSymbol 13: [0m
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 13 [93m read-locked[0m
2022/05/12 16:04:41 --> documentSymbol(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino)
2022/05/12 16:04:41 --> documentSymbol(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp)
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 13 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/documentSymbol 14: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/documentSymbol 14 (14): [0m
2022/05/12 16:04:41 <-- documentSymbol(9 document symbols)
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 14:0-14:25
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 15:0-15:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 16:0-16:30
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 18:0-30:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Variable 32:0-38:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 42:0-42:12
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 44:0-44:11
2022/05/12 16:04:41 symbol is in the preprocessed section of the sketch.ino.cpp
2022/05/12 16:04:41 > convert Function 46:0-81:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 > convert Function 83:0-97:1
2022/05/12 16:04:41 filtering for requested ino file: D:\RAK-Work\20210707\RAK13801\RAK13801-UWB-Library\examples\BasicConnectivityTest\BasicConnectivityTest.ino
2022/05/12 16:04:41 IDE --> textDocument/documentSymbol 13 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (13): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/codeAction 14: [0m
2022/05/12 16:04:41 IDE --> textDocument/codeAction 14 [93m read-locked[0m
2022/05/12 16:04:41 --> codeAction(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:24:25)
2022/05/12 16:04:41 --> codeAction(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp:26:25)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 14 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/codeAction 15: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/codeAction 15 (15): [0m
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 14 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (14): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif13 [93m read-locked[0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif13 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: NOTIFICATION $/cancelRequest: [0m
2022/05/12 16:04:41 IDE --> $/cancelRequest notif13 [93m read-unlocked[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: ANSWER window/workDoneProgress/create 0 (0): [0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress BEGIN indexing [0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 3/36 8.333333333333334%[0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/codeAction 15: [0m
2022/05/12 16:04:41 IDE --> textDocument/codeAction 15 [93m read-locked[0m
2022/05/12 16:04:41 --> codeAction(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:6:24)
2022/05/12 16:04:41 --> codeAction(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp:8:24)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 15 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/codeAction 16: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/codeAction 16 (16): [0m
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 15 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (15): [0m
2022/05/12 16:04:41 [92mIDE --> LS CL: REQUEST textDocument/codeAction 16: [0m
2022/05/12 16:04:41 IDE --> textDocument/codeAction 16 [93m read-locked[0m
2022/05/12 16:04:41 --> codeAction(file:///d%3A/RAK-Work/20210707/RAK13801/RAK13801-UWB-Library/examples/BasicConnectivityTest/BasicConnectivityTest.ino:24:25)
2022/05/12 16:04:41 --> codeAction(file:///C:/Users/ltp/AppData/Local/Temp/arduino-language-server122242143/sketch/BasicConnectivityTest.ino.cpp:26:25)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 16 sent to Clang
2022/05/12 16:04:41 [91mIDE LS --> CL: REQUEST textDocument/codeAction 17: [0m
2022/05/12 16:04:41 [92mIDE LS <-- CL: ANSWER textDocument/codeAction 17 (17): [0m
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 <-- codeAction(0 elements)
2022/05/12 16:04:41 IDE --> textDocument/codeAction 16 [93m read-unlocked[0m
2022/05/12 16:04:41 [91mIDE <-- LS CL: ANSWER UNBOUND (16): [0m
2022/05/12 16:04:42 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 4/36 11.11111111111111%[0m
2022/05/12 16:04:42 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 4/36 11.11111111111111%[0m
2022/05/12 16:04:42 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 4/36 11.11111111111111%[0m
2022/05/12 16:04:42 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 4/36 11.11111111111111%[0m
2022/05/12 16:04:42 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 5/36 13.88888888888889%[0m
2022/05/12 16:04:42 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 5/36 13.88888888888889%[0m
2022/05/12 16:04:42 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 5/36 13.88888888888889%[0m
2022/05/12 16:04:42 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 5/36 13.88888888888889%[0m
2022/05/12 16:04:42 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 6/36 16.666666666666668%[0m
2022/05/12 16:04:42 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 6/36 16.666666666666668%[0m
2022/05/12 16:04:42 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 6/36 16.666666666666668%[0m
2022/05/12 16:04:42 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 6/36 16.666666666666668%[0m
2022/05/12 16:04:43 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 7/36 19.444444444444443%[0m
2022/05/12 16:04:43 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 7/36 19.444444444444443%[0m
2022/05/12 16:04:43 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 7/36 19.444444444444443%[0m
2022/05/12 16:04:43 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 7/36 19.444444444444443%[0m
2022/05/12 16:04:43 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 8/36 22.22222222222222%[0m
2022/05/12 16:04:43 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 8/36 22.22222222222222%[0m
2022/05/12 16:04:43 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 8/36 22.22222222222222%[0m
2022/05/12 16:04:43 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 8/36 22.22222222222222%[0m
2022/05/12 16:04:44 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 9/36 25%[0m
2022/05/12 16:04:44 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 9/36 25%[0m
2022/05/12 16:04:44 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 9/36 25%[0m
2022/05/12 16:04:44 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 9/36 25%[0m
2022/05/12 16:04:44 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 10/36 27.77777777777778%[0m
2022/05/12 16:04:44 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 10/36 27.77777777777778%[0m
2022/05/12 16:04:44 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 10/36 27.77777777777778%[0m
2022/05/12 16:04:44 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 11/36 30.555555555555557%[0m
2022/05/12 16:04:44 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 11/36 30.555555555555557%[0m
2022/05/12 16:04:44 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 11/36 30.555555555555557%[0m
2022/05/12 16:04:44 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 11/36 30.555555555555557%[0m
2022/05/12 16:04:44 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 12/36 33.333333333333336%[0m
2022/05/12 16:04:44 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 12/36 33.333333333333336%[0m
2022/05/12 16:04:44 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 12/36 33.333333333333336%[0m
2022/05/12 16:04:44 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 12/36 33.333333333333336%[0m
2022/05/12 16:04:44 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 13/36 36.111111111111114%[0m
2022/05/12 16:04:44 [92mIDE LS <-- CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 13/36 36.111111111111114%[0m
2022/05/12 16:04:44 [91mIDE <-- LS CL: NOTIFICATION $/progress: TOKEN=backgroundIndexProgress REPORT 13/36 36.111111111111114%[0m