File tree 1 file changed +16
-16
lines changed
1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -66,22 +66,6 @@ class RF24
66
66
*/
67
67
/* *@{*/
68
68
69
- /* *
70
- * Non-blocking write to the open writing pipe used for buffered writes
71
- *
72
- * @note Optimization: This function now leaves the CE pin high, so the radio
73
- * will remain in TX or STANDBY-II Mode until a txStandBy() command is issued.
74
- * This allows the chip to be used to its full potential in TX mode.
75
- *
76
- * @see writeFast()
77
- * @see writeBlocking()
78
- *
79
- * @param buf Pointer to the data to be sent
80
- * @param len Number of bytes to be sent
81
- * @return True if the payload was delivered successfully false if not
82
- */
83
- void startFastWrite ( const void * buf, uint8_t len );
84
-
85
69
/* *
86
70
* Set chip select pin
87
71
*
@@ -395,6 +379,22 @@ class RF24
395
379
bool txStandBy ();
396
380
bool txStandBy (bool block);
397
381
382
+ /* *
383
+ * Non-blocking write to the open writing pipe used for buffered writes
384
+ *
385
+ * @note Optimization: This function now leaves the CE pin high, so the radio
386
+ * will remain in TX or STANDBY-II Mode until a txStandBy() command is issued.
387
+ * This allows the chip to be used to its full potential in TX mode.
388
+ *
389
+ * @see writeFast()
390
+ * @see writeBlocking()
391
+ *
392
+ * @param buf Pointer to the data to be sent
393
+ * @param len Number of bytes to be sent
394
+ * @return True if the payload was delivered successfully false if not
395
+ */
396
+ void startFastWrite ( const void * buf, uint8_t len );
397
+
398
398
/* *
399
399
* Test whether there are bytes available to be read
400
400
*
You can’t perform that action at this time.
0 commit comments