From fb9abe3626a8cedc1c33286bbb60b8cd564571be Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Wed, 22 Nov 2023 09:34:38 +0100 Subject: [PATCH] tests/periph/selftest_shield: fix a misplaced comment Move it to the correct place --- tests/periph/selftest_shield/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/periph/selftest_shield/main.c b/tests/periph/selftest_shield/main.c index cf5f2726f6..313908d00c 100644 --- a/tests/periph/selftest_shield/main.c +++ b/tests/periph/selftest_shield/main.c @@ -868,8 +868,8 @@ static bool periph_spi_rxtx_test(spi_t bus, spi_mode_t mode, spi_clk_t clk, * theoretical time. Given the overhead of, this already has some * room for error */ transfer_too_fast |= (byte_time < byte_transfer_ticks); - /* C̅S̅ should be still LOW while chip is selected */ } + /* C̅S̅ should be still LOW while chip is selected */ failed |= TEST(gpio_read(cs_check) == 0); }