File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,8 @@ class LoRaClass : public Stream {
47
47
48
48
int rssi ();
49
49
50
+ int temperature (); // Modified
51
+
50
52
// from Print
51
53
virtual size_t write (uint8_t byte);
52
54
virtual size_t write (const uint8_t *buffer, size_t size);
@@ -59,11 +61,9 @@ class LoRaClass : public Stream {
59
61
60
62
#ifndef ARDUINO_SAMD_MKRWAN1300
61
63
void onReceive (void (*callback)(int ));
62
- void onCadDone (void (*callback)(boolean));
63
64
void onTxDone (void (*callback)());
64
65
65
66
void receive (int size = 0 );
66
- void channelActivityDetection (void );
67
67
#endif
68
68
void idle ();
69
69
void sleep ();
@@ -124,7 +124,6 @@ class LoRaClass : public Stream {
124
124
int _packetIndex;
125
125
int _implicitHeaderMode;
126
126
void (*_onReceive)(int );
127
- void (*_onCadDone)(boolean);
128
127
void (*_onTxDone)();
129
128
};
130
129
You can’t perform that action at this time.
0 commit comments