px4-firmware/msg/tune_control.msg

16 lines
649 B
Plaintext
Raw Normal View History

2017-02-27 12:18:36 -04:00
# This message is used to control the tunes, when the tune_id is set to CUSTOM
# then the frequency, duration are used otherwise those values are ignored.
uint64 timestamp # time since system start (microseconds)
2017-08-08 05:20:49 -03:00
uint8 tune_id # tune_id corresponding to TuneID::* from the tune_defaults.h in the tunes library
2017-02-27 12:18:36 -04:00
uint8 tune_override # if set to 1 the tune which is playing will be stopped and the new started
uint16 frequency # in Hz
uint32 duration # in us
2017-08-08 05:20:49 -03:00
uint32 silence # in us
2017-02-27 12:18:36 -04:00
uint8 strength # value between 0-100 if supported by backend
uint8 STRENGTH_MIN = 0
uint8 STRENGTH_NORMAL = 40
uint8 STRENGTH_MAX = 100