AntennaTracker: tidy log message id definitions

Add a comment indicating only 20 ids are available to the vehicle
This commit is contained in:
Peter Barker 2021-12-18 12:21:56 +11:00 committed by Andrew Tridgell
parent db8d08b349
commit 92c5906c1e
1 changed files with 5 additions and 3 deletions

View File

@ -34,6 +34,8 @@ enum class PWMDisarmed {
#define MASK_LOG_CURRENT (1<<6) #define MASK_LOG_CURRENT (1<<6)
#define MASK_LOG_ANY 0xFFFF #define MASK_LOG_ANY 0xFFFF
// Logging messages // Logging messages - only 32 messages are available to the vehicle here.
#define LOG_V_BAR_MSG 0x04 enum log_messages {
#define LOG_V_POS_MSG 0x05 LOG_V_BAR_MSG,
LOG_V_POS_MSG,
};