From e33c98cbc77b30987e14fdf7028ccb9299464a42 Mon Sep 17 00:00:00 2001 From: andrej Date: Mon, 1 Aug 2022 07:49:09 +0200 Subject: [PATCH] Increase maximum OOK clock to 1000 kHz --- firmware/application/apps/ui_encoders.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/firmware/application/apps/ui_encoders.hpp b/firmware/application/apps/ui_encoders.hpp index ac206f6e4..4b434d009 100644 --- a/firmware/application/apps/ui_encoders.hpp +++ b/firmware/application/apps/ui_encoders.hpp @@ -67,7 +67,7 @@ private: Labels labels { { { 1 * 8, 0 }, "Type:", Color::light_grey() }, { { 16 * 8, 0 }, "Clk:", Color::light_grey() }, - { { 24 * 8, 0 }, "kHz", Color::light_grey() }, + { { 25 * 8, 0 }, "kHz", Color::light_grey() }, { { 14 * 8, 2 * 8 }, "Frame:", Color::light_grey() }, { { 26 * 8, 2 * 8 }, "us", Color::light_grey() }, { { 2 * 8, 4 * 8 }, "Symbols:", Color::light_grey() }, @@ -83,8 +83,8 @@ private: NumberField field_clk { { 21 * 8, 0 }, - 3, - { 1, 500 }, + 4, + { 1, 1000 }, 1, ' ' };