From a096703b06008065aa400a5e0c405d8f42318320 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Wed, 23 Dec 2015 15:29:19 -0200 Subject: [PATCH] Global: don't link with AP_Progmem AP_Progmem is not used anymore. --- APMrover2/make.inc | 1 - AntennaTracker/make.inc | 1 - ArduCopter/make.inc | 1 - ArduPlane/make.inc | 1 - Tools/CPUInfo/make.inc | 1 - Tools/Hello/make.inc | 1 - Tools/Replay/make.inc | 1 - Tools/ardupilotwaf/ardupilotwaf.py | 1 - libraries/AC_PID/examples/AC_PID_test/make.inc | 1 - libraries/AP_ADC/examples/AP_ADC_test/make.inc | 1 - libraries/AP_AHRS/examples/AHRS_Test/make.inc | 1 - libraries/AP_Airspeed/examples/Airspeed/make.inc | 1 - libraries/AP_Baro/examples/BARO_generic/make.inc | 1 - libraries/AP_BattMonitor/examples/AP_BattMonitor_test/make.inc | 1 - libraries/AP_Common/examples/AP_Common/make.inc | 1 - libraries/AP_Compass/examples/AP_Compass_test/make.inc | 1 - libraries/AP_Declination/examples/AP_Declination_test/make.inc | 1 - libraries/AP_GPS/examples/GPS_AUTO_test/make.inc | 1 - libraries/AP_GPS/examples/GPS_UBLOX_passthrough/make.inc | 1 - libraries/AP_HAL/examples/AnalogIn/make.inc | 1 - libraries/AP_HAL/examples/Printf/make.inc | 1 - libraries/AP_HAL/examples/RCInput/make.inc | 1 - libraries/AP_HAL/examples/RCInputToRCOutput/make.inc | 1 - libraries/AP_HAL/examples/RCOutput/make.inc | 1 - libraries/AP_HAL/examples/Storage/make.inc | 1 - libraries/AP_HAL/examples/UART_test/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/AP_Baro_BMP085_test/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/AnalogIn/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/Blink/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/Console/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/I2CDriver_HMC5883L/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/RCInput/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/RCPassthroughTest/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/SPIDriver/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/Scheduler/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/Semaphore/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/Storage/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/UARTDriver/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/UtilityStringTest/make.inc | 1 - libraries/AP_HAL_FLYMAPLE/examples/empty_example/make.inc | 1 - libraries/AP_HAL_Linux/examples/BusTest/make.inc | 1 - libraries/AP_HAL_PX4/examples/simple/make.inc | 1 - libraries/AP_InertialSensor/examples/INS_generic/make.inc | 1 - libraries/AP_InertialSensor/examples/VibTest/make.inc | 1 - libraries/AP_Math/examples/eulers/make.inc | 1 - libraries/AP_Math/examples/location/make.inc | 1 - libraries/AP_Math/examples/polygon/make.inc | 1 - libraries/AP_Math/examples/rotations/make.inc | 1 - libraries/AP_Mission/examples/AP_Mission_test/make.inc | 1 - libraries/AP_Motors/examples/AP_Motors_Time_test/make.inc | 1 - libraries/AP_Motors/examples/AP_Motors_test/make.inc | 1 - libraries/AP_Mount/examples/trivial_AP_Mount/make.inc | 1 - libraries/AP_Notify/examples/AP_Notify_test/make.inc | 1 - libraries/AP_Notify/examples/ToshibaLED_test/make.inc | 1 - libraries/AP_OpticalFlow/examples/AP_OpticalFlow_test/make.inc | 1 - libraries/AP_Parachute/examples/AP_Parachute_test/make.inc | 1 - libraries/AP_PerfMon/AP_PerfMon_test/make.inc | 1 - libraries/AP_RangeFinder/examples/RFIND_test/make.inc | 1 - libraries/AP_Scheduler/examples/Scheduler_test/make.inc | 1 - libraries/DataFlash/examples/DataFlash_test/make.inc | 1 - libraries/Filter/examples/Derivative/make.inc | 1 - libraries/Filter/examples/Filter/make.inc | 1 - libraries/Filter/examples/LowPassFilter/make.inc | 1 - libraries/Filter/examples/LowPassFilter2p/make.inc | 1 - libraries/GCS_Console/examples/Console/make.inc | 1 - libraries/GCS_MAVLink/examples/routing/make.inc | 1 - libraries/PID/examples/pid/make.inc | 1 - libraries/RC_Channel/examples/RC_Channel/make.inc | 1 - libraries/RC_Channel/examples/RC_UART/make.inc | 1 - libraries/StorageManager/examples/StorageTest/make.inc | 1 - 70 files changed, 70 deletions(-) diff --git a/APMrover2/make.inc b/APMrover2/make.inc index 00b9d19a19..5d2673a891 100644 --- a/APMrover2/make.inc +++ b/APMrover2/make.inc @@ -1,5 +1,4 @@ LIBRARIES = AP_Common -LIBRARIES += AP_Progmem LIBRARIES += AP_Menu LIBRARIES += AP_Param LIBRARIES += StorageManager diff --git a/AntennaTracker/make.inc b/AntennaTracker/make.inc index 4a14db843e..7912b28849 100644 --- a/AntennaTracker/make.inc +++ b/AntennaTracker/make.inc @@ -1,5 +1,4 @@ LIBRARIES += AP_Common -LIBRARIES += AP_Progmem LIBRARIES += AP_Param LIBRARIES += StorageManager LIBRARIES += AP_GPS diff --git a/ArduCopter/make.inc b/ArduCopter/make.inc index 9c7ea687ec..25174e1758 100644 --- a/ArduCopter/make.inc +++ b/ArduCopter/make.inc @@ -1,5 +1,4 @@ LIBRARIES += AP_Common -LIBRARIES += AP_Progmem LIBRARIES += AP_Menu LIBRARIES += AP_Param LIBRARIES += StorageManager diff --git a/ArduPlane/make.inc b/ArduPlane/make.inc index 954f564ffb..6e254d6379 100644 --- a/ArduPlane/make.inc +++ b/ArduPlane/make.inc @@ -1,5 +1,4 @@ LIBRARIES += AP_Common -LIBRARIES += AP_Progmem LIBRARIES += AP_Menu LIBRARIES += AP_Param LIBRARIES += StorageManager diff --git a/Tools/CPUInfo/make.inc b/Tools/CPUInfo/make.inc index 7f9a6a9b47..742c4709c3 100644 --- a/Tools/CPUInfo/make.inc +++ b/Tools/CPUInfo/make.inc @@ -14,7 +14,6 @@ LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_OpticalFlow LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/Tools/Hello/make.inc b/Tools/Hello/make.inc index e1e57a6bac..294358e1ab 100644 --- a/Tools/Hello/make.inc +++ b/Tools/Hello/make.inc @@ -10,7 +10,6 @@ LIBRARIES += AP_InertialSensor LIBRARIES += AP_Math LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Vehicle LIBRARIES += DataFlash LIBRARIES += Filter diff --git a/Tools/Replay/make.inc b/Tools/Replay/make.inc index d433215784..5ff462505b 100644 --- a/Tools/Replay/make.inc +++ b/Tools/Replay/make.inc @@ -1,5 +1,4 @@ LIBRARIES += AP_Common -LIBRARIES += AP_Progmem LIBRARIES += AP_Param LIBRARIES += StorageManager LIBRARIES += AP_Math diff --git a/Tools/ardupilotwaf/ardupilotwaf.py b/Tools/ardupilotwaf/ardupilotwaf.py index d3ffeea38b..ffd2e0d21d 100644 --- a/Tools/ardupilotwaf/ardupilotwaf.py +++ b/Tools/ardupilotwaf/ardupilotwaf.py @@ -36,7 +36,6 @@ COMMON_VEHICLE_DEPENDENT_LIBRARIES = [ 'AP_Notify', 'AP_OpticalFlow', 'AP_Param', - 'AP_Progmem', 'AP_Rally', 'AP_RangeFinder', 'AP_Scheduler', diff --git a/libraries/AC_PID/examples/AC_PID_test/make.inc b/libraries/AC_PID/examples/AC_PID_test/make.inc index e89a208eba..64254932b9 100644 --- a/libraries/AC_PID/examples/AC_PID_test/make.inc +++ b/libraries/AC_PID/examples/AC_PID_test/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_ADC/examples/AP_ADC_test/make.inc b/libraries/AP_ADC/examples/AP_ADC_test/make.inc index 30f95b3a34..7f58797162 100644 --- a/libraries/AP_ADC/examples/AP_ADC_test/make.inc +++ b/libraries/AP_ADC/examples/AP_ADC_test/make.inc @@ -2,5 +2,4 @@ LIBRARIES += AP_ADC LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += StorageManager diff --git a/libraries/AP_AHRS/examples/AHRS_Test/make.inc b/libraries/AP_AHRS/examples/AHRS_Test/make.inc index 0be43fe85d..20f2bb4876 100644 --- a/libraries/AP_AHRS/examples/AHRS_Test/make.inc +++ b/libraries/AP_AHRS/examples/AHRS_Test/make.inc @@ -14,7 +14,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_Airspeed/examples/Airspeed/make.inc b/libraries/AP_Airspeed/examples/Airspeed/make.inc index fac003bcef..fc80e94468 100644 --- a/libraries/AP_Airspeed/examples/Airspeed/make.inc +++ b/libraries/AP_Airspeed/examples/Airspeed/make.inc @@ -14,7 +14,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Terrain diff --git a/libraries/AP_Baro/examples/BARO_generic/make.inc b/libraries/AP_Baro/examples/BARO_generic/make.inc index 0d78387226..080a4cce28 100644 --- a/libraries/AP_Baro/examples/BARO_generic/make.inc +++ b/libraries/AP_Baro/examples/BARO_generic/make.inc @@ -14,7 +14,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_BattMonitor/examples/AP_BattMonitor_test/make.inc b/libraries/AP_BattMonitor/examples/AP_BattMonitor_test/make.inc index 595fbaa329..f61789dfff 100644 --- a/libraries/AP_BattMonitor/examples/AP_BattMonitor_test/make.inc +++ b/libraries/AP_BattMonitor/examples/AP_BattMonitor_test/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Terrain diff --git a/libraries/AP_Common/examples/AP_Common/make.inc b/libraries/AP_Common/examples/AP_Common/make.inc index 2a089fa174..262ec49227 100644 --- a/libraries/AP_Common/examples/AP_Common/make.inc +++ b/libraries/AP_Common/examples/AP_Common/make.inc @@ -1,6 +1,5 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += StorageManager LIBRARIES += AP_ADC diff --git a/libraries/AP_Compass/examples/AP_Compass_test/make.inc b/libraries/AP_Compass/examples/AP_Compass_test/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/AP_Compass/examples/AP_Compass_test/make.inc +++ b/libraries/AP_Compass/examples/AP_Compass_test/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_Declination/examples/AP_Declination_test/make.inc b/libraries/AP_Declination/examples/AP_Declination_test/make.inc index e12a370b8e..cd780856fa 100644 --- a/libraries/AP_Declination/examples/AP_Declination_test/make.inc +++ b/libraries/AP_Declination/examples/AP_Declination_test/make.inc @@ -3,7 +3,6 @@ LIBRARIES += AP_Common LIBRARIES += AP_Declination LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += Filter LIBRARIES += StorageManager LIBRARIES += AP_ADC diff --git a/libraries/AP_GPS/examples/GPS_AUTO_test/make.inc b/libraries/AP_GPS/examples/GPS_AUTO_test/make.inc index fd3e95f3da..bbcb97b551 100644 --- a/libraries/AP_GPS/examples/GPS_AUTO_test/make.inc +++ b/libraries/AP_GPS/examples/GPS_AUTO_test/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_GPS/examples/GPS_UBLOX_passthrough/make.inc b/libraries/AP_GPS/examples/GPS_UBLOX_passthrough/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/AP_GPS/examples/GPS_UBLOX_passthrough/make.inc +++ b/libraries/AP_GPS/examples/GPS_UBLOX_passthrough/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_HAL/examples/AnalogIn/make.inc b/libraries/AP_HAL/examples/AnalogIn/make.inc index 5033b8b3fc..2ad51f4fd4 100644 --- a/libraries/AP_HAL/examples/AnalogIn/make.inc +++ b/libraries/AP_HAL/examples/AnalogIn/make.inc @@ -1,5 +1,4 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += StorageManager diff --git a/libraries/AP_HAL/examples/Printf/make.inc b/libraries/AP_HAL/examples/Printf/make.inc index 595fbaa329..f61789dfff 100644 --- a/libraries/AP_HAL/examples/Printf/make.inc +++ b/libraries/AP_HAL/examples/Printf/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Terrain diff --git a/libraries/AP_HAL/examples/RCInput/make.inc b/libraries/AP_HAL/examples/RCInput/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/AP_HAL/examples/RCInput/make.inc +++ b/libraries/AP_HAL/examples/RCInput/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_HAL/examples/RCInputToRCOutput/make.inc b/libraries/AP_HAL/examples/RCInputToRCOutput/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/AP_HAL/examples/RCInputToRCOutput/make.inc +++ b/libraries/AP_HAL/examples/RCInputToRCOutput/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_HAL/examples/RCOutput/make.inc b/libraries/AP_HAL/examples/RCOutput/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/AP_HAL/examples/RCOutput/make.inc +++ b/libraries/AP_HAL/examples/RCOutput/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_HAL/examples/Storage/make.inc b/libraries/AP_HAL/examples/Storage/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/AP_HAL/examples/Storage/make.inc +++ b/libraries/AP_HAL/examples/Storage/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_HAL/examples/UART_test/make.inc b/libraries/AP_HAL/examples/UART_test/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/AP_HAL/examples/UART_test/make.inc +++ b/libraries/AP_HAL/examples/UART_test/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_HAL_FLYMAPLE/examples/AP_Baro_BMP085_test/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/AP_Baro_BMP085_test/make.inc index 4eef579242..0812039aa2 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/AP_Baro_BMP085_test/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/AP_Baro_BMP085_test/make.inc @@ -7,7 +7,6 @@ LIBRARIES += AP_Math LIBRARIES += AP_Mission LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Terrain LIBRARIES += DataFlash LIBRARIES += Filter diff --git a/libraries/AP_HAL_FLYMAPLE/examples/AnalogIn/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/AnalogIn/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/AnalogIn/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/AnalogIn/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/Blink/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/Blink/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/Blink/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/Blink/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/Console/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/Console/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/Console/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/Console/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/I2CDriver_HMC5883L/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/I2CDriver_HMC5883L/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/I2CDriver_HMC5883L/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/I2CDriver_HMC5883L/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/RCInput/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/RCInput/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/RCInput/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/RCInput/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/RCPassthroughTest/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/RCPassthroughTest/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/RCPassthroughTest/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/RCPassthroughTest/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/SPIDriver/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/SPIDriver/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/SPIDriver/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/SPIDriver/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/Scheduler/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/Scheduler/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/Scheduler/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/Scheduler/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/Semaphore/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/Semaphore/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/Semaphore/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/Semaphore/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/Storage/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/Storage/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/Storage/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/Storage/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/UARTDriver/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/UARTDriver/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/UARTDriver/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/UARTDriver/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/UtilityStringTest/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/UtilityStringTest/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/UtilityStringTest/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/UtilityStringTest/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_FLYMAPLE/examples/empty_example/make.inc b/libraries/AP_HAL_FLYMAPLE/examples/empty_example/make.inc index f7222d8a8f..2c7951a6d5 100644 --- a/libraries/AP_HAL_FLYMAPLE/examples/empty_example/make.inc +++ b/libraries/AP_HAL_FLYMAPLE/examples/empty_example/make.inc @@ -1,4 +1,3 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem diff --git a/libraries/AP_HAL_Linux/examples/BusTest/make.inc b/libraries/AP_HAL_Linux/examples/BusTest/make.inc index 2a089fa174..262ec49227 100644 --- a/libraries/AP_HAL_Linux/examples/BusTest/make.inc +++ b/libraries/AP_HAL_Linux/examples/BusTest/make.inc @@ -1,6 +1,5 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += StorageManager LIBRARIES += AP_ADC diff --git a/libraries/AP_HAL_PX4/examples/simple/make.inc b/libraries/AP_HAL_PX4/examples/simple/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/AP_HAL_PX4/examples/simple/make.inc +++ b/libraries/AP_HAL_PX4/examples/simple/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_InertialSensor/examples/INS_generic/make.inc b/libraries/AP_InertialSensor/examples/INS_generic/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/AP_InertialSensor/examples/INS_generic/make.inc +++ b/libraries/AP_InertialSensor/examples/INS_generic/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_InertialSensor/examples/VibTest/make.inc b/libraries/AP_InertialSensor/examples/VibTest/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/AP_InertialSensor/examples/VibTest/make.inc +++ b/libraries/AP_InertialSensor/examples/VibTest/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_Math/examples/eulers/make.inc b/libraries/AP_Math/examples/eulers/make.inc index 56df0835de..ff6d836dde 100644 --- a/libraries/AP_Math/examples/eulers/make.inc +++ b/libraries/AP_Math/examples/eulers/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Terrain diff --git a/libraries/AP_Math/examples/location/make.inc b/libraries/AP_Math/examples/location/make.inc index e36947800b..bdd71095c3 100644 --- a/libraries/AP_Math/examples/location/make.inc +++ b/libraries/AP_Math/examples/location/make.inc @@ -14,7 +14,6 @@ LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_OpticalFlow LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Terrain diff --git a/libraries/AP_Math/examples/polygon/make.inc b/libraries/AP_Math/examples/polygon/make.inc index e36947800b..bdd71095c3 100644 --- a/libraries/AP_Math/examples/polygon/make.inc +++ b/libraries/AP_Math/examples/polygon/make.inc @@ -14,7 +14,6 @@ LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_OpticalFlow LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Terrain diff --git a/libraries/AP_Math/examples/rotations/make.inc b/libraries/AP_Math/examples/rotations/make.inc index 78a86896b6..10147f7261 100644 --- a/libraries/AP_Math/examples/rotations/make.inc +++ b/libraries/AP_Math/examples/rotations/make.inc @@ -1,5 +1,4 @@ LIBRARIES += AP_Common -LIBRARIES += AP_Progmem LIBRARIES += AP_Param LIBRARIES += AP_Math LIBRARIES += Filter diff --git a/libraries/AP_Mission/examples/AP_Mission_test/make.inc b/libraries/AP_Mission/examples/AP_Mission_test/make.inc index 318ec37c93..e3e9d79d32 100644 --- a/libraries/AP_Mission/examples/AP_Mission_test/make.inc +++ b/libraries/AP_Mission/examples/AP_Mission_test/make.inc @@ -15,7 +15,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Terrain diff --git a/libraries/AP_Motors/examples/AP_Motors_Time_test/make.inc b/libraries/AP_Motors/examples/AP_Motors_Time_test/make.inc index 60408885d2..6e77bc7a23 100644 --- a/libraries/AP_Motors/examples/AP_Motors_Time_test/make.inc +++ b/libraries/AP_Motors/examples/AP_Motors_Time_test/make.inc @@ -15,7 +15,6 @@ LIBRARIES += AP_Motors LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_RangeFinder LIBRARIES += AP_Terrain LIBRARIES += AP_Vehicle diff --git a/libraries/AP_Motors/examples/AP_Motors_test/make.inc b/libraries/AP_Motors/examples/AP_Motors_test/make.inc index 60408885d2..6e77bc7a23 100644 --- a/libraries/AP_Motors/examples/AP_Motors_test/make.inc +++ b/libraries/AP_Motors/examples/AP_Motors_test/make.inc @@ -15,7 +15,6 @@ LIBRARIES += AP_Motors LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_RangeFinder LIBRARIES += AP_Terrain LIBRARIES += AP_Vehicle diff --git a/libraries/AP_Mount/examples/trivial_AP_Mount/make.inc b/libraries/AP_Mount/examples/trivial_AP_Mount/make.inc index 43517f9e3b..35adf7d64b 100644 --- a/libraries/AP_Mount/examples/trivial_AP_Mount/make.inc +++ b/libraries/AP_Mount/examples/trivial_AP_Mount/make.inc @@ -14,7 +14,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_Mount LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Terrain LIBRARIES += AP_Vehicle LIBRARIES += DataFlash diff --git a/libraries/AP_Notify/examples/AP_Notify_test/make.inc b/libraries/AP_Notify/examples/AP_Notify_test/make.inc index 638b40291f..d2a16bf718 100644 --- a/libraries/AP_Notify/examples/AP_Notify_test/make.inc +++ b/libraries/AP_Notify/examples/AP_Notify_test/make.inc @@ -2,7 +2,6 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_RangeFinder LIBRARIES += GCS_MAVLink LIBRARIES += StorageManager diff --git a/libraries/AP_Notify/examples/ToshibaLED_test/make.inc b/libraries/AP_Notify/examples/ToshibaLED_test/make.inc index 490153c319..cd773161c0 100644 --- a/libraries/AP_Notify/examples/ToshibaLED_test/make.inc +++ b/libraries/AP_Notify/examples/ToshibaLED_test/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler LIBRARIES += AP_Terrain diff --git a/libraries/AP_OpticalFlow/examples/AP_OpticalFlow_test/make.inc b/libraries/AP_OpticalFlow/examples/AP_OpticalFlow_test/make.inc index 9831431a03..fbfa2679d9 100644 --- a/libraries/AP_OpticalFlow/examples/AP_OpticalFlow_test/make.inc +++ b/libraries/AP_OpticalFlow/examples/AP_OpticalFlow_test/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_Notify LIBRARIES += AP_OpticalFlow LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Scheduler LIBRARIES += AP_Terrain LIBRARIES += AP_Vehicle diff --git a/libraries/AP_Parachute/examples/AP_Parachute_test/make.inc b/libraries/AP_Parachute/examples/AP_Parachute_test/make.inc index c38d76f87f..451d32ad5f 100644 --- a/libraries/AP_Parachute/examples/AP_Parachute_test/make.inc +++ b/libraries/AP_Parachute/examples/AP_Parachute_test/make.inc @@ -3,7 +3,6 @@ LIBRARIES += AP_Math LIBRARIES += AP_Notify LIBRARIES += AP_Parachute LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Relay LIBRARIES += RC_Channel LIBRARIES += StorageManager diff --git a/libraries/AP_PerfMon/AP_PerfMon_test/make.inc b/libraries/AP_PerfMon/AP_PerfMon_test/make.inc index 23185ed3ca..7baa1ae2e6 100644 --- a/libraries/AP_PerfMon/AP_PerfMon_test/make.inc +++ b/libraries/AP_PerfMon/AP_PerfMon_test/make.inc @@ -2,5 +2,4 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param LIBRARIES += AP_PerfMon -LIBRARIES += AP_Progmem LIBRARIES += StorageManager diff --git a/libraries/AP_RangeFinder/examples/RFIND_test/make.inc b/libraries/AP_RangeFinder/examples/RFIND_test/make.inc index 866eee1401..3d8e5b8c7b 100644 --- a/libraries/AP_RangeFinder/examples/RFIND_test/make.inc +++ b/libraries/AP_RangeFinder/examples/RFIND_test/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/AP_Scheduler/examples/Scheduler_test/make.inc b/libraries/AP_Scheduler/examples/Scheduler_test/make.inc index f1cae3b3a8..e8db4daca3 100644 --- a/libraries/AP_Scheduler/examples/Scheduler_test/make.inc +++ b/libraries/AP_Scheduler/examples/Scheduler_test/make.inc @@ -14,7 +14,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/DataFlash/examples/DataFlash_test/make.inc b/libraries/DataFlash/examples/DataFlash_test/make.inc index 7f9a6a9b47..742c4709c3 100644 --- a/libraries/DataFlash/examples/DataFlash_test/make.inc +++ b/libraries/DataFlash/examples/DataFlash_test/make.inc @@ -14,7 +14,6 @@ LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_OpticalFlow LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/Filter/examples/Derivative/make.inc b/libraries/Filter/examples/Derivative/make.inc index 757495e4f7..ef6315997b 100644 --- a/libraries/Filter/examples/Derivative/make.inc +++ b/libraries/Filter/examples/Derivative/make.inc @@ -1,7 +1,6 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += Filter LIBRARIES += StorageManager LIBRARIES += AP_ADC diff --git a/libraries/Filter/examples/Filter/make.inc b/libraries/Filter/examples/Filter/make.inc index f36addf6bf..c63a2d9896 100644 --- a/libraries/Filter/examples/Filter/make.inc +++ b/libraries/Filter/examples/Filter/make.inc @@ -1,7 +1,6 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += Filter LIBRARIES += StorageManager LIBRARIES += AP_ADC diff --git a/libraries/Filter/examples/LowPassFilter/make.inc b/libraries/Filter/examples/LowPassFilter/make.inc index 757495e4f7..ef6315997b 100644 --- a/libraries/Filter/examples/LowPassFilter/make.inc +++ b/libraries/Filter/examples/LowPassFilter/make.inc @@ -1,7 +1,6 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += Filter LIBRARIES += StorageManager LIBRARIES += AP_ADC diff --git a/libraries/Filter/examples/LowPassFilter2p/make.inc b/libraries/Filter/examples/LowPassFilter2p/make.inc index f36addf6bf..c63a2d9896 100644 --- a/libraries/Filter/examples/LowPassFilter2p/make.inc +++ b/libraries/Filter/examples/LowPassFilter2p/make.inc @@ -1,7 +1,6 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += Filter LIBRARIES += StorageManager LIBRARIES += AP_ADC diff --git a/libraries/GCS_Console/examples/Console/make.inc b/libraries/GCS_Console/examples/Console/make.inc index cb5c4fd62d..a50f8eceb7 100644 --- a/libraries/GCS_Console/examples/Console/make.inc +++ b/libraries/GCS_Console/examples/Console/make.inc @@ -2,7 +2,6 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Mission LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Terrain LIBRARIES += GCS_Console LIBRARIES += GCS_MAVLink diff --git a/libraries/GCS_MAVLink/examples/routing/make.inc b/libraries/GCS_MAVLink/examples/routing/make.inc index a890f302d4..f954c1c34f 100644 --- a/libraries/GCS_MAVLink/examples/routing/make.inc +++ b/libraries/GCS_MAVLink/examples/routing/make.inc @@ -13,7 +13,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/PID/examples/pid/make.inc b/libraries/PID/examples/pid/make.inc index 44f89419a9..35583dc2ba 100644 --- a/libraries/PID/examples/pid/make.inc +++ b/libraries/PID/examples/pid/make.inc @@ -1,7 +1,6 @@ LIBRARIES += AP_Common LIBRARIES += AP_Math LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += PID LIBRARIES += StorageManager LIBRARIES += AP_ADC diff --git a/libraries/RC_Channel/examples/RC_Channel/make.inc b/libraries/RC_Channel/examples/RC_Channel/make.inc index 52a64e1764..1148fdaf6e 100644 --- a/libraries/RC_Channel/examples/RC_Channel/make.inc +++ b/libraries/RC_Channel/examples/RC_Channel/make.inc @@ -12,7 +12,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/RC_Channel/examples/RC_UART/make.inc b/libraries/RC_Channel/examples/RC_UART/make.inc index 52a64e1764..1148fdaf6e 100644 --- a/libraries/RC_Channel/examples/RC_UART/make.inc +++ b/libraries/RC_Channel/examples/RC_UART/make.inc @@ -12,7 +12,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler diff --git a/libraries/StorageManager/examples/StorageTest/make.inc b/libraries/StorageManager/examples/StorageTest/make.inc index 0ccab2be87..df17f6cf0d 100644 --- a/libraries/StorageManager/examples/StorageTest/make.inc +++ b/libraries/StorageManager/examples/StorageTest/make.inc @@ -12,7 +12,6 @@ LIBRARIES += AP_Mission LIBRARIES += AP_NavEKF LIBRARIES += AP_Notify LIBRARIES += AP_Param -LIBRARIES += AP_Progmem LIBRARIES += AP_Rally LIBRARIES += AP_RangeFinder LIBRARIES += AP_Scheduler