1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

Reduce feature cut for BFF3

Reducing the feature cut from 10 to 7 will bring some newer and older useful features back to the BFF3 board without overflowing flash space. As the F3 boards are now seen as unsupported, this change can be made as a maintenance patch at the final supported level.

Notable features:
USE_SERIAL_4WAY_BLHELI_BOOTLOADER, USE_GYRO_LPF2, USE_DYN_LPF, USE_D_MIN


```
Linking BETAFLIGHTF3
Memory region         Used Size  Region Size  %age Used
           FLASH:      257640 B       252 KB     99.84%
    FLASH_CONFIG:          0 GB         4 KB      0.00%
             RAM:       34788 B        40 KB     84.93%
             CCM:          2 KB         8 KB     25.00%
       MEMORY_B1:          0 GB         0 GB     -1.#J%
   text    data     bss     dec     hex filename
 253920    3720   33116  290756   46fc4 ./obj/main/betaflight_BETAFLIGHTF3.elf
```
This commit is contained in:
swilkens 2019-04-22 09:38:09 +02:00 committed by GitHub
parent 94ddf5aceb
commit a999fc38bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@ F3_TARGETS += $(TARGET)
FEATURES = VCP SDCARD_SPI
FEATURE_CUT_LEVEL = 10
FEATURE_CUT_LEVEL = 7
TARGET_SRC = \
drivers/accgyro/accgyro_mpu.c \