source: pacpusframework/branches/2.0-beta1/src/TestComponents/Lidar/appbase.ini@ 89

Last change on this file since 89 was 89, checked in by morasjul, 11 years ago

PACPUS 2.0 Beta deployed in new branch

Major changes:
-Add communication interface between components
-Add examples for communications interface (TestComponents)
-Move to Qt5 support

  • Property svn:executable set to *
File size: 3.6 KB
Line 
1;
2; AppBase.ini
3; Version Number 4.1.7
4; ##################################################################
5; ### Never change unknown or delete any entries in the ini-file ###
6; ##################################################################
7
8[Parameter]
9; ##### CAN parameter #####
10; Bitrate of the CAN connection. 1M or 1 or 20 = 1 MBit/s, 500K or 2 or 28 = 500 kBit/s
11CANBaudrate = 500K
12; Base-ID of the CAN output (1..0x7fe). The following identifiers are used:
13; CANBaseID-1 = ANB messages
14; CANBaseID = Commands to the AppBase, e.g. Parameter setting
15; CANBaseID+1 = Object data
16CANBaseID = 0x4F0
17; CANFormat: 0 = long format, 1 = short format
18; This entry is only valid (and needed) for CANspec AS
19CANFormat = 0
20; ##### Settings for the object tracking #####
21; Stretch factor for the segmentation in x-direction (1.0 - ...).
22XYFactor = 3.0
23; Maximum distance between two scanpoints of the same segment (0.1 - ...)
24MinDist = 0.5
25; Number of points on the object outline. Allowed values are 3-16. 0 = Auto-Select
26ObjectPoints = 0
27; Sorting criterion for the CAN output. 0=Radial distance, 1=Lookahead, 4=Highway
28QualityCriterion = 0
29; Maximum number of objects that may be sent for each scan (0..31)
30SendObjects = 20
31; ##### Output area #####
32; Output area in which the objects must be. If all points are 0, this filter
33; is disabled.
34OutputAreaX1 = 0.0
35OutputAreaY1 = 0.0
36OutputAreaX2 = 0.0
37OutputAreaY2 = 0.0
38; ##### System parameter #####
39; Sensor(s) is mounted upside down (TRUE or FALSE).
40SensorUpsidedown =FLASE
41; Rotation frequency of all connected scanners, in [Hz] (6..40).
42RotationFreq = 12.5
43AppBaseID = 6
44ApplyRoiToScandata = FALSE
45
46[Sensor_0]
47StartAngle = 75.0
48EndAngle = -75.0
49OffsetX = 0.0
50OffsetY = 0.0
51OffsetZ = 0.0
52HorizontalAngleOffset = 0.0
53VerticalAngleOffset = 0.0
54DIRTDIST = 1.3
55SyncMaster = FALSE
56ID = 73
57
58[RS232]
59SENDSTATUS = FALSE
60Baudrate = 38400
61
62[Ethernet_Out]
63ScanDataPort = 12000
64; ##### Parameter for the Vehicle model #####
65; Ratio of the Steering wheel to the front wheels is given by the polynom:
66; SteerRatio = SteerRatio3 * x^3 + SteerRatio2 * X^2 + SteerRatio1 * X + SteerRatio0
67; with X = Steering wheel angle in deg
68
69[Vehicle]
70SteerRatio0 = 1
71SteerRatio1 = 1
72SteerRatio2 = 1
73SteerRatio3 = 1
74CenterToFrontAxle = 1.3
75CenterToRearAxle = 1.35
76DistOriginFront = 0.5
77TurningCircle = 11.0
78VehicleWidth = 1.780
79VehicleLength = 4.839
80; #################################################
81; ### vehicle CAN messages - decode instruction ###
82; [SteeringAngleRatio] not used
83; #################################################
84
85[Velocity]
86Identifier = 0x44D
87FirstBit = 16
88LastBit = 31
89ErrorValue = 0xff
90Factor = 0.00277778
91Offset = 0
92SignBitAvailable = 0
93SignBit = 0
94UseLittleEndian = FALSE
95TwosComplement = 0
96
97[SteeringAngle]
98Identifier = 0x305
99FirstBit = 0
100LastBit = 15
101ErrorValue = 0xFFFF
102; Factor = 0.1
103Offset = 0
104SignBitAvailable = 0
105SignBit = 0
106UseLittleEndian = FALSE
107TwosComplement = 1
108
109[SteeringAngleRatio]
110Identifier = 0x0C2
111FirstBit = 16
112LastBit = 24
113ErrorValue = 0xFFFF
114Factor = 0.00076358155
115Offset = 0
116SignBitAvailable = 1
117SignBit = 15
118UseLittleEndian = TRUE
119TwosComplement = 0
120
121[YawRate]
122Identifier = 0x3CD
123FirstBit = 0
124LastBit = 15
125ErrorValue = 0xFFFF
126Factor = 0.1
127Offset = 0
128SignBitAvailable = 1
129SignBit = 33
130UseLittleEndian = FALSE
131TwosComplement = 0
132
133[CrossAcceleration]
134Identifier = 0x3CD
135FirstBit = 0
136LastBit = 15
137ErrorValue = 0xFFFF
138Factor = 0.05
139Offset = 0
140SignBitAvailable = 1
141SignBit = 32
142UseLittleEndian = FALSE
143TwosComplement = 0
144
Note: See TracBrowser for help on using the repository browser.