Skip to content

Commit a71b844

Browse files
committed
Code formatting and linting
1 parent 2a03c87 commit a71b844

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

firmware/chipignite/polysat/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ARCH=rv32i_zicsr
99
SRCDIR = src
1010
INCDIR = include
1111
SOURCES = $(wildcard $(SRCDIR)/*.c)
12-
PROJECT = project
12+
PROJECT = polysat
1313

1414
# ---- Test patterns for project raven ----
1515

firmware/chipignite/polysat/src/slip.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,7 @@ void slip_send_packet(const uint8_t* data, uint16_t data_len, uint8_t cmd, void
6464
*
6565
* @param send_byte A function to send a byte to the output stream.
6666
*/
67-
void slip_send_heartbeat(void (*send_byte)(uint8_t)) {
68-
slip_send_packet(NULL, 0, SLIP_CMD_HEARTBEAT, send_byte);
69-
}
67+
void slip_send_heartbeat(void (*send_byte)(uint8_t)) { slip_send_packet(NULL, 0, SLIP_CMD_HEARTBEAT, send_byte); }
7068

7169
/** @brief Compute a CRC-16/CCITT-FALSE checksum
7270
*

0 commit comments

Comments
 (0)