Skip to content

Commit cce1fbb

Browse files
committed
Manual pre-commit fix for last delinquent file
1 parent 5541ae3 commit cce1fbb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ports/analog/supervisor/port.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,8 @@
4545
#include "rtc.h"
4646

4747
// msec to RTC subsec ticks (4 kHz)
48-
#define MSEC_TO_SS_ALARM(x) \
49-
(0 - ((x * 4096) / \
50-
1000)) /* Converts a time in milleseconds to the equivalent RSSA register value. */
48+
/* Converts a time in milleseconds to equivalent RSSA register value */
49+
#define MSEC_TO_SS_ALARM(x) (0 - ((x * 4096) / 1000))
5150

5251
// Externs defined by linker .ld file
5352
extern uint32_t _stack, _heap, _estack, _eheap;

0 commit comments

Comments
 (0)