ardupilot/libraries/APO/AP_Var_keys.h

28 lines
357 B
C
Raw Normal View History

2011-09-28 21:51:12 -03:00
#ifndef AP_Var_keys_H
#define AP_Var_keys_H
enum keys {
2011-10-26 13:31:11 -03:00
// general
k_config = 0,
k_cntrl,
k_guide,
k_sensorCalib,
2012-06-13 16:00:20 -03:00
k_camera,
2011-12-06 19:56:16 -04:00
k_nav,
2011-09-28 21:51:12 -03:00
2011-10-26 13:31:11 -03:00
k_radioChannelsStart=10,
2011-09-28 21:51:12 -03:00
2011-10-26 13:31:11 -03:00
k_controllersStart=30,
2011-09-28 21:51:12 -03:00
2011-10-26 13:31:11 -03:00
k_customStart=100,
2011-09-28 21:51:12 -03:00
2011-10-26 13:31:11 -03:00
// 200-256 reserved for commands
k_commands = 200
2011-09-28 21:51:12 -03:00
};
// max 256 keys
#endif
2011-10-26 15:59:40 -03:00
// vim:ts=4:sw=4:expandtab