Skip to content

Commit be04214

Browse files
authored
Merge pull request #1132 from UltimateHackingKeyboard/remove_dongle_protocol_log
aDon't log when dongle protocol version is fine.
2 parents 3230812 + 558c560 commit be04214

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

device/src/state_sync.c

+1-5
Original file line numberDiff line numberDiff line change
@@ -323,11 +323,7 @@ static void checkFirmwareVersions(const uhk_module_state_t *moduleState, slot_t
323323
}
324324

325325
static void checkDongleProtocolVersion() {
326-
if (VERSIONS_EQUAL(DongleProtocolVersion, dongleProtocolVersion)) {
327-
LogUOS("Dongle and right half run the same dongle protocol version %d.%d.%d\n",
328-
DongleProtocolVersion.major, DongleProtocolVersion.minor, DongleProtocolVersion.patch
329-
);
330-
} else {
326+
if (!VERSIONS_EQUAL(DongleProtocolVersion, dongleProtocolVersion)) {
331327
LogUOS("Dongle and right half run different dongle protocol versios (dongle: %d.%d.%d, right: %d.%d.%d), please upgrade!\n",
332328
DongleProtocolVersion.major, DongleProtocolVersion.minor, DongleProtocolVersion.patch,
333329
dongleProtocolVersion.major, dongleProtocolVersion.minor, dongleProtocolVersion.patch

0 commit comments

Comments
 (0)