This commit is contained in:
ShowMaket 2023-11-29 16:32:10 +03:00
commit 4f6482ec2a
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;