Class: MAVLink::Log::Messages::RawImu
Instance Method Summary
collapse
#time_usec
#crc, #id, #initialize
Instance Method Details
#xacc ⇒ Object
5
6
7
|
# File 'lib/mavlink/log/messages/raw_imu.rb', line 5
def xacc
@xacc ||= int16_t(8..9)
end
|
#xgyro ⇒ Object
17
18
19
|
# File 'lib/mavlink/log/messages/raw_imu.rb', line 17
def xgyro
@xgyro ||= int16_t(14..15)
end
|
#xmag ⇒ Object
29
30
31
|
# File 'lib/mavlink/log/messages/raw_imu.rb', line 29
def xmag
@xmag ||= int16_t(20..21)
end
|
#yacc ⇒ Object
9
10
11
|
# File 'lib/mavlink/log/messages/raw_imu.rb', line 9
def yacc
@yacc ||= int16_t(10..11)
end
|
#ygyro ⇒ Object
21
22
23
|
# File 'lib/mavlink/log/messages/raw_imu.rb', line 21
def ygyro
@ygyro ||= int16_t(16..17)
end
|
#ymag ⇒ Object
33
34
35
|
# File 'lib/mavlink/log/messages/raw_imu.rb', line 33
def ymag
@ymag ||= int16_t(22..23)
end
|
#zacc ⇒ Object
13
14
15
|
# File 'lib/mavlink/log/messages/raw_imu.rb', line 13
def zacc
@zacc ||= int16_t(12..13)
end
|
#zgyro ⇒ Object
25
26
27
|
# File 'lib/mavlink/log/messages/raw_imu.rb', line 25
def zgyro
@zgyro ||= int16_t(18..19)
end
|
#zmag ⇒ Object
37
38
39
|
# File 'lib/mavlink/log/messages/raw_imu.rb', line 37
def zmag
@zmag ||= int16_t(24..25)
end
|