1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/periph/selftest_shield: fix a misplaced comment

Move it to the correct place
This commit is contained in:
Marian Buschsieweke 2023-11-22 09:34:38 +01:00
parent 64b95a34e9
commit fb9abe3626
No known key found for this signature in database
GPG Key ID: 77AA882EC78084E6

View File

@ -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);
}