1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-15 04:15:26 +03:00

fix clang warnings (unused variables)

This commit is contained in:
Raphael Coeffic 2019-08-19 08:27:05 +02:00
parent 82b7f719e8
commit 137374bd2f
3 changed files with 14 additions and 14 deletions

View file

@ -47,7 +47,7 @@
* Retrieves the version of the bootloader or firmware
* @return
*/
#if defined(STM32)
#if defined(STM32) && !defined(SIMU)
__SECTION_USED(".fwversiondata") const char firmware_version[] = "opentx-" FLAVOUR "-" VERSION " (" GIT_STR ")";
__SECTION_USED(".bootversiondata") const char boot_version[] = "opentx-" FLAVOUR "-" VERSION " (" GIT_STR ")";