HomeSort by relevance Sort by last modified time
    Searched refs:NRF24L01 (Results 1 - 7 of 7) sorted by null

  /hardware/bsp/intel/peripheral/libupm/src/nrf24l01/
nrf24l01.cxx 32 #include "nrf24l01.h"
37 NRF24L01::NRF24L01 (uint8_t cs, uint8_t ce)
44 NRF24L01::init (uint8_t chip_select, uint8_t chip_enable) {
66 NRF24L01::configure () {
82 NRF24L01::send (uint8_t * value) {
111 NRF24L01::send () {
116 NRF24L01::setSourceAddress (uint8_t * addr) {
123 NRF24L01::setDestinationAddress (uint8_t * addr) {
128 NRF24L01::setBroadcastAddress (uint8_t * addr)
    [all...]
nrf24l01.h 165 * @brief NRF24L01 Transceiver library
166 * @defgroup nrf24l01 libupm-nrf24l01
170 * @library nrf24l01
171 * @sensor nrf24l01
172 * @comname NRF24L01 Transceiver
179 * @brief API for the NRF24L01 Transceiver Module
181 * This module defines the NRF24L01 interface for libnrf24l01
183 * @image html nrf24l01.jpg
184 * @snippet nrf24l01-receiver.cxx Interestin
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/java/
NRF24L01_receiverSample.java 45 upm_nrf24l01.NRF24L01 comm = new upm_nrf24l01.NRF24L01((short) 7, (short) 8);
67 private upm_nrf24l01.NRF24L01 comm = null;
69 public ReceiverCallback(upm_nrf24l01.NRF24L01 comm) {
81 System.out.println("No NRF24L01 instance given to callback");
NRF24L01_transmitterSample.java 46 upm_nrf24l01.NRF24L01 comm = new upm_nrf24l01.NRF24L01((short) 7, (short) 8);
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
nrf24l01-receiver.cxx 28 #include "nrf24l01.h"
32 upm::NRF24L01 *comm = NULL;
56 comm = new upm::NRF24L01(7, 8);
nrf24l01-broadcast.cxx 28 #include "nrf24l01.h"
34 upm::NRF24L01 *sensor = NULL;
54 sensor = new upm::NRF24L01(7, 8);
nrf24l01-transmitter.cxx 28 #include "nrf24l01.h"
32 upm::NRF24L01 *comm = NULL;
55 comm = new upm::NRF24L01(7, 8);

Completed in 70 milliseconds