This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

setting channels in nRF24e1

I am trying to cange the channel and power in the nRF24e1 but I don't obtain results.
A basic code for getting this maybe as follows:

    CS = 1;
    DELAY_100us(0);
    SPI_ReadWrite(CHANNEL);
    DELAY_100us(0);
    for(b=0;b<rxconf.n;b++)
    {
        SPI_ReadWrite(rxconf.buf[b]);
    }
    CS = 0;

Is this correct?

0