Home | History | Annotate | Download | only in c++

Lines Matching defs:comm

32 upm::NRF24L01 *comm = NULL;
49 std::cout << "Reciever :: " << *((uint32_t *)&(comm->m_rxBuffer[0])) << std::endl;
56 comm = new upm::NRF24L01(7, 8);
57 comm->setSourceAddress ((uint8_t *) local_address);
58 comm->setDestinationAddress ((uint8_t *) broadcast_address);
59 comm->setPayload (MAX_BUFFER);
60 comm->configure ();
61 comm->setSpeedRate (upm::NRF_250KBPS);
62 comm->setChannel (99);
63 comm->setDataReceivedHandler (nrf_handler);
68 comm->pollListener ();
73 delete comm;