From 6b88f3367bc4d91432939cce629da01aed6876f2 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Sat, 3 Sep 2016 12:40:40 -0300 Subject: [PATCH] AP_Common: remove AP_PRODUCT_ID_* macros These are not used anymore. --- libraries/AP_Common/AP_Common.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/libraries/AP_Common/AP_Common.h b/libraries/AP_Common/AP_Common.h index cd31fc8b2d..4928cdae00 100644 --- a/libraries/AP_Common/AP_Common.h +++ b/libraries/AP_Common/AP_Common.h @@ -149,19 +149,6 @@ enum HomeState { /// //@{ - -/* Product IDs for all supported products follow */ - -#define AP_PRODUCT_ID_NONE 0x00 // Hardware in the loop -#define AP_PRODUCT_ID_SITL 0x03 // Software in the loop -#define AP_PRODUCT_ID_PX4 0x04 // PX4 on NuttX -#define AP_PRODUCT_ID_PX4_V2 0x05 // PX4 FMU2 on NuttX -#define AP_PRODUCT_ID_PX4_V4 0x06 // PX4 FMU4 on NuttX -#define AP_PRODUCT_ID_L3G4200D 0x101 // Linux with L3G4200D and ADXL345 -#define AP_PRODUCT_ID_PIXHAWK_FIRE_CAPE 0x102 // Linux with the PixHawk Fire Cape -#define AP_PRODUCT_ID_MPU9250 0x103 // MPU9250 -#define AP_PRODUCT_ID_VRBRAIN 0x150 // VRBRAIN on NuttX - /* Return true if value is between lower and upper bound inclusive. False otherwise.