From 1c2e2a9a12d271a59e41d636539167e149cd966d Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 17 Jun 2023 20:52:11 -0500 Subject: [PATCH] debug --- components/ratgdo/ratgdo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ratgdo/ratgdo.cpp b/components/ratgdo/ratgdo.cpp index ba99cf8..e96fc50 100644 --- a/components/ratgdo/ratgdo.cpp +++ b/components/ratgdo/ratgdo.cpp @@ -124,7 +124,7 @@ namespace ratgdo { ESP_LOGV(TAG, "Motion: %d (toggle)", this->motionState); } else { // 0x84 -- is it used? - ESP_LOGV(TAG, "Unknown command: cmd=%04x nibble=%02x byte1=%02x byte2=%02x fixed=%"PRIu32" data=%"PRIu64, cmd, nibble, byte1, byte2, fixed, data); + ESP_LOGV(TAG, "Unknown command: cmd=%04x nibble=%02x byte1=%02x byte2=%02x fixed=%"PRIu64" data=%"PRIu32, cmd, nibble, byte1, byte2, fixed, data); } return cmd; }