From e01381a40290f1dcf8eb1ff467a621050f5a9948 Mon Sep 17 00:00:00 2001 From: David Vazgenovich Shakaryan Date: Sat, 4 Jan 2020 19:13:56 -0800 Subject: consistent function braces --- eq.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'eq.c') diff --git a/eq.c b/eq.c index 846e1fa..a67274e 100644 --- a/eq.c +++ b/eq.c @@ -8,20 +8,23 @@ unsigned char eq_levels[7]; static const unsigned char thresholds[][2] = { EQ_THRESHOLDS }; -static void reset() { +static void reset() +{ PORTB |= (1 << EQ_PIN_RESET); PORTB &= ~(1 << EQ_PIN_RESET); _delay_us(36); } -static void strobe() { +static void strobe() +{ PORTB |= (1 << EQ_PIN_STROBE); _delay_us(36); PORTB &= ~(1 << EQ_PIN_STROBE); _delay_us(36); } -static unsigned char map_level(unsigned char val, unsigned char min, unsigned char max) { +static unsigned char map_level(unsigned char val, unsigned char min, unsigned char max) +{ if (val <= min) return 0; else if (val >= max) @@ -30,7 +33,8 @@ static unsigned char map_level(unsigned char val, unsigned char min, unsigned ch return (val - min) * 255 / (max - min); } -void eq_read() { +void eq_read() +{ reset(); for (int i = 0; i < 7; ++i) { @@ -42,7 +46,8 @@ void eq_read() { } } -void eq_decay(int cycles) { +void eq_decay(int cycles) +{ for (int i = 0; i < cycles; ++i) { reset(); -- cgit v1.2.3-70-g09d2