From a3a3b3c7711d48c6dccb711c3bc24098f2fea288 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Spychalski?= Date: Thu, 5 Mar 2026 09:31:18 +0100 Subject: [PATCH 1/2] Disable SIM telemetry for F722 targets due to lack of FLASH memory --- src/main/target/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/target/common.h b/src/main/target/common.h index 45eb12ac4bc..af2170fe1b3 100644 --- a/src/main/target/common.h +++ b/src/main/target/common.h @@ -122,7 +122,6 @@ #define USE_I2C_IO_EXPANDER -#define USE_TELEMETRY_SIM #define USE_TELEMETRY_MAVLINK #define USE_MSP_OVER_TELEMETRY @@ -202,6 +201,7 @@ //Designed to free space of F722 and F411 MCUs #if (MCU_FLASH_SIZE > 512) +#define USE_TELEMETRY_SIM #define USE_VTX_FFPV #define USE_SERIALRX_SUMD #define USE_TELEMETRY_HOTT From 4f73ff7c230f0a8ecdb41f392b7fcdb51dac6232 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Spychalski?= Date: Thu, 5 Mar 2026 12:17:51 +0100 Subject: [PATCH 2/2] Bump PG version --- src/main/telemetry/telemetry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/telemetry/telemetry.c b/src/main/telemetry/telemetry.c index 2c896945843..0d198eae997 100644 --- a/src/main/telemetry/telemetry.c +++ b/src/main/telemetry/telemetry.c @@ -56,7 +56,7 @@ #include "telemetry/ghst.h" -PG_REGISTER_WITH_RESET_TEMPLATE(telemetryConfig_t, telemetryConfig, PG_TELEMETRY_CONFIG, 8); +PG_REGISTER_WITH_RESET_TEMPLATE(telemetryConfig_t, telemetryConfig, PG_TELEMETRY_CONFIG, 9); PG_RESET_TEMPLATE(telemetryConfig_t, telemetryConfig, .telemetry_switch = SETTING_TELEMETRY_SWITCH_DEFAULT,