1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +03:00

Added missing compilation warning for unsupported F3 targets. (#8930)

Added missing compilation warning for unsupported F3 targets.
This commit is contained in:
Michael Keller 2019-09-24 22:35:29 +12:00 committed by GitHub
commit 064ca9b75e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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