- 11 Oct, 2014 3 commits
-
-
TMRh20 authored
per req. from sergio m.
-
TMRh20 authored
-
https://github.com/TMRh20/RF24TMRh20 authored
-
- 10 Oct, 2014 1 commit
-
-
TMRh20 authored
- add #define for _SPI - add links to alternate SPI libs
-
- 06 Oct, 2014 2 commits
- 05 Oct, 2014 2 commits
- 04 Oct, 2014 1 commit
-
-
TMRh20 authored
- Revert SPI to default lib by default. Configure via RF24_config.h #24 - Corrected CRC status reporting per https://github.com/evorios by checking AA register
-
- 03 Oct, 2014 1 commit
-
-
TMRh20 authored
- Added softSPI support for https://github.com/greiman/DigitalIO library - Updated SPI_UART code to allow use at the same time as the SPI library
-
- 02 Oct, 2014 8 commits
-
-
TMRh20 authored
Uses the SPI_UART library at https://github.com/TMRh20/Sketches
-
TMRh20 authored
-
TMRh20 authored
Per a tip from Andrew A. this should be the final nail in the coffin of issue #7
-
TMRh20 authored
http://www.airspayce.com/mikem/bcm2835/bcm2835-1.37.tar.gz - Merge with latest BCM2835 driver changes - Should allow full support for RPi B+ but is untested ... not sure why the .h file was left out the first time...
-
TMRh20 authored
http://www.airspayce.com/mikem/bcm2835/bcm2835-1.37.tar.gz - Merge with latest BCM2835 driver changes - Should allow full support for RPi B+ but is untested
-
Rei authored
-
Rei authored
Choose a standard pin layout for all the examples based on the pin connection table in the readme files. Different pin layout in the example files could lead to not working examples.
-
Rei authored
- Changes in the pin layout table to describe how to connect the NRF24L01 pins to different boards - Remove duplicate readme information in the RPi readme file and point to the default RPi/RF24/readme.md file.
-
- 01 Oct, 2014 2 commits
- 29 Sep, 2014 1 commit
-
-
TMRh20 authored
-
- 28 Sep, 2014 3 commits
-
-
TMRh20 authored
http://www.airspayce.com/mikem/bcm2835/bcm2835-1.37.tar.gz - Merge with latest BCM2835 driver changes - Should allow full support for RPi B+ but is untested ... not sure why the .h file was left out the first time...
-
TMRh20 authored
http://www.airspayce.com/mikem/bcm2835/bcm2835-1.37.tar.gz - Merge with latest BCM2835 driver changes - Should allow full support for RPi B+ but is untested
-
TMRh20 authored
Select a standard pin layout for the examples and update README files.
-
- 27 Sep, 2014 1 commit
-
-
Rei authored
-
- 26 Sep, 2014 2 commits
-
-
Rei authored
Choose a standard pin layout for all the examples based on the pin connection table in the readme files. Different pin layout in the example files could lead to not working examples.
-
Rei authored
- Changes in the pin layout table to describe how to connect the NRF24L01 pins to different boards - Remove duplicate readme information in the RPi readme file and point to the default RPi/RF24/readme.md file.
-
- 23 Sep, 2014 1 commit
-
-
TMRh20 authored
3-pin code enhancement by https://github.com/tong67 ATTiny example updated per https://github.com/tong67 and https://github.com/Carminepz
-
- 17 Sep, 2014 3 commits
- 14 Sep, 2014 1 commit
-
-
TMRh20 authored
- Added delay to first call to available() a: Only delays IF called after startListening AND called less than a certain time after the last time it was called - Corrected mistake on last commit where flush_rx was added back inadvertently
-
- 13 Sep, 2014 1 commit
-
-
TMRh20 authored
- Add function to check if the rx fifo has been filled and potentially overloaded - TX FIFO is now only flushed when transitioning between reading/writing as start/stopListening() is called IF dynamic payloads are enabled
-
- 10 Sep, 2014 1 commit
-
-
TMRh20 authored
When using dynamic payload lengths, payloads can be corrupted, and the length will return 0. This adds a small delay to allow recovery time, and prevent excessive errors.
-
- 09 Sep, 2014 1 commit
-
-
TMRh20 authored
-
- 07 Sep, 2014 1 commit
-
-
TMRh20 authored
- Added ATTiny example per tong67, issue #17 - included print functions in #define MINIMAL per Damme, issue #16 - add #define RF24_TINY for simplification
-
- 16 Aug, 2014 1 commit
-
-
TMRh20 authored
Previous behaviour: 1. Radio #1: Pipe 0 opened for writing (Address1), pipe 1 opened for reading (Address2) 2. The radio would end up listening on the following pipes/addresses, because pipe0 was not assigned a separate reading address. Pipe0: Address1 Pipe1: Address2 3. This is generally not a problem with 2 radios, but when multicasting with three. If two of the radios transmit to the same address, then start listening, all three radios will be listening to the same address on pipe0, unless pipe0 has been assigned a separate reading address New behaviour: 1. Radio #1: Pipe 0 opened for writing (Address1), pipe 1 opened for reading (Address2) 2. When calling radio.startListening() pipe0 is closed, because it is not assigned a reading address 3. Pipe0 is re-opened for writing only, unless a reading address is assigned to pipe0 This wouldn't really affect things while using auto-ack, because two radios should not be writing to the same pipe/address. - Add closeReadingPipe for RPi - Also adjusted timing for startListening(); - Fix failure detect variable on RPi
-
- 07 Aug, 2014 1 commit
-
-
TMRh20 authored
Found issue with dynamic payloads on RPi - writeType was not specified properly for dynamic ACKs with a NOACK payload set - Identified thanks to mannkind - See https://github.com/TMRh20/RF24Network/commit/6e25453ffabf583c0304b701a3cfcf8f98c9fc94
-
- 06 Aug, 2014 2 commits