From 84ae62fcd91aba0dffcd8b3335bc87b8fd035d62 Mon Sep 17 00:00:00 2001 From: Theodore Ateba Date: Sat, 24 Dec 2022 23:24:48 +0000 Subject: [PATCH] [AVR] Fix code style for all testhal/AVR files. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15912 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- testhal/AVR/MEGA/ICU/main.c | 2 +- testhal/AVR/multi/PAL/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testhal/AVR/MEGA/ICU/main.c b/testhal/AVR/MEGA/ICU/main.c index 6f7f82795..7153604fa 100644 --- a/testhal/AVR/MEGA/ICU/main.c +++ b/testhal/AVR/MEGA/ICU/main.c @@ -91,7 +91,7 @@ int main(void) { static ICUConfig icu3cfg = { ICU_INPUT_ACTIVE_HIGH, - 0, /* bogus frequency */ + 0, /* Bogus frequency */ width_cb, period_cb, overflow_cb, diff --git a/testhal/AVR/multi/PAL/main.c b/testhal/AVR/multi/PAL/main.c index b2bec0b90..482bbacc5 100644 --- a/testhal/AVR/multi/PAL/main.c +++ b/testhal/AVR/multi/PAL/main.c @@ -55,7 +55,7 @@ int main(void) { */ chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL); - while(TRUE) { + while (TRUE) { chThdSleepMilliseconds(1000); } }