From f205a0b25f4f9117866bc0fc2068d6609240dc9f Mon Sep 17 00:00:00 2001 From: Peter Feerick Date: Wed, 20 Nov 2024 04:22:30 +0000 Subject: [PATCH] PL18 has RGB Led SF support also As does the PL18EV, which is currently treated the same by Companion (branch being worked on to fix that). --- companion/src/firmwares/boards.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/companion/src/firmwares/boards.cpp b/companion/src/firmwares/boards.cpp index 07a581a76f4..78d093feb25 100644 --- a/companion/src/firmwares/boards.cpp +++ b/companion/src/firmwares/boards.cpp @@ -332,7 +332,8 @@ int Boards::getCapability(Board::Type board, Board::Capability capability) return (IS_STM32(board) && !IS_TARANIS_X9(board)); case HasLedStripGPIO: - return IS_RADIOMASTER_MT12(board) || (board == BOARD_HELLORADIOSKY_V16); + return IS_RADIOMASTER_MT12(board) || (board == BOARD_HELLORADIOSKY_V16) || + IS_FLYSKY_PL18(board); case HasSDCard: return IS_STM32(board);