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

Merge pull request #4171 from iNavFlight/agh_reenable_msp_displayport

Enable MSP_DISPLAYPORT on targets with flash > 128 and no OSD
This commit is contained in:
Konstantin Sharlaimov 2019-01-08 08:25:05 +01:00 committed by GitHub
commit b1e7f71bd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,3 +29,9 @@
# undef USE_DASHBOARD
# undef USE_OLED_UG2864
#endif
// Enable MSP_DISPLAYPORT for F3 targets without builtin OSD,
// since it's used to display CMS on MWOSD
#if !defined(USE_MSP_DISPLAYPORT) && (FLASH_SIZE > 128) && !defined(USE_OSD)
#define USE_MSP_DISPLAYPORT
#endif