From 1619e12001978b6c57050c878fa2a5fb82e0eaac Mon Sep 17 00:00:00 2001 From: "Pawel Spychalski (DzikuVx)" Date: Thu, 19 Nov 2020 21:29:13 +0100 Subject: [PATCH] Disable all F3 targets --- src/main/target/AIRHEROF3/CMakeLists.txt | 4 ++-- src/main/target/FALCORE/CMakeLists.txt | 2 +- src/main/target/FRSKYF3/CMakeLists.txt | 2 +- src/main/target/LUX_RACE/CMakeLists.txt | 2 +- src/main/target/MOTOLAB/CMakeLists.txt | 2 +- src/main/target/PIKOBLX/CMakeLists.txt | 2 +- src/main/target/RCEXPLORERF3/CMakeLists.txt | 2 +- src/main/target/RMDO/CMakeLists.txt | 2 +- src/main/target/SPARKY/CMakeLists.txt | 2 +- src/main/target/SPRACINGF3/CMakeLists.txt | 2 +- src/main/target/SPRACINGF3MINI/CMakeLists.txt | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/main/target/AIRHEROF3/CMakeLists.txt b/src/main/target/AIRHEROF3/CMakeLists.txt index 35634a62bd..07b5697f6b 100644 --- a/src/main/target/AIRHEROF3/CMakeLists.txt +++ b/src/main/target/AIRHEROF3/CMakeLists.txt @@ -1,2 +1,2 @@ -target_stm32f303xc(AIRHEROF3 HSE_MHZ 12) -target_stm32f303xc(AIRHEROF3_QUAD HSE_MHZ 12) +target_stm32f303xc(AIRHEROF3 HSE_MHZ 12 SKIP_RELEASES) +target_stm32f303xc(AIRHEROF3_QUAD HSE_MHZ 12 SKIP_RELEASES) diff --git a/src/main/target/FALCORE/CMakeLists.txt b/src/main/target/FALCORE/CMakeLists.txt index fb2436238e..0750d0a8f2 100644 --- a/src/main/target/FALCORE/CMakeLists.txt +++ b/src/main/target/FALCORE/CMakeLists.txt @@ -1 +1 @@ -target_stm32f303xc(FALCORE HSE_MHZ 12) +target_stm32f303xc(FALCORE HSE_MHZ 12 SKIP_RELEASES) diff --git a/src/main/target/FRSKYF3/CMakeLists.txt b/src/main/target/FRSKYF3/CMakeLists.txt index 0ce4048685..569304f5f8 100644 --- a/src/main/target/FRSKYF3/CMakeLists.txt +++ b/src/main/target/FRSKYF3/CMakeLists.txt @@ -1 +1 @@ -target_stm32f303xc(FRSKYF3) +target_stm32f303xc(FRSKYF3 SKIP_RELEASES) diff --git a/src/main/target/LUX_RACE/CMakeLists.txt b/src/main/target/LUX_RACE/CMakeLists.txt index d052694896..e231bc8ed0 100644 --- a/src/main/target/LUX_RACE/CMakeLists.txt +++ b/src/main/target/LUX_RACE/CMakeLists.txt @@ -1 +1 @@ -target_stm32f303xc(LUX_RACE) +target_stm32f303xc(LUX_RACE SKIP_RELEASES) diff --git a/src/main/target/MOTOLAB/CMakeLists.txt b/src/main/target/MOTOLAB/CMakeLists.txt index 44a615e98d..c485338122 100644 --- a/src/main/target/MOTOLAB/CMakeLists.txt +++ b/src/main/target/MOTOLAB/CMakeLists.txt @@ -1 +1 @@ -target_stm32f303xc(MOTOLAB) +target_stm32f303xc(MOTOLAB SKIP_RELEASES) diff --git a/src/main/target/PIKOBLX/CMakeLists.txt b/src/main/target/PIKOBLX/CMakeLists.txt index b9357a9f98..6adec7bb8c 100644 --- a/src/main/target/PIKOBLX/CMakeLists.txt +++ b/src/main/target/PIKOBLX/CMakeLists.txt @@ -1 +1 @@ -target_stm32f303xc(PIKOBLX) +target_stm32f303xc(PIKOBLX SKIP_RELEASES) diff --git a/src/main/target/RCEXPLORERF3/CMakeLists.txt b/src/main/target/RCEXPLORERF3/CMakeLists.txt index cdb3b34ed0..f97e1ccb10 100644 --- a/src/main/target/RCEXPLORERF3/CMakeLists.txt +++ b/src/main/target/RCEXPLORERF3/CMakeLists.txt @@ -1 +1 @@ -target_stm32f303xc(RCEXPLORERF3) +target_stm32f303xc(RCEXPLORERF3 SKIP_RELEASES) diff --git a/src/main/target/RMDO/CMakeLists.txt b/src/main/target/RMDO/CMakeLists.txt index 541927fed0..ed40102c52 100644 --- a/src/main/target/RMDO/CMakeLists.txt +++ b/src/main/target/RMDO/CMakeLists.txt @@ -1 +1 @@ -target_stm32f303xc(RMDO COMPILE_DEFINITIONS "SPRACINGF3") +target_stm32f303xc(RMDO COMPILE_DEFINITIONS "SPRACINGF3" SKIP_RELEASES) diff --git a/src/main/target/SPARKY/CMakeLists.txt b/src/main/target/SPARKY/CMakeLists.txt index 10bb24b0ab..7b7f68dfb7 100644 --- a/src/main/target/SPARKY/CMakeLists.txt +++ b/src/main/target/SPARKY/CMakeLists.txt @@ -1 +1 @@ -target_stm32f303xc(SPARKY) +target_stm32f303xc(SPARKY SKIP_RELEASES) diff --git a/src/main/target/SPRACINGF3/CMakeLists.txt b/src/main/target/SPRACINGF3/CMakeLists.txt index 2840cbef85..ad78e9a151 100644 --- a/src/main/target/SPRACINGF3/CMakeLists.txt +++ b/src/main/target/SPRACINGF3/CMakeLists.txt @@ -1 +1 @@ -target_stm32f303xc(SPRACINGF3) +target_stm32f303xc(SPRACINGF3 SKIP_RELEASES) diff --git a/src/main/target/SPRACINGF3MINI/CMakeLists.txt b/src/main/target/SPRACINGF3MINI/CMakeLists.txt index e3b633a6d4..c86e361ffd 100644 --- a/src/main/target/SPRACINGF3MINI/CMakeLists.txt +++ b/src/main/target/SPRACINGF3MINI/CMakeLists.txt @@ -1 +1 @@ -target_stm32f303xc(SPRACINGF3MINI) +target_stm32f303xc(SPRACINGF3MINI SKIP_RELEASES)