Files
ESPEasy/lib/Itho/CC1101Packet.h
T
svollebregt fa4b849fa8 Remove noInterrupts() and Itho library improvements
Related to #3801:
- Removed all noInterrupts(); code -> not needed and tested stable
- Initialize CC1101 packet
- Removed not used defines from IthoCC1101.ccp
2021-11-25 17:02:17 +01:00

24 lines
373 B
C++

/*
* Author: Klusjesman, modified bij supersjimmie for Arduino/ESP8266
*/
#ifndef CC1101PACKET_H_
#define CC1101PACKET_H_
#include <stdio.h>
#include <Arduino.h>
#define CC1101_BUFFER_LEN 64
#define CC1101_DATA_LEN CC1101_BUFFER_LEN - 3
class CC1101Packet
{
public:
uint8_t length = 0;
uint8_t data[128] = {0};
};
#endif /* CC1101PACKET_H_ */