Skip to content

Commit 6811c5e

Browse files
committed
c formatting...
1 parent 0dd276b commit 6811c5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/atmel-samd/common-hal/alarm/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ void NORETURN common_hal_alarm_enter_deep_sleep(void) {
238238
RTC->MODE0.CTRLA.reg = RTC_MODE0_CTRLA_PRESCALER_DIV1024 | // Set prescaler to 1024
239239
RTC_MODE0_CTRLA_MODE_COUNT32; // Set RTC to mode 0, 32-bit timer
240240

241-
RTC->MODE0.COMP[1].reg = (_target/1024) * 32;
241+
RTC->MODE0.COMP[1].reg = (_target / 1024) * 32;
242242
while (RTC->MODE0.SYNCBUSY.reg) {
243243
;
244244
}

0 commit comments

Comments
 (0)