nrf24L01 Fullduplex

Hi all :smiley: how can i do nrf24L01 (driver from www.dymembedded.com) is Fullduplex i write some code is an error help me please :oops:

  1. What chip are you writing code for?

  2. What compiler are you using?

  3. What is the error youโ€™re seeing?

  1. I use nrf24L01 (DCBT)

  2. I use MPLAB C18 ( you is sugges me) :lol:

  3. When i send data it loss i apply code Tutorial 2

please tell me again how i do it

Thank you very much an all answer

The following defines in nrf24l01.h must be changed for your particular microcontroller and how it interfaces to the nRF24L01. There are comments in nrf24l01.h in this section that describe how to do it.

#include <p18f452.h>

#define nrf24l01_CE_IOREGISTER		PORTC
#define nrf24l01_CE_PINMASK			0x02

#define nrf24l01_CSN_IOREGISTER		PORTC
#define nrf24l01_CSN_PINMASK			0x04

#define nrf24l01_IRQ_IOREGISTER		PORTB
#define nrf24l01_IRQ_PINMASK			0x01