1. 18 Feb, 2015 7 commits
  2. 15 Feb, 2015 3 commits
  3. 14 Feb, 2015 3 commits
  4. 12 Feb, 2015 2 commits
  5. 03 Feb, 2015 1 commit
    • TMRh20's avatar
      Move Due and ATTiny to new template format · e7deb684
      TMRh20 authored
      - Created the appropriate files for Due and ATTiny under arch/Due and
      arch/ATTiny
      - Modify RF24_config.h to suit the new changes
      - Modify detection for Arduino Due ( ARDUINO_SAM_DUE )
      - Update RF24.cpp for cleaner Due detection
      
      Due changes are tested and working
      ATTiny changes compile but are untested
      e7deb684
  6. 02 Feb, 2015 2 commits
  7. 01 Feb, 2015 1 commit
  8. 30 Jan, 2015 1 commit
  9. 28 Jan, 2015 1 commit
  10. 27 Jan, 2015 1 commit
  11. 24 Jan, 2015 2 commits
  12. 20 Jan, 2015 4 commits
  13. 19 Jan, 2015 1 commit
    • TMRh20's avatar
      Enable buffered writes/transmissions · 08480a3b
      TMRh20 authored
      - Add optional startTx to startFastWrite() function:
      a: Allows software to fully utilize FIFO buffers for buffering payloads
      to the TX FIFO, while remaining in RX mode, instead of storing data in
      RAM etc.
      b: Default is still to start sending immediately unless startTx is
      included and set to 0
      
      Note: This will not work correctly if using ack-payloads. Tx FIFO is
      flushed when switching between RX/TX modes to prevent data corruption.
      
      - Added optional startTx to txStandBy(timeout,startTx)
      a: Allows automated sending of buffered data, with indication of success
      or failure for the bulk data transfer.
      b: Default is still to not initiate sending, and not leave RX mode.
      c: Calling this with startTx set to true will automatically call
      radio.stopListening() to begin transmission.
      
      Example:
      radio.startFastWrite( &time, sizeof(unsigned long), false );
      radio.startFastWrite( &time, sizeof(unsigned long), false );
      
      if (!radio.txStandBy(100, true) ){  printf("failed.\n\r");  }
      radio.startListening()
      08480a3b
  14. 17 Jan, 2015 2 commits
  15. 14 Jan, 2015 3 commits
  16. 05 Jan, 2015 1 commit
    • TMRh20's avatar
      Fix 'features'? per https://github.com/dsbaha #56 · 39a63859
      TMRh20 authored
      - Potential patch for issues setting 'extra features' (Dyn Ack, Ack Pld,
      Dyn PL)
      - Testing the effect of leaving the features register permanently
      enabled, and resetting to 0 on reset/restart
      - Remove stray csn(LOW)
      39a63859
  17. 02 Jan, 2015 1 commit
    • TMRh20's avatar
      Fixes and Improvements from large round of testing · 4d5f014c
      TMRh20 authored
      - RPi/Linux - Configure SPI BUS sooner before each interaction
      - RPi/Linux - Add slight delay after setting SPI config
      - ALL - Remove delay from startListening()
      - ALL - Define per-datarate delays as per results of extensive testing
      - Increase hardware fail timeout
      - Remove lastAvailableCheck and listeningStarted variables
      - Remove delay during call to available()
      - Add txRxDelay variable, set when the datarate is configured
      4d5f014c
  18. 30 Dec, 2014 2 commits
  19. 28 Dec, 2014 2 commits