cpu/atmega_common/periph_timer: Fix style

This commit is contained in:
Marian Buschsieweke 2020-05-28 13:15:32 +02:00
parent dfa6863275
commit fb722b1be7
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -90,7 +90,7 @@ int timer_init(tim_t tim, unsigned long freq, timer_cb_t cb, void *arg)
DEBUG_TIMER_DDR |= (1 << DEBUG_TIMER_PIN); DEBUG_TIMER_DDR |= (1 << DEBUG_TIMER_PIN);
DEBUG_TIMER_PORT &= ~(1 << DEBUG_TIMER_PIN); DEBUG_TIMER_PORT &= ~(1 << DEBUG_TIMER_PIN);
DEBUG("Debug Pin: DDR 0x%02x Port 0x%02x Pin 0x%02x\n", DEBUG("Debug Pin: DDR 0x%02x Port 0x%02x Pin 0x%02x\n",
&DEBUG_TIMER_DDR , &DEBUG_TIMER_PORT,(1<<DEBUG_TIMER_PIN)); &DEBUG_TIMER_DDR, &DEBUG_TIMER_PORT, (1 << DEBUG_TIMER_PIN));
#endif #endif
DEBUG("timer.c: freq = %ld\n", freq); DEBUG("timer.c: freq = %ld\n", freq);