Skip to content

Commit

Permalink
WIP: Update factory test to match version fix in 57c5939
Browse files Browse the repository at this point in the history
  • Loading branch information
mklein994 committed Apr 2, 2024
1 parent ecb0d22 commit 5fe039c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyboards/keychron/common/factory_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ void factory_test_rx(uint8_t *data, uint8_t length) {
payload[len++] = '.';
itoa((DEVICE_VER >> 4) & 0xF, (char *)&payload[len++], 16);
payload[len++] = '.';
itoa((DEVICE_VER >> 4) & 0xF, (char *)&payload[len++], 16);
itoa(DEVICE_VER & 0xF, (char *)&payload[len++], 16);
payload[len++] = ' ';
memcpy(&payload[len], QMK_BUILDDATE, sizeof(QMK_BUILDDATE));
len += sizeof(QMK_BUILDDATE);
Expand Down

0 comments on commit 5fe039c

Please sign in to comment.