| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737 |
- // NRF24.h
- // Author: Mike McCauley
- // Copyright (C) 2012 Mike McCauley
- // $Id: NRF24.h,v 1.2 2014/05/20 06:00:55 mikem Exp mikem $
- //
- /// \mainpage NRF24 library for Arduino
- ///
- /// This NRF24 library has now been superceded by the RadioHead
- /// library http://www.airspayce.com/mikem/arduino/RadioHead
- /// RadioHead and its RH_NRF24 driver provides all the features supported by NRF24, and much more
- /// besides, including Reliable Datagrams, Addressing, Routing and Meshes. All the platforms that
- /// NRF24 supported are also supported by RadioHead.
- ///
- /// This library will no longer be maintained or updated, but we will continue to publish
- /// it for the benefit of the the community, and you may continue to use it within the terms of
- /// the license. Nevertheless we recommend upgrading to RadioHead where
- /// possible.
- ///
- /// This is the Arduino NRF24 library.
- /// It provides an object-oriented interface for sending and receiving data messages with Nordic nRF24L01
- /// based radio modules, such as the sparkfun WRL-00691 http://www.sparkfun.com/products/691
- ///
- /// The nRF24L01 (http://www.sparkfun.com/datasheets/Wireless/Nordic/nRF24L01P_Product_Specification_1_0.pdf)
- /// is a low-cost 2.4GHz ISM transceiver module. It supports a number of channel frequencies in the 2.4GHz band
- /// and a range of data rates.
- ///
- /// This library provides functions for sending and receiving messages of up to 32 octets on any
- /// frequency supported by the nRF24L01, at a selected data rate.
- ///
- /// Up to 2 nRF24L01 modules can be connected to an Arduino, permitting the construction of translators
- /// and frequency changers, etc.
- ///
- /// This library provides classes for
- /// - NRF24: addressed, reliable, retransmitted, acknowledged messages (using nrf24 Enhanced Shockburst)
- ///
- /// Example Arduino programs are included to show the main modes of use.
- ///
- /// The version of the package that this documentation refers to can be downloaded
- /// from http://www.airspayce.com/mikem/arduino/NRF24/NRF24-1.14.zip
- /// You can find the latest version at http://www.airspayce.com/mikem/arduino/NRF24
- ///
- /// You can also find online help and disussion at
- /// http://groups.google.com/group/NRF24-arduino
- /// Please use that group for all questions and discussions on this topic.
- /// Do not contact the author directly, unless it is to discuss commercial licensing.
- /// Before asking a question or reporting a bug, please read http://www.catb.org/esr/faqs/smart-questions.html
- ///
- /// Tested on Arduino Diecimila, Duemilanove and Mega with arduino 1.0
- /// on OpenSuSE 12.1 with avr-libc-1.7.1-1.1, cross-avr-binutils-2.19.1-33.1
- /// and cross-avr-gcc-4.3.3_20100125-28.1, and with arduino-0021 on the same platforms
- ///
- /// \par Packet Format
- ///
- /// All messages sent and received by this NRF24 library must conform to this packet format, as specified by
- /// the nRF24L01 product specificaiton:
- ///
- /// - 1 octets PREAMBLE
- /// - 4 octets ADDRESS
- /// - 9 bits packet control field
- /// - 0 to 32 octets PAYLOAD
- /// - 2 octets CRC
- ///
- /// \par Connecting nRF24L01 to Arduino
- ///
- /// The physical connection between the nRF24L01 and the Arduino require 3.3V, the 3 x SPI pins (SCK, SDI, SDO),
- /// a Chip Enable pin and a Slave Select pin.
- /// If you are using the Sparkfun WRL-00691 module, it has a voltage regulator on board and
- /// can be run with 5V VCC
- /// The examples below assume the Sparkfun WRL-00691 module
- ///
- /// Connect the nRF24L01 to most Arduino's like this (Caution, Arduino Mega has different pins for SPI,
- /// see below),
- /// \code
- /// Arduino Sparkfun WRL-00691
- /// 3V3 or 5V----VCC (3.3V to 7V in)
- /// pin D8-----------CE (chip enable in)
- /// SS pin D10----------CSN (chip select in)
- /// SCK pin D13----------SCK (SPI clock in)
- /// MOSI pin D11----------SDI (SPI Data in)
- /// MISO pin D12----------SDO (SPI data out)
- /// IRQ (Interrupt output, not connected)
- /// GND----------GND (ground in)
- /// \endcode
- ///
- /// For an Arduino Leonardo (the SPI pins do not come out on the Digital pins as for normal Arduino, but only
- /// appear on the ICSP header)
- /// \code
- /// Leonardo Sparkfun WRL-00691
- /// 3V3 or 5V----VCC (3.3V to 7V in)
- /// pin D8-----------CE (chip enable in)
- /// SS pin D10----------CSN (chip select in)
- /// SCK ICSP pin 3----------SCK (SPI clock in)
- /// MOSI ICSP pin 4----------SDI (SPI Data in)
- /// MISO ICSP pin 1----------SDO (SPI data out)
- /// IRQ (Interrupt output, not connected)
- /// GND----------GND (ground in)
- /// \endcode
- /// and initialise the NRF24 object like this to explicitly set the SS pin
- /// NRF24 nrf24(8, 10);
- ///
- /// For an Arduino Mega:
- /// \code
- /// Mega Sparkfun WRL-00691
- /// 3V3 or 5V----VCC (3.3V to 7V in)
- /// pin D8-----------CE (chip enable in)
- /// SS pin D53----------CSN (chip select in)
- /// SCK pin D52----------SCK (SPI clock in)
- /// MOSI pin D51----------SDI (SPI Data in)
- /// MISO pin D50----------SDO (SPI data out)
- /// IRQ (Interrupt output, not connected)
- /// GND----------GND (ground in)
- /// \endcode
- /// and you can then use the default constructor NRF24().
- /// You can override the default settings for the CSN and CE pins
- /// in the NRF24() constructor if you wish to connect the slave select CSN to other than the normal one for your
- /// Arduino (D10 for Diecimila, Uno etc and D53 for Mega)
- ///
- /// Caution: on some Arduinos such as the Mega 2560, if you set the slave select pin to be other than the usual SS
- /// pin (D53 on Mega 2560), you may need to set the usual SS pin to be an output to force the Arduino into SPI
- /// master mode.
- ///
- /// Caution: this module has not been proved to work with Leonardo, at least without level
- /// shifters between the NRF24 and the Leonardo. Tests seem to indicate that such level shifters would be required
- /// with Leonardo to make it work.
- ///
- /// It is possible to have 2 radios conected to one arduino, provided each radio has its own
- /// CSN and CE line (SCK, SDI and SDO are common to both radios)
- ///
- /// \par Example programs
- ///
- /// The following example programs are provided:
- /// -nrf24_ping_client, nrf24_pin_server. This is a matched pair. The client sends (acknowledged)
- /// 4 byte timestamp to the server which replies (acknowledged).
- /// The client measures the round-trip time and prints it. Typical RTT is 1-2 msec.
- /// These are compatible radio wise with the ping_client and ping_server programs that come with the Mirf library
- /// though the electrical connections are different
- /// -nrf24_specan. Example sketch showing how to create a primitive spectrum analyser
- /// with the NRF24 class. The nRF24L01 received power detector is only one bit, but
- /// this will show which channels have more than -64dBm present.
- /// -nrf24_audio_tx, nrf24_audio_rx. This is a matched pair. The clinet sends a stream of audio samples measured
- /// from analog input 0 to the receiver, which reconstructs them on output D6. See comments in those files for
- /// electrical requirements. The pair demonstrates the use of NRF24 in NOACK modefor improved performance
- /// (but no reliability). Can achieve 6.4kHz sample rate. Dont expect good quality audio!
- ///
- /// \par Radio Performance
- ///
- /// The performance of this radio seems to be very good. I was able to build ping client/server
- /// that was able to achieve over 800 round trips per second
- /// (at 0dBm power, 2Mbps, channel 1, 4 byte payload each way, 1 checksum byte) when the radios were next to each other.
- /// This rate could still be achieved at 15m distance, but the orientation of the radios and
- /// obstructions became critical. The human body can easily block these signals.
- /// Best response was when the chip antennas were broadside to each other.
- ///
- /// It is possible to get even better streaming performance using NOACK mode (see the nrf24_audio_tx sample)
- /// at the cost of nop reliability.
- /// In NOACK mode, at 2Mbps, 32 byte payload, can get about 1900 packets per second: 60800 bytes of payload per second
- ///
- /// Frequency accuracy may be debatable. For nominal frequency of 2401.000 MHz (ie channel 1),
- /// my Yaesu VR-5000 receiver indicated the center frequency for my test radios
- /// was 2401.121 MHz. Its not clear to me if the Yaesu
- /// is the source of the error, but I tend to believe it, which would make the nRF24l01 frequency out by 121kHz.
- ///
- /// \par Radio operating strategy and defaults
- ///
- /// The radio is enabled all the time, and switched between TX and RX modes depending on
- /// whether there is any data to send. Sending data sets the radio to TX mode.
- /// After data is sent, the radion automatically returns to Standby II mode. Calling waitAvailable() or
- /// waitAvailableTimeout() starts the radio in RX mode.
- ///
- /// The radio is configured by default to Channel 2, 2Mbps, 0dBm power, 5 bytes address, payload width 1, CRC enabled
- /// 1 byte CRC, Auto-Ack mode. Enhanced shockburst is used.
- /// P1 is the receive pipe. P0 is set to the transmit address to enable autoack.
- ///
- /// \par Memory
- ///
- /// Memory usage of this program is minimal. The compiled ping client and server programs are about 4000 bytes.
- /// RAM requirements of the library are minimal.
- ///
- /// \par Installation
- ///
- /// Install in the usual way: unzip the distribution zip file to the libraries
- /// sub-folder of your sketchbook.
- ///
- /// This software is Copyright (C) 2012 Mike McCauley. Use is subject to license
- /// conditions. The main licensing options available are GPL V2 or Commercial:
- ///
- /// \par Donations
- ///
- /// This library is offered under a free GPL license for those who want to use it that way.
- /// We try hard to keep it up to date, fix bugs
- /// and to provide free support. If this library has helped you save time or money, please consider donating at
- /// http://www.airspayce.com or here:
- ///
- /// \htmlonly <form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_donations" /> <input type="hidden" name="business" value="mikem@airspayce.com" /> <input type="hidden" name="lc" value="AU" /> <input type="hidden" name="item_name" value="Airspayce" /> <input type="hidden" name="item_number" value="NRF24" /> <input type="hidden" name="currency_code" value="USD" /> <input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted" /> <input type="image" alt="PayPal — The safer, easier way to pay online." name="submit" src="https://www.paypalobjects.com/en_AU/i/btn/btn_donateCC_LG.gif" /> <img alt="" src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" width="1" height="1" border="0" /></form> \endhtmlonly
- ///
- /// \par Open Source Licensing GPL V2
- ///
- /// This is the appropriate option if you want to share the source code of your
- /// application with everyone you distribute it to, and you also want to give them
- /// the right to share who uses it. If you wish to use this software under Open
- /// Source Licensing, you must contribute all your source code to the open source
- /// community in accordance with the GPL Version 2 when your application is
- /// distributed. See http://www.gnu.org/copyleft/gpl.html
- ///
- /// \par Commercial Licensing
- ///
- /// This is the appropriate option if you are creating proprietary applications
- /// and you are not prepared to distribute and share the source code of your
- /// application. Contact info@airspayce.com for details.
- ///
- /// \par Revision History
- ///
- /// \version 1.0 Initial release
- ///
- /// \version 1.1 Changed default value for slave slect pin in constructor to be SS, ie the normal one for
- /// the compiled Arduino (D10 for Diecimila, Uno etc and D53 for Mega). This is because some Arduinos such as Mega 2560
- /// reportedly use the type of the SS pin to determine whether to run in slave or master mode. Therfore it
- /// is preferred that the slave select pin actually be the normal SS pin.
- ///
- /// \version 1.2 Updated documentation about what happens during init, and that SPI is initialised to 8MHz
- /// (but can be set to other frequencies after calling init()
- /// \version 1.3 Fixed error in title of main page
- /// \version 1.4 Fixed typo in nrf24_test.pde, reported by TOM.
- /// \version 1.6 Fixed an error NRF24::setRF in setting data rate to 250kbps. Reported by Shiu Kumar.
- /// \version 1.7 Improvements to waitPacketSent() so if the chip is not in transmit mode, it wont wait forever.
- /// Improvements to isSending() so it returns false if the chip is not in transmit mode.
- /// \version 1.8 Fixed a conflict between 2 definitions of NRF24_TX_FULL. The one in 07 STATUS is changed to
- /// NRF24_STATUS_TX_FULL. Reported by Charles-Henri Hallard.
- /// Updated author and distribution location details to airspayce.com
- /// \version 1.9 Improvements to waitAvailableTimeout to make it robust on millis() rollover.
- /// \version 1.10 Testing with Leonardo and update documentation to reflect special electrical
- /// connection needs on Leonardo.
- /// \version 1.11 NRF24_COMMAND_W_ACK_PAYLOAD(c) is now a macro that takes a pipe number parameter.
- /// Added new function setRetry(), a convenience for setting ARD and ARC retry parameter.
- /// Can now customise the radio configuration byte with setConfiguration().
- /// Added new examples crazyflie and crazyflie_client that use the NRF24 library to
- /// communicate with Crazyflie quadcopters and transmitters.
- /// \version 1.12 NRF24::init, powerUpRx, powerUpTx will now fail if no device is connected;
- /// \version 1.13 Added End Of Life notice. This library will no longer be maintained
- /// and updated: use RadioHead instead.
- /// \version 1.14 Fixed problem that prevented 250kbps data rate working.
- ///
- /// \author Mike McCauley (mikem@airspayce.com) DO NOT CONTACT THE AUTHOR DIRECTLY: USE THE LISTS
- #ifndef NRF24_h
- #define NRF24_h
- #if ARDUINO >= 100
- #include <Arduino.h>
- #include "SoftSpi.h"
- #else
- #include <wiring.h>
- #include <pins_arduino.h>
- #endif
- // These defs cause trouble on some versions of Arduino
- #undef round
- #undef double
- // This is the bit in the SPI address that marks it as a write
- #define NRF24_SPI_WRITE_MASK 0x80
- // This is the maximum message length that can be supported by this library. Limited by
- // the suported message lengths oin the nRF24
- // Can be pre-defined to a smaller size (to save SRAM) prior to including this header
- #ifndef NRF24_MAX_MESSAGE_LEN
- #define NRF24_MAX_MESSAGE_LEN 32
- #endif
- // Keep track of the mode the NRF24 is in
- #define NRF24_MODE_IDLE 0
- #define NRF24_MODE_RX 1
- #define NRF24_MODE_TX 2
- // These values we set for FIFO thresholds are actually the same as the POR values
- #define NRF24_TXFFAEM_THRESHOLD 4
- #define NRF24_RXFFAFULL_THRESHOLD 55
- // This is the default node address,
- #define NRF24_DEFAULT_NODE_ADDRESS 0x00000000
- // This address in the TO addreess signifies a broadcast
- #define NRF24_BROADCAST_ADDRESS 0xffffffffff
- // SPI Command names
- #define NRF24_COMMAND_R_REGISTER 0x00
- #define NRF24_COMMAND_W_REGISTER 0x20
- #define NRF24_COMMAND_R_RX_PAYLOAD 0x61
- #define NRF24_COMMAND_W_TX_PAYLOAD 0xa0
- #define NRF24_COMMAND_FLUSH_TX 0xe1
- #define NRF24_COMMAND_FLUSH_RX 0xe2
- #define NRF24_COMMAND_REUSE_TX_PL 0xe3
- #define NRF24_COMMAND_R_RX_PL_WID 0x60
- #define NRF24_COMMAND_W_ACK_PAYLOAD(pipe) (0xa8|(pipe&0x7))
- #define NRF24_COMMAND_W_TX_PAYLOAD_NOACK 0xb0
- #define NRF24_COMMAND_NOP 0xff
- // Register names
- #define NRF24_REGISTER_MASK 0x1f
- #define NRF24_REG_00_CONFIG 0x00
- #define NRF24_REG_01_EN_AA 0x01
- #define NRF24_REG_02_EN_RXADDR 0x02
- #define NRF24_REG_03_SETUP_AW 0x03
- #define NRF24_REG_04_SETUP_RETR 0x04
- #define NRF24_REG_05_RF_CH 0x05
- #define NRF24_REG_06_RF_SETUP 0x06
- #define NRF24_REG_07_STATUS 0x07
- #define NRF24_REG_08_OBSERVE_TX 0x08
- #define NRF24_REG_09_RPD 0x09
- #define NRF24_REG_0A_RX_ADDR_P0 0x0a
- #define NRF24_REG_0B_RX_ADDR_P1 0x0b
- #define NRF24_REG_0C_RX_ADDR_P2 0x0c
- #define NRF24_REG_0D_RX_ADDR_P3 0x0d
- #define NRF24_REG_0E_RX_ADDR_P4 0x0e
- #define NRF24_REG_0F_RX_ADDR_P5 0x0f
- #define NRF24_REG_10_TX_ADDR 0x10
- #define NRF24_REG_11_RX_PW_P0 0x11
- #define NRF24_REG_12_RX_PW_P1 0x12
- #define NRF24_REG_13_RX_PW_P2 0x13
- #define NRF24_REG_14_RX_PW_P3 0x14
- #define NRF24_REG_15_RX_PW_P4 0x15
- #define NRF24_REG_16_RX_PW_P5 0x16
- #define NRF24_REG_17_FIFO_STATUS 0x17
- #define NRF24_REG_1C_DYNPD 0x1c
- #define NRF24_REG_1D_FEATURE 0x1d
- // These register masks etc are named wherever possible
- // corresponding to the bit and field names in the nRF24L01 Product Specification
- // #define NRF24_REG_00_CONFIG 0x00
- #define NRF24_MASK_RX_DR 0x40
- #define NRF24_MASK_TX_DS 0x20
- #define NRF24_MASK_MAX_RT 0x10
- #define NRF24_EN_CRC 0x08
- #define NRF24_CRCO 0x04
- #define NRF24_PWR_UP 0x02
- #define NRF24_PRIM_RX 0x01
- // #define NRF24_REG_01_EN_AA 0x01
- #define NRF24_ENAA_P5 0x20
- #define NRF24_ENAA_P4 0x10
- #define NRF24_ENAA_P3 0x08
- #define NRF24_ENAA_P2 0x04
- #define NRF24_ENAA_P1 0x02
- #define NRF24_ENAA_P0 0x01
- // #define NRF24_REG_02_EN_RXADDR 0x02
- #define NRF24_ERX_P5 0x20
- #define NRF24_ERX_P4 0x10
- #define NRF24_ERX_P3 0x08
- #define NRF24_ERX_P2 0x04
- #define NRF24_ERX_P1 0x02
- #define NRF24_ERX_P0 0x01
- // #define NRF24_REG_03_SETUP_AW 0x03
- #define NRF24_AW_3_BYTES 0x01
- #define NRF24_AW_4_BYTES 0x02
- #define NRF24_AW_5_BYTES 0x03
- // #define NRF24_REG_04_SETUP_RETR 0x04
- #define NRF24_ARD 0xf0
- #define NRF24_ARC 0x0f
- // #define NRF24_REG_05_RF_CH 0x05
- #define NRF24_RF_CH 0x7f
- // #define NRF24_REG_06_RF_SETUP 0x06
- #define NRF24_CONT_WAVE 0x80
- #define NRF24_RF_DR_LOW 0x20
- #define NRF24_PLL_LOCK 0x10
- #define NRF24_RF_DR_HIGH 0x08
- #define NRF24_PWR 0x06
- #define NRF24_PWR_m18dBm 0x00
- #define NRF24_PWR_m12dBm 0x02
- #define NRF24_PWR_m6dBm 0x04
- #define NRF24_PWR_0dBm 0x06
- // #define NRF24_REG_07_STATUS 0x07
- #define NRF24_RX_DR 0x40
- #define NRF24_TX_DS 0x20
- #define NRF24_MAX_RT 0x10
- #define NRF24_RX_P_NO 0x0e
- #define NRF24_STATUS_TX_FULL 0x01
- // #define NRF24_REG_08_OBSERVE_TX 0x08
- #define NRF24_PLOS_CNT 0xf0
- #define NRF24_ARC_CNT 0x0f
- // #define NRF24_REG_09_RPD 0x09
- #define NRF24_RPD 0x01
- // #define NRF24_REG_17_FIFO_STATUS 0x17
- #define NRF24_TX_REUSE 0x40
- #define NRF24_TX_FULL 0x20
- #define NRF24_TX_EMPTY 0x10
- #define NRF24_RX_FULL 0x02
- #define NRF24_RX_EMPTY 0x01
- // #define NRF24_REG_1C_DYNPD 0x1c
- #define NRF24_DPL_P5 0x20
- #define NRF24_DPL_P4 0x10
- #define NRF24_DPL_P3 0x08
- #define NRF24_DPL_P2 0x04
- #define NRF24_DPL_P1 0x02
- #define NRF24_DPL_P0 0x01
- // #define NRF24_REG_1D_FEATURE 0x1d
- #define NRF24_EN_DPL 0x04
- #define NRF24_EN_ACK_PAY 0x02
- #define NRF24_EN_DYN_ACK 0x01
- /////////////////////////////////////////////////////////////////////
- /// \class NRF24 NRF24.h <NRF24.h>
- /// \brief Send and receive addressed, reliable, acknowledged datagrams by nRF24L01.
- ///
- /// This base class provides basic functions for sending and receiving addressed, reliable,
- /// automatically acknowledged and retransmitted
- /// datagrams via nRF24L01 of arbitrary length to 32 octets per packet.
- /// Sender and receiver must each know the addreesses of the other, so arbitrary meshes and stars are
- /// not possible at this level.
- /// Directed replies (ie replies sent back to the original sender) are not possible
- /// (the address of the sender is not carried in the message).
- /// See subclasses for support for this.
- ///
- /// Subclasses may use this class to implement streams,
- /// mesh routers, repeaters, translators etc.
- ///
- /// On transmission, the addresses of this node defaults to 0x0000000000, unless changed by a subclass.
- ///
- /// The radio is configured to use Enhanced Shockburst with retransmits.
- /// TX_ADDR and RX_ADDR_P0 are set to the transmit address (ie the address of the destination for the next message
- /// RX_ADDR_P1 is set to the address of this node
- /// RX_ADDR_P2 is set to RX_ADDR_P1 with the LSbyte set to 0xff, for use as a broadcast address
- ///
- /// Naturally, for any 2 radios to communicate that must be configured to use the same frequency and
- /// data rate, and with compatible addresses
- class NRF24
- {
- public:
- /// \brief Defines convenient values for setting data rates in setRF()
- typedef enum
- {
- NRF24DataRate1Mbps = 0, ///< 1 Mbps
- NRF24DataRate2Mbps, ///< 2 Mbps
- NRF24DataRate250kbps ///< 250 kbps
- } NRF24DataRate;
- /// \brief Convenient values for setting transmitter power in setRF()
- /// These are designed to agree with the values for RF_PWR
- /// To be passed to setRF();
- typedef enum
- {
- NRF24TransmitPowerm18dBm = 0, ///< -18 dBm
- NRF24TransmitPowerm12dBm, ///< -12 dBm
- NRF24TransmitPowerm6dBm, ///< -6 dBm
- NRF24TransmitPower0dBm ///< 0 dBm
- } NRF24TransmitPower;
- /// Constructor. You can have multiple instances, but each instance must have its own
- /// chip enable and slave select pin.
- /// After constructing, you must call init() to initialise the interface
- /// and the radio module
- /// \param[in] chipEnablePin the Arduino pin to use to enable the chip for4 transmit/receive
- /// \param[in] chipSelectPin the Arduino pin number of the output to use to select the NRF24 before
- /// accessing it
- NRF24(uint8_t chipEnablePin = 4, uint8_t chipSelectPin = SS);
-
- /// Initialises this instance and the radio module connected to it.
- /// The following steps are taken:g
- /// - Set the chip enable and chip select pins to output LOW, HIGH respectively.
- /// - Initialise the SPI output pins
- /// - Initialise the SPI interface library to 8MHz (Hint, if you want to lower
- /// the SPI frequency (perhaps where you have other SPI shields, low voltages etc),
- /// call SPI.setClockDivider() after init()).
- /// -Flush the receiver and transmitter buffers
- /// - Set the radio to receive with powerUpRx();
- /// \return true if everything was successful
- boolean init();
- /// Execute an SPI command that requires neither reading or writing
- /// \param[in] command the SPI command to execute, one of NRF24_COMMAND_*
- /// \return the value of the device status register
- uint8_t spiCommand(uint8_t command);
- /// Reads a single command byte from the NRF24
- /// \param[in] command Command number, one of NRF24_COMMAND_*
- /// \return the single byte returned by the command
- uint8_t spiRead(uint8_t command);
- /// Writes a single command byte to the NRF24
- /// \param[in] command Command number, one of NRF24_COMMAND_*
- /// \param[in] val The value to write
- /// \return the value of the device status register
- uint8_t spiWrite(uint8_t command, uint8_t val);
- /// Reads a number of consecutive bytes from a command using burst read mode
- /// \param[in] command Command number of NRF24_COMMAND_*
- /// \param[in] dest Array to write the bytes returned by the command to. Must be at least len bytes
- /// \param[in] len Number of bytes to read
- /// \return the value of the device status register
- void spiBurstRead(uint8_t command, uint8_t* dest, uint8_t len);
- /// Write a number of consecutive bytes to a command using burst write mode
- /// \param[in] command Command number of the first register, one of NRF24_COMMAND_*
- /// \param[in] src Array of bytes to write. Must be at least len bytes
- /// \param[in] len Number of bytes to write
- /// \return the value of the device status register
- uint8_t spiBurstWrite(uint8_t command, uint8_t* src, uint8_t len);
- /// Reads a single register from the NRF24
- /// \param[in] reg Register number, one of NRF24_REG_*
- /// \return The value of the register
- uint8_t spiReadRegister(uint8_t reg);
- /// Writes a single byte to the NRF24, and at the ame time reads the current STATUS register
- /// \param[in] reg Register number, one of NRF24_REG_*
- /// \param[in] val The value to write
- /// \return the current STATUS (read while the command is sent)
- uint8_t spiWriteRegister(uint8_t reg, uint8_t val);
- /// Reads a number of consecutive registers from the NRF24 using burst read mode
- /// \param[in] reg Register number of the first register, one of NRF24_REG_*
- /// \param[in] dest Array to write the register values to. Must be at least len bytes
- /// \param[in] len Number of bytes to read
- /// \return the value of the device status register
- void spiBurstReadRegister(uint8_t reg, uint8_t* dest, uint8_t len);
- /// Write a number of consecutive registers using burst write mode
- /// \param[in] reg Register number of the first register, one of NRF24_REG_*
- /// \param[in] src Array of new register values to write. Must be at least len bytes
- /// \param[in] len Number of bytes to write
- /// \return the value of the device status register
- uint8_t spiBurstWriteRegister(uint8_t reg, uint8_t* src, uint8_t len);
- /// Reads and returns the device status register NRF24_REG_02_DEVICE_STATUS
- /// \return The value of the device status register
- uint8_t statusRead();
-
- /// Flush the TX FIFOs
- /// \return the value of the device status register
- uint8_t flushTx();
- /// Flush the RX FIFOs
- /// \return the value of the device status register
- uint8_t flushRx();
- /// Sets the transmit and receive channel number.
- /// The frequency used is (2400 + channel) MHz
- /// \return true on success
- boolean setChannel(uint8_t channel);
- /// Sets the chip configuration that will be used to set
- /// the NRF24 NRF24_REG_00_CONFIG register. This allows you to change some
- /// chip configuration for compatibility with libraries other than this one.
- /// You should not normally need to call this.
- /// Defaults to NRF24_EN_CRC, which is the standard configuraiton for this library.
- /// \param[in] configuration The chip configuration to be used.
- /// \return true on success
- boolean setConfiguration(uint8_t configuration);
- /// Sets the first len bytes of the address for the given NRF24 receiver pipe
- /// This is an internal function and is not normally used by appications, but
- /// can be used for specialised applications.
- /// \param[in] pipe The index of the pipe to set, from 0 to 5
- /// \param[in] address The new address for receiving. Must match the transmit address
- /// of the transmitting node
- /// \param[in] len Number of bytes of receive address to set.
- /// \return true on success
- boolean setPipeAddress(uint8_t pipe, uint8_t* address, uint8_t len);
- /// Set the Auto Retransmit Delay and Auto Retransmit Count
- /// for Auto retransmission (ART). See section 7.4.2 in the NRF24 documentation
- /// It may be very important to set an appropriate delay and count
- /// for your application, especially with
- /// 250kbps (i.e. slow) data rate. The defaults are OK for faster data rates. If
- /// the delay is too short, the symptoms wil be unreliable transmission, or tranmsission failures
- /// \param[in] delay The number of 250 microsecond intervals to wait for an ACK.
- /// \param[in] count The number of retries to us.
- /// \return true on success
- boolean setRetry(uint8_t delay, uint8_t count = 3);
- /// Sets the first len bytes of the address of this node
- /// Normally len is the same length as setAddressLength, but can be smaller in order to set the
- /// least significant bytes of the address
- /// \param[in] address The new address for receiving. Must match the setTransmitAddress of the transmitting node.
- /// \param[in] len Number of bytes of receive address to set.
- /// \return true on success
- boolean setThisAddress(uint8_t* address, uint8_t len);
- /// Sets the next transmit address
- /// \param[in] address The new address for transmitting. Must match the setThisAddress of the receiving node.
- /// \param[in] len Number of bytes of receive address to set.
- /// \return true on success
- boolean setTransmitAddress(uint8_t* address, uint8_t len);
- /// Sets the number of bytes transmitted
- /// in each payload
- /// \param[in] size Size of the transmitted payload in bytes
- /// \return true on success
- boolean setPayloadSize(uint8_t size);
- /// Sets the data rate and tranmitter power to use
- /// \param [in] data_rate The data rate to use for all packets transmitted and received. One of NRF24DataRate
- /// \param [in] power Transmitter power. One of NRF24TransmitPower.
- /// \return true on success
- boolean setRF(uint8_t data_rate, uint8_t power);
- /// Sets the radio in power down mode.
- /// Sets chip enable to LOW.
- /// \return true on success
- boolean powerDown();
- /// Sets the radio in RX mode.
- /// Sets chip enable to HIGH to enable the chip in RX mode.
- /// \return true on success
- boolean powerUpRx();
- /// Sets the radio in TX mode.
- /// Pulses the chip enable LOW then HIGH to enable the chip in TX mode.
- /// \return true on success
- boolean powerUpTx();
- /// Sends data to the address set by setTransmitAddress()
- /// Sets the radio to TX mode
- /// \param [in] data Data bytes to send.
- /// \param [in] len Number of data bytes to set in teh TX buffer. The actual size of the
- /// transmitted data payload is set by setPayloadSize
- /// \param [in] noack Optional parameter if true sends the message NOACK mode. Requires that the NOACK feature be
- /// enabled with spiWriteRegister(NRF24_REG_1D_FEATURE, NRF24_EN_DYN_ACK);
- /// \return true on success
- boolean send(uint8_t* data, uint8_t len, boolean noack = false);
- /// Blocks until the current message (if any)
- /// has been transmitted
- /// \return true on success, false if the Max retries were exceeded, or if the chip is not in transmit mode.
- boolean waitPacketSent();
- /// Indicates if the chip is in transmit mode and
- /// there is a packet currently being transmitted
- /// \return true if the chip is in transmit mode and there is a transmission in progress
- boolean isSending();
- /// Prints the value of all chip registers
- /// for debugging purposes
- /// \return true on success
- boolean printRegisters();
- /// Checks whether a received message is available.
- /// This can be called multiple times in a timeout loop
- /// \return true if a complete, valid message has been received and is able to be retrieved by
- /// recv()
- boolean available();
- /// Starts the receiver and blocks until a valid received
- /// message is available.
- void waitAvailable();
- /// Starts the receiver and blocks until a received message is available or a timeout
- /// \param[in] timeout Maximum time to wait in milliseconds.
- /// \return true if a message is available
- bool waitAvailableTimeout(uint16_t timeout);
- /// Turns the receiver on if it not already on.
- /// If there is a valid message available, copy it to buf and return true
- /// else return false.
- /// If a message is copied, *len is set to the length (Caution, 0 length messages are permitted).
- /// You should be sure to call this function frequently enough to not miss any messages
- /// It is recommended that you call it in your main loop.
- /// \param[in] buf Location to copy the received message
- /// \param[in,out] len Pointer to available space in buf. Set to the actual number of octets copied.
- /// \return true if a valid message was copied to buf
- boolean recv(uint8_t* buf, uint8_t* len);
- protected:
- private:
- uint8_t _configuration;
- uint8_t _chipEnablePin;
- uint8_t _chipSelectPin;
- };
- /// @example nrf24_audio_rx.pde
- /// Example sketch showing how to create an audio digital receiver
- /// with the NRF24 class.
- /// Works with the nrf24_audio_tx sample transmitter
- /// Connect audio output to pin 6, through a low pass filter consisting of a 1k resistor in series followed by a
- /// 0.0033 microfarad capacitor to ground (48kHz filter).
- /// The audio quality is poor: dont expect hi-fi!
- /// We have to change the PWM frequency to 62 kHz so we can get bandwidth reasonable
- /// audio out through the low pass filter
- /// Tested on UNO
- /// @example nrf24_audio_tx.pde
- /// Example sketch showing how to create an audio digital transmitter
- /// with the NRF24 class.
- /// Connect a 1Vp-p audio sigal to analog input 0, connected through a 1uF capacitor
- /// Works with the nrf24_audio_rx sample receiver
- /// The audio quality is poor: dont expect hi-fi!
- ///
- /// This code sends about 250 messages per second, each with 32 8 bit samples from analog input 0
- /// It uses the NRF4 in NOACK mode. The receiver never acknowledges or replies
- /// Tested on UNO
- /// @example nrf24_ping_client.pde
- /// Example sketch showing how to create a simple messageing client
- /// with the NRF24 class.
- /// It is designed to work with the example nrf24_ping_server
- /// It also works with ping_server from the Mirf library
- /// @example nrf24_ping_server.pde
- /// Example sketch showing how to create a simple messageing server
- /// with the NRF24 class.
- /// It is designed to work with the example nrf24_ping_client.
- /// It also works with ping_client from the Mirf library
- /// @example nrf24_specan.pde
- /// Example sketch showing how to create a primitive spectrum analyser
- /// with the NRF24 class.
- /// The nRF24L01 received power detector is only one bit, but
- /// this will show which channels have more than -64dBm present
- /// @example nrf24_test.pde
- /// Test suite for the NRF24 class.
- /// @example crazyflie.ino
- /// This sketch act like a Crazyflie quadcopter http://www.bitcraze.se/
- /// using the CRTP radiolink protocol:
- /// http://wiki.bitcraze.se/projects:crazyflie:firmware:comm_protocol
- /// @example crazyflie_client.ino
- /// This sketch act like a Crazyflie client (ie the transmitter) using the CRTP radiolink protocol:
- /// http://wiki.bitcraze.se/projects:crazyflie:firmware:comm_protocol
- /// to control a Crazyflie quadcopter http://www.bitcraze.se/
- /// using a RC transmitter in trainer mode, such as the Spektrum DX6i and others.
- #endif
|