From 790fabcfbc94678062652792b67d0ef179827b75 Mon Sep 17 00:00:00 2001 From: Dominic Clifton Date: Tue, 23 Apr 2024 02:04:03 +0200 Subject: [PATCH] Fix inability to use the CLI resource command to configure LPUART_RX. (#13568) * See https://github.com/betaflight/betaflight/issues/13567#issuecomment-2068693404 * See https://github.com/betaflight/betaflight/pull/13306#discussion_r1502901863 --- src/main/drivers/resource.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/drivers/resource.c b/src/main/drivers/resource.c index 08be1f2bd..ece5eb91f 100644 --- a/src/main/drivers/resource.c +++ b/src/main/drivers/resource.c @@ -113,6 +113,6 @@ const char * const ownerNames[OWNER_TOTAL_COUNT] = { "RX_SPI_EXPRESSLRS_BUSY", "SOFTSERIAL_TX", "SOFTSERIAL_RX", - [OWNER_LPUART_TX] = "LPUART_TX", - [OWNER_LPUART_RX] = "LPUART_RX", + "LPUART_TX", + "LPUART_RX", }; -- 2.11.4.GIT