We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e47cdd commit 77e12daCopy full SHA for 77e12da
1 file changed
cores/panstamp/panstamp.cpp
@@ -43,6 +43,7 @@ void endOfReception(void);
43
__attribute__((interrupt(CC1101_VECTOR)))
44
void radioISR(void)
45
{
46
+static int count=0;
47
unsigned int coreIntSource = RF1AIV; // Radio Core interrupt register
48
49
// Radio Core interrupt
@@ -72,7 +73,7 @@ void radioISR(void)
72
73
#ifdef FHSS_ENABLED
74
// Stop FHSS dwelling timer
75
panstamp.stopDwellingTimer();
-
76
+
77
// Reset FHSS channel and buffer?
78
if (resetFHSS)
79
@@ -229,6 +230,7 @@ void PANSTAMP::init(uint8_t freq, uint8_t mode)
229
230
delayMicroseconds(50);
231
232
233
+ radio.disableAddressCheck();
234
radio.setChannel(getCurrentChannel());
235
#endif
236
0 commit comments