Todo and info

This commit is contained in:
DashyFox 2023-11-29 16:17:47 +03:00
parent 84a2a74fc5
commit f2a0f2b619
2 changed files with 4 additions and 1 deletions

View File

@ -37,6 +37,7 @@ public:
// @return Буффер переполнился
bool isOverflow() { return isBufferOverflow; };
bool isReciving() { return isRecive; };
// @brief Слушатель для работы isReciving()
void listen();
//////////////////////////////////////////////////////////////////////////

View File

@ -1,6 +1,8 @@
#pragma once
#include "IR_config.h"
//TODO: Отложенная передача после завершения приема
class IR_Decoder;
class IR_Encoder : IR_FOX {
friend IR_Decoder;