You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found that Due would send multiple payloads or fail in writing in some
cases. Change ensures single-payload transmission using write().
- Updated pingpair_dyn.ino example sketch to conform with available()
changes
- Slight doc update
* - Changes to read() functionality have increased reliability and response
996
1018
* - Extended timeout periods have been added to aid in noisy or otherwise unreliable environments
997
1019
* - Delays have been removed where possible to ensure maximum efficiency
998
-
* - Untested: Arduino Due and ATTiny 84/85 support: Do NOT #include <SPI.h> with ATTiny.
1020
+
* - Full Due support with extended SPI functions
1021
+
* - Initial ATTiny support added (Untested)
999
1022
* - More! See the links below and class documentation for more info.
1000
1023
*
1001
1024
* If issues are discovered with the documentation, please report them here: <a href="https://github.com/TMRh20/tmrh20.github.io/issues"> here</a>
@@ -1013,6 +1036,15 @@ class RF24
1013
1036
* This chip uses the SPI bus, plus two chip control pins. Remember that pin 10 must still remain an output, or
1014
1037
* the SPI hardware will go into 'slave' mode.
1015
1038
*
1039
+
* @section BoardSupport Board Support
1040
+
*
1041
+
* Most standard Arduino based boards are supported:
1042
+
* - ATMega 328 based boards (Uno, Nano, etc)
1043
+
* - Mega Boards (1280, 2560, etc)
1044
+
* - ARM based boards (Arduino Due) Note: Do not include printf.h or use printf begin. This functionality is already present. Must use one of the
1045
+
* hardware SS/CSN pins.
1046
+
* - ATTiny boards (Not fully tested) Note: Do not include SPI.h. The SPI functions for ATTiny are already included.
0 commit comments