Skip to content

Commit 6a8b4f5

Browse files
committed
fixed c formating
1 parent 5ceb720 commit 6a8b4f5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,9 @@ MP_NOINLINE void common_hal_alarm_pretending_deep_sleep(void) {
278278

279279
if (!fake_sleep) {
280280
SAMD_ALARM_FLAG = 1;
281-
while(RTC->MODE0.SYNCBUSY.reg);
281+
while(RTC->MODE0.SYNCBUSY.reg) {
282+
;
283+
}
282284
fake_sleep = true;
283285
} else {
284286
port_idle_until_interrupt();

0 commit comments

Comments
 (0)