From faafa94f431e5465ada41e264a4b59311116e79d Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Tue, 30 Jan 2024 15:06:03 +0100 Subject: [PATCH] Add CL/OP in status line --- bitmaps.c | 12 +++++++----- bitmaps.h | 4 ++-- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/bitmaps.c b/bitmaps.c index e2c1023..36f5fd7 100644 --- a/bitmaps.c +++ b/bitmaps.c @@ -145,7 +145,7 @@ const uint8_t BITMAP_F_Key[6] = #ifdef ENABLE_FEAT_F4HWN const uint8_t BITMAP_VOX[12] = - { // "V" + { // "VX" 0b00000000, 0b00011111, 0b00100000, @@ -186,34 +186,36 @@ const uint8_t BITMAP_F_Key[6] = #ifdef ENABLE_FEAT_F4HWN - const uint8_t BITMAP_PTT_ONE_PUSH[11] = + const uint8_t BITMAP_PTT_ONE_PUSH[12] = { // "OnePush" 0b00000000, 0b00111110, 0b01000001, 0b01000001, + 0b01000001, 0b00111110, 0b00000000, 0b01111110, 0b00010001, 0b00010001, + 0b00010001, 0b00001110, - 0b00000000, }; - const uint8_t BITMAP_PTT_CLASSIC[11] = + const uint8_t BITMAP_PTT_CLASSIC[12] = { // "Classic" 0b00000000, 0b00111110, 0b01000001, 0b01000001, 0b01000001, + 0b00100010, 0b00000000, 0b00111111, 0b01000000, 0b01000000, 0b01000000, - 0b00000000, + 0b01000000, }; #endif diff --git a/bitmaps.h b/bitmaps.h index 73d5373..dc15f3b 100644 --- a/bitmaps.h +++ b/bitmaps.h @@ -26,8 +26,8 @@ extern const uint8_t BITMAP_F_Key[6]; #endif #ifdef ENABLE_FEAT_F4HWN - extern const uint8_t BITMAP_PTT_ONE_PUSH[11]; - extern const uint8_t BITMAP_PTT_CLASSIC[11]; + extern const uint8_t BITMAP_PTT_ONE_PUSH[12]; + extern const uint8_t BITMAP_PTT_CLASSIC[12]; #endif extern const uint8_t BITMAP_XB[12];