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

Merge pull request #10487 from mikeller/fix_unused_settings

This commit is contained in:
Michael Keller 2021-02-08 16:12:53 +13:00 committed by GitHub
commit 2480b37b22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1518,6 +1518,8 @@ const clivalue_t valueTable[] = {
// PG_VCD_CONFIG
#if defined(USE_MAX7456) || defined(USE_FRSKYOSD)
{ "vcd_video_system", VAR_UINT8 | MASTER_VALUE | MODE_LOOKUP, .config.lookup = { TABLE_VIDEO_SYSTEM }, PG_VCD_CONFIG, offsetof(vcdProfile_t, video_system) },
#endif
#if defined(USE_MAX7456)
{ "vcd_h_offset", VAR_INT8 | MASTER_VALUE, .config.minmax = { -32, 31 }, PG_VCD_CONFIG, offsetof(vcdProfile_t, h_offset) },
{ "vcd_v_offset", VAR_INT8 | MASTER_VALUE, .config.minmax = { -15, 16 }, PG_VCD_CONFIG, offsetof(vcdProfile_t, v_offset) },
#endif