Getting a continuous signal from nRF24L01 board

I would occassionally write the TX FIFO of 32 bytes via my Arduino but I want the device that I have

The one on the bottom to constantly repeat the signal at a particular channel. Say

unsigned char data = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E,
                     0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E};

setup()
{
radio.reUseTX();
}

loop
{
radio.writeFast(&data, 32, 0);
}

What I want is that the data repeatedly gets sent again and again throughout till the next write cycle of Arduino which runs at 16MHz range comes in. How do I achieve this? I am using the current RF24 library of Arduino.

Say I write foo and then bar.

foofoofoofoofoofobarbarbarbarbarbafoofoofoofoo

How do I achieve the above at 2.4GHz?

Related