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