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

Lines Matching defs:comm

32 upm::NRF24L01 *comm = NULL;
55 comm = new upm::NRF24L01(7, 8);
56 comm->setSourceAddress ((uint8_t *) srcAddress);
57 comm->setDestinationAddress ((uint8_t *) destAddress);
58 comm->setPayload (MAX_BUFFER);
59 comm->setChannel (99);
60 comm->configure ();
61 comm->setDataReceivedHandler (nrf_handler);
66 memcpy (comm->m_txBuffer, &dummyData, sizeof (dummyData));
67 comm->send ();
75 delete comm;