From e74eee2c8dc8c2ac77fd8d0c4f2d9cf586c985c1 Mon Sep 17 00:00:00 2001 From: Thomas Stilwell Date: Sat, 27 Jun 2020 03:49:55 -0500 Subject: [PATCH] boards/openlabs-kw41z-mini: remove obsolete llwu in UART config This was needed in earlier pm_layered PRs but now it will break compiling when LLWU is merged. --- boards/openlabs-kw41z-mini/include/periph_conf.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/boards/openlabs-kw41z-mini/include/periph_conf.h b/boards/openlabs-kw41z-mini/include/periph_conf.h index 3278c172bf87..7f70455bea42 100644 --- a/boards/openlabs-kw41z-mini/include/periph_conf.h +++ b/boards/openlabs-kw41z-mini/include/periph_conf.h @@ -142,9 +142,6 @@ static const uart_conf_t uart_config[] = { .scgc_bit = SIM_SCGC5_LPUART0_SHIFT, .mode = UART_MODE_8N1, .type = KINETIS_LPUART, -#ifdef MODULE_PERIPH_LLWU /* TODO remove ifdef after #11789 is merged */ - .llwu_rx = LLWU_WAKEUP_PIN_PTC6, -#endif }, }; #define UART_NUMOF ARRAY_SIZE(uart_config)