From f2a0f2b619385225200e4ab7eff9e0b19610e9fd Mon Sep 17 00:00:00 2001 From: DashyFox Date: Wed, 29 Nov 2023 16:17:47 +0300 Subject: [PATCH] Todo and info --- IR_Decoder.h | 3 ++- IR_Encoder.h | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/IR_Decoder.h b/IR_Decoder.h index 4fad74c..926b146 100644 --- a/IR_Decoder.h +++ b/IR_Decoder.h @@ -37,7 +37,8 @@ public: // @return Буффер переполнился bool isOverflow() { return isBufferOverflow; }; bool isReciving() { return isRecive; }; - void listen(); + // @brief Слушатель для работы isReciving() + void listen(); ////////////////////////////////////////////////////////////////////////// diff --git a/IR_Encoder.h b/IR_Encoder.h index d6cac16..3935cd7 100644 --- a/IR_Encoder.h +++ b/IR_Encoder.h @@ -1,6 +1,8 @@ #pragma once #include "IR_config.h" +//TODO: Отложенная передача после завершения приема + class IR_Decoder; class IR_Encoder : IR_FOX { friend IR_Decoder;