-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathuStateRec.pas
More file actions
37 lines (33 loc) · 806 Bytes
/
uStateRec.pas
File metadata and controls
37 lines (33 loc) · 806 Bytes
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
unit uStateRec;
interface
type
TStateRec = record
id_vehicle : Integer;
time_state : TDateTime;
latitude_ex : Cardinal;
longitude_ex : Cardinal;
altitude_ex : Cardinal;
latitude : Double;
longitude : Double;
altitude : Double;
din : Byte;
dout : Byte;
adc1 : Word;
adc2 : Word;
dac : Byte;
charge_level : Byte;
gsm_signal_str: Byte;
flags_state : Byte;
speed_ex : Word;
course_ex : Word;
speed : Double;
course : Double;
running_hours : Cardinal;
journal_size : Cardinal;
newjourn_size : Cardinal;
exstatus : Word;
pos_exists : Boolean;
state_exists : Boolean;
end;
implementation
end.