From e60224662e9b871061b7be3ba724d55e5cf083f7 Mon Sep 17 00:00:00 2001 From: Alexey Zholtikov Date: Sat, 14 Jun 2025 10:56:21 +0300 Subject: [PATCH] wip: --- zh_encoder.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zh_encoder.c b/zh_encoder.c index 12e08b0..26d5b8b 100644 --- a/zh_encoder.c +++ b/zh_encoder.c @@ -19,11 +19,11 @@ static const uint8_t _encoder_matrix[7][4] = { {0x03, 0x02, 0x01, 0x00}, - {0x03 | 0x20, 0x00, 0x01, 0x00}, - {0x03 | 0x10, 0x02, 0x00, 0x00}, + {0x23, 0x00, 0x01, 0x00}, + {0x13, 0x02, 0x00, 0x00}, {0x03, 0x05, 0x04, 0x00}, - {0x03, 0x03, 0x04, 0x00 | 0x10}, - {0x03, 0x05, 0x03, 0x00 | 0x20}, + {0x03, 0x03, 0x04, 0x00}, + {0x03, 0x05, 0x03, 0x00}, }; static QueueHandle_t _queue_handle = NULL;