From 8cee81406e75f9378699faa0ab95ac93712d32f5 Mon Sep 17 00:00:00 2001 From: mikeller Date: Sun, 22 Sep 2019 22:37:42 +1200 Subject: [PATCH] Added missing compilation warning for unsupported F3 targets. --- src/main/build/version.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/build/version.c b/src/main/build/version.c index be0eb1bbf..75c7fbf4b 100644 --- a/src/main/build/version.c +++ b/src/main/build/version.c @@ -30,3 +30,7 @@ const char * const buildTime = __TIME__; #ifdef STM32F1 #warning STM32F1 based targets are unsupported as of Betaflight 3.3. #endif + +#ifdef STM32F3 +#warning STM32F3 based targets are unsupported as of Betaflight 4.1. +#endif