We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9a0ac commit b251121Copy full SHA for b251121
cores/panstamp/panstamp.h
@@ -195,6 +195,22 @@ class PANSTAMP
195
inline void goToWirelessBoot(void)
196
{
197
}
198
+
199
+ /**
200
+ * sendData
201
+ *
202
+ * Transmit packet
203
204
+ * @param packet Packet to be transmitted. First byte is the destination address
205
206
+ * @return
207
+ * True if the transmission succeeds
208
+ * False otherwise
209
+ */
210
+ inline bool sendData(CCPACKET packet)
211
+ {
212
+ return radio.sendData(packet);
213
+ }
214
};
215
216
/**
0 commit comments