mirror of
https://github.com/Show-maket/IR-protocol.git
synced 2025-05-03 23:00:16 +00:00
add Raw
This commit is contained in:
parent
eac364b0d3
commit
60a8e58cc3
@ -17,6 +17,7 @@ public:
|
||||
PacketTypes::DataBack gotBackData;
|
||||
PacketTypes::Accept gotAccept;
|
||||
PacketTypes::Request gotRequest;
|
||||
PacketTypes::BasePack gotRaw;
|
||||
|
||||
IR_Decoder(const uint8_t isrPin, uint16_t addr, IR_Encoder* encPair = nullptr) : IR_DecoderRaw(isrPin, addr, encPair) {}
|
||||
|
||||
@ -26,6 +27,7 @@ public:
|
||||
#ifdef IRDEBUG_INFO
|
||||
Serial.println("PARSING RAW DATA");
|
||||
#endif
|
||||
gotRaw.set(&packInfo, id);
|
||||
isWaitingAcceptSend = false;
|
||||
switch (packInfo.buffer[0] >> 5 & IR_MASK_MSG_TYPE) {
|
||||
case IR_MSG_DATA_ACCEPT:
|
||||
|
@ -28,6 +28,7 @@ class IR_DecoderRaw : virtual public IR_FOX {
|
||||
protected:
|
||||
PackInfo packInfo;
|
||||
IR_Encoder* encoder; // Указатель на парный передатчик
|
||||
bool availableRaw() { if (isAvailable) { isAvailable = false; return true; } else { return false; } };
|
||||
public:
|
||||
const uint8_t isrPin; // Пин прерывания
|
||||
|
||||
@ -40,7 +41,7 @@ public:
|
||||
|
||||
void isr(); // Функция прерывания
|
||||
void tick(); // Обработка приёмника, необходима для работы
|
||||
bool availableRaw() { if (isAvailable) { isAvailable = false; return true; } else { return false; } };
|
||||
|
||||
bool isOverflow() { return isBufferOverflow; }; // Буффер переполнился
|
||||
bool isReciving() { return isBufferOverflow; }; // Возвращает true, если происходит приём пакета
|
||||
|
||||
|
@ -18,7 +18,7 @@ namespace PacketTypes {
|
||||
IR_FOX::PackInfo* packInfo;
|
||||
uint16_t id;
|
||||
|
||||
virtual bool checkAddress();
|
||||
virtual bool checkAddress(){return true;};
|
||||
void set(IR_FOX::PackInfo* packInfo, uint16_t id) {
|
||||
this->packInfo = packInfo;
|
||||
this->id = id;
|
||||
|
Loading…
x
Reference in New Issue
Block a user