From 5260d88f9c09d6d88d1e856caea62f704faed5a1 Mon Sep 17 00:00:00 2001 From: bkleiner Date: Wed, 18 Sep 2024 10:44:34 +0800 Subject: [PATCH] tbs_lucid: mask PA13/PA14 to enable debugging --- src/main/target/TBS_LUCID_FC/target.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/target/TBS_LUCID_FC/target.h b/src/main/target/TBS_LUCID_FC/target.h index 7a9ed60fb52..8ee8716133d 100644 --- a/src/main/target/TBS_LUCID_FC/target.h +++ b/src/main/target/TBS_LUCID_FC/target.h @@ -130,7 +130,7 @@ #define VBAT_ADC_CHANNEL ADC_CHN_1 #define CURRENT_METER_ADC_CHANNEL ADC_CHN_2 -#define TARGET_IO_PORTA 0xffff +#define TARGET_IO_PORTA (0xffff & ~(BIT(14)|BIT(13))) #define TARGET_IO_PORTB 0xffff #define TARGET_IO_PORTC 0xffff #define TARGET_IO_PORTD (BIT(2) | BIT(12) | BIT(13))