You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef AP_Var_keys_H |
|
#define AP_Var_keys_H |
|
|
|
enum keys { |
|
|
|
// general |
|
k_config = 0, |
|
k_cntrl, |
|
k_guide, |
|
k_sensorCalib, |
|
|
|
k_radioChannelsStart=10, |
|
|
|
k_controllersStart=30, |
|
|
|
k_customStart=100, |
|
|
|
// 200-256 reserved for commands |
|
k_commands = 200 |
|
}; |
|
|
|
// max 256 keys |
|
|
|
#endif |
|
// vim:ts=4:sw=4:expandtab
|
|
|