mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-14 18:46:59 +00:00
Related to #3801: - Removed all noInterrupts(); code -> not needed and tested stable - Initialize CC1101 packet - Removed not used defines from IthoCC1101.ccp
24 lines
373 B
C++
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_ */
|