This repository has been archived by the owner on Dec 16, 2023. It is now read-only.
forked from commaai/openpilot
-
Notifications
You must be signed in to change notification settings - Fork 32
/
apilot.json
1136 lines (1136 loc) · 25.8 KB
/
apilot.json
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
{
"apilot": 20220111,
"params": [
{
"group": "조향일반",
"name": "PathOffset",
"title": "차선치우침 좌우보정(0)",
"descr": "(-)좌측,(+)우측",
"egroup": "LAT",
"etitle": "PathOffset (0)",
"edescr": "(-)Left,(+)Right",
"min": -200,
"max": 200,
"default": 0,
"unit": 1
},
{
"group": "정지",
"name": "StopDistance",
"title": "정지거리(600cm)",
"descr": "선행차와 정지하는 거리를 입력합니다.",
"egroup": "STOP",
"etitle": "StopDistance(600cm)",
"edescr": "Adjust stop distance",
"min": 200,
"max": 1000,
"default": 650,
"unit": 50
},
{
"group": "정지",
"name": "TrafficStopDistanceAdjust",
"title": "신호정지 위치조정(200cm)",
"descr": "+값으로 하면 정지선에 다가갑니다.",
"egroup": "STOP",
"etitle": "TrafficStopDistance(200cm)",
"edescr": "+Value : forward",
"min": -1000,
"max": 1000,
"default": 390,
"unit": 10
},
{
"group": "조향튜닝",
"name": "LiveSteerRatioApply",
"title": "LiveSteerRatioApply(100%)",
"descr": "",
"egroup": "LATUNE",
"etitle": "LiveSteerRatioApply(100%)",
"edescr": "",
"min": 1,
"max": 200,
"default": 100,
"unit": 1
},
{
"group": "조향튜닝",
"name": "SteeringRateCost",
"title": "SteeringRateCost(700)",
"descr": "조향률 제한 가중치",
"egroup": "LATUNE",
"etitle": "SteeringRateCost(700)",
"edescr": "",
"min": 0,
"max": 1000,
"default": 800,
"unit": 1
},
{
"group": "조향튜닝",
"name": "LateralAccelCost",
"title": "_LateralAccelCost(0)",
"descr": "측면 가속도 제한 가중치",
"egroup": "LATUNE",
"etitle": "_LateralAccelCost(0)",
"edescr": "",
"min": 0,
"max": 1000,
"default": 100,
"unit": 1
},
{
"group": "조향튜닝",
"name": "LateralMotionCost",
"title": "_LateralMotionCost(11)",
"descr": "헤딩 추종 가중치",
"egroup": "LATUNE",
"etitle": "_LateralMotionCost(11)",
"edescr": "",
"min": 0,
"max": 1000,
"default": 17,
"unit": 1
},
{
"group": "조향튜닝",
"name": "PathCostApply",
"title": "_PathCostApply(100)",
"descr": "경로추종가충치",
"min": 0,
"max": 500,
"default": 120,
"unit": 1
},
{
"group": "조향튜닝",
"name": "LateralJerkCost",
"title": "_LateralJerkCost(4)",
"descr": "측면 제동감도 제한 가중치",
"min": 0,
"max": 100,
"default": 5,
"unit": 1
},
{
"group": "조향튜닝",
"name": "LateralTorqueKp",
"title": "_LateralTorqueKp(100)",
"descr": "",
"min": 0,
"max": 200,
"default": 100,
"unit": 1
},
{
"group": "조향튜닝",
"name": "LateralTorqueKi",
"title": "_LateralTorqueKi(10)",
"descr": "",
"min": 0,
"max": 100,
"default": 10,
"unit": 1
},
{
"group": "조향튜닝",
"name": "LateralTorqueKd",
"title": "_LateralTorqueKd(0)",
"descr": "",
"min": 0,
"max": 100,
"default": 1,
"unit": 1
},
{
"group": "조향튜닝",
"name": "LateralTorqueKf",
"title": "_LateralTorqueKf(100)",
"descr": "",
"min": 0,
"max": 200,
"default": 1,
"unit": 1
},
{
"group": "조향튜닝",
"name": "LateralTorqueCustom",
"title": "_LateralTorqueCustom(0)",
"descr": "0:LiveTorque, 1:CustomTorque, 2:CustomTorque&LiveTorque",
"min": 0,
"max": 2,
"default": 1,
"unit": 1
},
{
"group": "조향튜닝",
"name": "LateralTorqueAccelFactor",
"title": "_LateralTorqueAccelFactor*0.001(2500)",
"descr": "",
"min": 1000,
"max": 4000,
"default": 2500,
"unit": 1
},
{
"group": "조향튜닝",
"name": "LateralTorqueFriction",
"title": "_LateralTorqueFriction*0.001(100)",
"descr": "",
"min": 0,
"max": 1000,
"default": 100,
"unit": 1
},
{
"group": "조향튜닝",
"name": "SteerActuatorDelay",
"title": "SteerActuatorDelay(30)",
"descr": "값이크면 조향을 좀더 미리함(일반,10msec)",
"min": 0,
"max": 100,
"default": 30,
"unit": 1
},
{
"group": "크루즈",
"name": "CruiseControlMode",
"title": "크루즈연비제어(4km/h)",
"descr": "목표속도를 일시적으로 올림",
"min": 0,
"max": 10,
"default": 4,
"unit": 1
},
{
"group": "크루즈",
"name": "CruiseOnDist",
"title": "크루즈ON거리(0cm)",
"descr": "엑셀/브레이크OFF시, 전방차량이 설정거리만큰 가까와지면 크루즈ON",
"min": -500,
"max": 500,
"default": 0,
"unit": 50
},
{
"group": "조향튜닝",
"name": "SteerDeltaUp",
"title": "SteerDeltaUp(3)",
"descr": "",
"min": 1,
"max": 20,
"default": 14,
"unit": 1
},
{
"group": "조향튜닝",
"name": "SteerDeltaDown",
"title": "SteerDeltaDown(7)",
"descr": "",
"min": 1,
"max": 20,
"default": 7,
"unit": 1
},
{
"group": "조향튜닝",
"name": "SteerRatioApply",
"title": "SteerRatio적용(0x0.1)",
"descr": "0: LiveSteerRatio사용, 단위:0.1",
"min": 0,
"max": 300,
"default": 0,
"unit": 1
},
{
"group": "조향튜닝",
"name": "SteerRatioAccelApply",
"title": "SteerRatioAccel적용(0%)",
"descr": "SR에 Accel텀적용시험(+)값으로 시험해야할듯~",
"min": -1000,
"max": 1000,
"default": 0,
"unit": 10
},
{
"group": "가속설정",
"name": "MyEcoModeFactor",
"title": "연비가속비율(80%)",
"descr": "일반모드대비 가속비율을 지정합니다.",
"min": 10,
"max": 95,
"default": 80,
"unit": 1
},
{
"group": "가속설정",
"name": "CruiseMaxVals1",
"title": "가속설정1:0km/h(160)",
"descr": "가속도를 설정합니다. (x0.01m/s^2)",
"min": 1,
"max": 250,
"default": 150,
"unit": 5
},
{
"group": "가속설정",
"name": "CruiseMaxVals2",
"title": "가속설정2:40km/h(120)",
"descr": "가속도를 설정합니다. (x0.01m/s^2)",
"min": 1,
"max": 250,
"default": 100,
"unit": 5
},
{
"group": "가속설정",
"name": "CruiseMaxVals3",
"title": "가속설정3:60km/h(100)",
"descr": "가속도를 설정합니다. (x0.01m/s^2)",
"min": 1,
"max": 250,
"default": 100,
"unit": 5
},
{
"group": "가속설정",
"name": "CruiseMaxVals4",
"title": "가속설정4:80km/h(80)",
"descr": "가속도를 설정합니다. (x0.01m/s^2)",
"min": 1,
"max": 250,
"default": 80,
"unit": 5
},
{
"group": "가속설정",
"name": "CruiseMaxVals5",
"title": "가속설정5:110km/h(70)",
"descr": "가속도를 설정합니다. (x0.01m/s^2)",
"min": 1,
"max": 250,
"default": 70,
"unit": 5
},
{
"group": "가속설정",
"name": "CruiseMaxVals6",
"title": "가속설정6:140km/h(60)",
"descr": "가속도를 설정합니다. (x0.01m/s^2)",
"min": 1,
"max": 250,
"default": 60,
"unit": 5
},
{
"group": "가속설정",
"name": "MySafeModeFactor",
"title": "안전비율(80%)",
"descr": "가속도, 정지거리, 감속율, 차간거리를 평소보다 안전하게 유지합니다.",
"min": 10,
"max": 90,
"default": 80,
"unit": 5
},
{
"group": "주행튜닝",
"name": "JerkUpperLowerLimit",
"title": "JERK값 (8)",
"descr": "값이 커지면 가감속반응이 빨라집니다.",
"min": 1,
"max": 50,
"default": 8,
"unit": 1
},
{
"group": "주행튜닝",
"name": "LongitudinalTuningKpV",
"title": "KpV게인(100)",
"descr": "삭제예정: 롱컨제어용",
"min": 50,
"max": 150,
"default": 100,
"unit": 1
},
{
"group": "주행튜닝",
"name": "LongitudinalActuatorDelayLowerBound",
"title": "_LADLowerBound(30)",
"descr": "낮추면 정지력증가, 가속력감소",
"min": 10,
"max": 100,
"default": 50,
"unit": 10
},
{
"group": "주행튜닝",
"name": "LongitudinalActuatorDelayUpperBound",
"title": "_LADUpperBound(60)",
"descr": "올리면 감속력 증가",
"min": 10,
"max": 100,
"default": 50,
"unit": 10
},
{
"group": "주행튜닝",
"name": "LongitudinalTuningKiV",
"title": "KiV게인(200)",
"descr": "삭제예정: 정지중에만 반영(시험용)",
"min": 0,
"max": 2000,
"default": 0,
"unit": 1
},
{
"group": "주행튜닝",
"name": "LongitudinalTuningKf",
"title": "Kf게인(100)",
"descr": "피드포워드 게인",
"min": 0,
"max": 200,
"default": 100,
"unit": 1
},
{
"group": "주행튜닝",
"name": "AChangeCost",
"title": "A_CHANGE_COST(200)",
"descr": "적으면 선행차에 대한 반응이 빨라집니다.",
"min": 20,
"max": 400,
"default": 150,
"unit": 10
},
{
"group": "주행튜닝",
"name": "LeadDangerFactor",
"title": "LEAD_DANGER_FACTOR(80)",
"descr": "",
"min": 75,
"max": 100,
"default": 80,
"unit": 1
},
{
"group": "주행튜닝",
"name": "DangerZoneCost",
"title": "DANGER_ZONE_COST(100)",
"descr": "",
"min": 0,
"max": 400,
"default": 100,
"unit": 10
},
{
"group": "감속제어",
"name": "TrafficStopAccel",
"title": "신호정지 감속율 (80%)",
"descr": "신호를 만나면 서서히 감속하여 정지합니다.",
"min": 10,
"max": 120,
"default": 70,
"unit": 1
},
{
"group": "감속제어",
"name": "TrafficStopMode",
"title": "신호정지 방법 (2)",
"descr": "0:사용안함,1:사용함,2:Apilot모드",
"min": 0,
"max": 2,
"default": 1,
"unit": 1
},
{
"group": "감속제어",
"name": "ApplyModelDistOrder",
"title": "신호정지 감속모델선택 (32)",
"descr": "숫자가 작을수록 감속을 미리합니다.",
"min": 1,
"max": 32,
"default": 25,
"unit": 1
},
{
"group": "감속제어",
"name": "TrafficStopAdjustRatio",
"title": "신호정지선 보정비율 (90%)",
"descr": "급한신호정지를 막기위해 미리 속도를 줄일수 있는...",
"min": 1,
"max": 200,
"default": 87,
"unit": 1
},
{
"group": "감속제어",
"name": "AutoCurveSpeedFactor",
"title": "커브속도조절비율(100%)",
"descr": "높으면 커브속도가 느려집니다.",
"min": 50,
"max": 300,
"default": 100,
"unit": 1
},
{
"group": "감속제어",
"name": "AutoCurveSpeedFactorIn",
"title": "커브속도조절비율진입(10%)",
"descr": "올리면 진입속도를 더 줄이도록 노력합니다.",
"min": 0,
"max": 300,
"default": 10,
"unit": 1
},
{
"group": "조향일반",
"name": "AutoTurnControl",
"title": "NOO Helper(0)",
"descr": "0:사용안함,1:TMAP/Mappy Helper, 2:시험",
"min": 0,
"max": 2,
"default": 0,
"unit": 1
},
{
"group": "조향일반",
"name": "AutoLaneChangeSpeed",
"title": "자동차선변경속도(30)",
"descr": "해당속도 이상에서만 자동차선변경",
"min": 5,
"max": 60,
"default": 30,
"unit": 5
},
{
"group": "버튼설정",
"name": "CruiseButtonMode",
"title": "크루즈버튼작동모드(0)",
"descr": "0:일반,1:사용자1,2:사용자2,3:사용자3,4:사용자4",
"min": 0,
"max": 4,
"default": 0,
"unit": 1
},
{
"group": "버튼설정",
"name": "CruiseSpeedUnit",
"title": "크루즈버튼속도단위(10)",
"descr": "",
"min": 1,
"max": 20,
"default": 10,
"unit": 1
},
{
"group": "버튼설정",
"name": "GapButtonMode",
"title": "크루즈갭버튼 작동모드(0)",
"descr": "0:1~4, 1:1~5, 2:4~5, 3:4~5(크루즈OFF모드) (4:Auto, 5:크루즈ON제한모드)",
"min": 0,
"max": 3,
"default": 0,
"unit": 1
},
{
"group": "버튼설정",
"name": "PrevCruiseGap",
"title": "크루즈갭: 초기값(4)",
"descr": "크루즈갭 버튼의 초기값을 지정",
"min": 1,
"max": 4,
"default": 0,
"unit": 1
},
{
"group": "크루즈",
"name": "CruiseSpeedMin",
"title": "크루즈 최저속도(10)",
"descr": "크루즈제어의 최저속도",
"min": 10,
"max": 50,
"default": 10,
"unit": 1
},
{
"group": "크루즈",
"name": "AutoResumeFromGas",
"title": "엑셀크루즈ON: 사용",
"descr": "",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "크루즈",
"name": "AutoResumeFromGasSpeed",
"title": "엑셀크루즈ON:속도",
"descr": "",
"min": 20,
"max": 140,
"default": 0,
"unit": 5
},
{
"group": "크루즈",
"name": "AutoResumeFromGasSpeedMode",
"title": "엑셀크루즈ON:복원속도",
"descr": "0:현재속도,1:이전속도,2:선행차량,3:60M이상직진",
"min": 0,
"max": 3,
"default": 0,
"unit": 1
},
{
"group": "크루즈",
"name": "AutoCancelFromGasMode",
"title": "엑셀 크루즈OFF:모드",
"descr": "엑셀크루즈ON속도 이하에서 엑셀을 밟으면 크루즈가 해제 1:항상, 2:레이더OFF시에만",
"min": 0,
"max": 140,
"default": 1,
"unit": 1
},
{
"group": "크루즈",
"name": "AutoResumeFromBrakeRelease",
"title": "브레이크해제 크루즈ON:사용",
"descr": "",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "크루즈",
"name": "AutoResumeFromBrakeReleaseDist",
"title": "브레이크해제 크루즈ON:주행,선행차",
"descr": "선행차량이 일정거리 이상이면 크루즈를 켭니다.",
"min": 0,
"max": 80,
"default": 0,
"unit": 1
},
{
"group": "크루즈",
"name": "AutoResumeFromBrakeReleaseLeadCar",
"title": "브레이크해제 크루즈ON:정지,선행차",
"descr": "선행차뒤에 정지하고 브레이크를 떼면(10M이내 선행차)",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "크루즈",
"name": "AutoResumeFromBrakeCarSpeed",
"title": "브레이크해제 크루즈ON:주행,속도",
"descr": "빠른주행중 속도줄임. 설정속도이상이면 작동(선행차없음)",
"min": 0,
"max": 140,
"default": 0,
"unit": 1
},
{
"group": "크루즈",
"name": "AutoResumeFromBrakeReleaseTrafficSign",
"title": "브레이크해제 크루즈ON:주행,신호",
"descr": "빠른주행중 적색신호, 속도줄이다가 70Km/h이하에서 작동",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "크루즈",
"name": "AutoSyncCruiseSpeedMax",
"title": "자동속도업데이트속도 (120)",
"descr": "가속시 크루즈속도보다 높아지면 지정 속도를 올려줍니다.",
"min": 0,
"max": 200,
"default": 120,
"unit": 10
},
{
"group": "크루즈",
"name": "AutoSpeedUptoRoadSpeedLimit",
"title": "자동속도증가모드 (100)",
"descr": "전방차량따라 로드스피드까지 자동속도올림.",
"min": 0,
"max": 200,
"default": 100,
"unit": 10
},
{
"group": "화면",
"name": "ShowDebugUI",
"title": "디버그정보 표시",
"descr": "",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "화면",
"name": "ShowDateTime",
"title": "시간정보표시",
"descr": "",
"min": 0,
"max": 3,
"default": 1,
"unit": 1
},
{
"group": "화면",
"name": "ShowHudMode",
"title": "HUD표시모드",
"descr": "0:일반,1:APilot,2:하단고정,3:상단고정,4:좌측고정,5:좌하단고정",
"min": 0,
"max": 5,
"default": 5,
"unit": 1
},
{
"group": "화면",
"name": "ShowSteerRotate",
"title": "핸들회전",
"descr": "",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "화면",
"name": "ShowPathEnd",
"title": "패쓰끝표시",
"descr": "",
"min": 0,
"max": 2,
"default": 1,
"unit": 1
},
{
"group": "화면",
"name": "ShowAccelRpm",
"title": "가속도표시",
"descr": "0:표시안함,1:가속도,2:가속도+RPM",
"min": 0,
"max": 2,
"default": 1,
"unit": 1
},
{
"group": "화면",
"name": "ShowTpms",
"title": "TPMS표시",
"descr": "",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "화면",
"name": "ShowSteerMode",
"title": "핸들표시모드",
"descr": "0:검정핸들,1:칼라핸들,2:핸들없음",
"min": 0,
"max": 2,
"default": 2,
"unit": 1
},
{
"group": "화면",
"name": "ShowDeviceState",
"title": "디바이스정보",
"descr": "",
"min": 0,
"max": 1,
"default": 1,
"unit": 1
},
{
"group": "화면",
"name": "ShowConnInfo",
"title": "부가정보",
"descr": "NDA,SCC2,RadarTracks정보표시",
"min": 0,
"max": 1,
"default": 1,
"unit": 1
},
{
"group": "화면",
"name": "ShowLaneInfo",
"title": "차선정보",
"descr": "-1:없음, 0:패스만, 1:레인, 2:로드엣지",
"min": -1,
"max": 2,
"default": 1,
"unit": 1
},
{
"group": "화면",
"name": "ShowBlindSpot",
"title": "BSD정보(1)",
"descr": "0:없음,1:BSD정보보임",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "화면",
"name": "ShowGapInfo",
"title": "GAP정보(0)",
"descr": "-1:표시안함,0:갭,주행모드,1:그래프도",
"min": -1,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "화면",
"name": "ShowDmInfo",
"title": "DM정보(1)",
"descr": "0:안함,1:사용함,-1:MODEL사용안함(재시동)",
"min": -1,
"max": 1,
"default": -1,
"unit": 1
},
{
"group": "화면",
"name": "ShowRadarInfo",
"title": "레이더감지정보(0)",
"descr": "0:안함,1:표시함,2:상대위치,3:정지차량",
"min": 0,
"max": 3,
"default": 1,
"unit": 1
},
{
"group": "화면패스",
"name": "ShowZOffset",
"title": "패스높이(170)",
"descr": "패스끝이 선행차 아래표시될때까지 올릴것",
"min": -200,
"max": 300,
"default": 176,
"unit": 1
},
{
"group": "화면패스",
"name": "ShowPathMode",
"title": "패스종류,레인리스(9)",
"descr": "0:일반,1,2:사각,3,4:^^,5,6:사각,7,8:^^,9,10,11:smooth^^,12:smooth2^^,13:3줄,14:2줄,15:1줄",
"min": 0,
"max": 15,
"default": 3,
"unit": 1
},
{
"group": "화면패스",
"name": "ShowPathColor",
"title": "패스색상,레인리스(12)",
"descr": "(+10:띠)0:빨,1:주,2:노,3:초,4:파,5:남,6:보,7:고,8:흰,9:검",
"min": 0,
"max": 19,
"default": 3,
"unit": 1
},
{
"group": "화면패스",
"name": "ShowPathModeCruiseOff",
"title": "패스종류,크루즈OFF(9)",
"descr": "0:일반,1,2:사각,3,4:^^,5,6:사각,7,8:^^,9,10,11:smooth^^,12:smooth2^^,13:3줄,14:2줄,15:1줄",
"min": 0,
"max": 15,
"default": 3,
"unit": 1
},
{
"group": "화면패스",
"name": "ShowPathColorCruiseOff",
"title": "패스색상,크루즈OFF(1)",
"descr": "(+10:띠)0:빨,1:주,2:노,3:초,4:파,5:남,6:보,7:고,8:흰,9:검",
"min": 0,
"max": 19,
"default": 3,
"unit": 1
},
{
"group": "화면패스",
"name": "ShowPathModeLane",
"title": "패스종류,레인모드(11)",
"descr": "0:일반,1,2:사각,3,4:^^,5,6:사각,7,8:^^,9,10,11:smooth^^,12:smooth2^^,13:3줄,14:2줄,15:1줄",
"min": 0,
"max": 15,
"default": 3,
"unit": 1
},
{
"group": "화면패스",
"name": "ShowPathColorLane",
"title": "패스색상,레인모드(3)",
"descr": "(+10:띠)0:빨,1:주,2:노,3:초,4:파,5:남,6:보,7:고,8:흰,9:검",
"min": 0,
"max": 19,
"default": 3,
"unit": 1
},
{
"group": "화면패스",
"name": "ShowPathWidth",
"title": "패스폭(100%)",
"descr": "",
"min": 10,
"max": 200,
"default": 100,
"unit": 10
},
{
"group": "화면",
"name": "ShowPlotMode",
"title": "디버그플롯(0)",
"descr": "1:가속도,2:가속도(평균),3:조향가속도,4:속도,5:모델x",
"min": 0,
"max": 5,
"default": 0,
"unit": 1
},
{
"group": "시작",
"name": "EnableAutoEngage",
"title": "자동인게이지 사용(0)",
"descr": "0:사용안함,1:사용,2:크루즈ON도 같이",
"min": 0,
"max": 2,
"default": 0,
"unit": 1
},
{
"group": "시작",
"name": "KeepEngage",
"title": "인게이지 유지모드(0)",
"descr": "",
"min": 0,
"max": 1,
"default": 1,
"unit": 1
},
{
"group": "조향일반",
"name": "UseLaneLineSpeed",
"title": "레인모드작동속도(0)",
"descr": "레인모드 작동속도: 0: 안함...",
"min": 0,
"max": 200,
"default": 40,
"unit": 10
},
{
"group": "시작",
"name": "HapticFeedbackWhenSpeedCamera",
"title": "핸들햅틱기능사용(0)",
"descr": "0:사용안함,1:진동,2:계기판,3:HUD표시",
"min": 0,
"max": 3,
"default": 0,
"unit": 1
},
{
"group": "시작",
"name": "MaxAngleFrames",
"title": "MaxAngleFrames(89)",
"descr": "89:기본값",
"min": 80,
"max": 100,
"default": 89,
"unit": 1
},
{
"group": "시작",
"name": "SoftHoldMode",
"title": "소프트오토홀드기능(1)",
"descr": "0:사용안함,1:사용,2:SCC제어(오류발생시X)",
"min": 0,
"max": 2,
"default": 1,
"unit": 1
},
{
"group": "시작",
"name": "ExperimentalLongitudinalEnabled",
"title": "롱컨사용(0)",
"descr": "SCC배선개조, 레이터트랙사용시 이용가능",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "시작",
"name": "MixRadarInfo",
"title": "SCC레이더 비젼 MIX",
"descr": "SCC레이더의 부족한 성능을 비젼거리측정데이터와 MIX하여 주행",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "시작",
"name": "SccConnectedBus2",
"title": "SCC배선개조 BUS2연결(0)",
"descr": "",
"min": 0,
"max": 1,
"default": 0,
"unit": 1
},
{
"group": "시작",
"name": "EnableRadarTracks",
"title": "레이더트랙사용(0)",
"descr": "일부차량만 지원됨",
"min": 0,