Problem nRF24L01 with Arduino

nRF24L01 inspection

/*
  If your serial output has these values same then Your nrf24l01 module is in working condition :
  
  EN_AA          = 0x3f
  EN_RXADDR      = 0x02
  RF_CH          = 0x4c
  RF_SETUP       = 0x03
  CONFIG         = 0x0f
  
  This code is under public domain
  
  Last updated on 21/08/28 
  https://dhirajkushwaha.com/elekkrypt
 */

#include <SPI.h>
#include <RF24.h>
#include <printf.h>

RF24 radio(9, 10);

byte addresses[][6] = {"1Node", "2Node"};


void setup() {
  radio.begin();
  radio.setPALevel(RF24_PA_LOW);
  
  radio.openWritingPipe(addresses[0]);
  radio.openReadingPipe(1, addresses[1]); 
  radio.startListening();
  
  Serial.begin(9600);
  printf_begin();

  radio.printDetails();
  
}

void loop() {
//  empty

}

My transmitter serial output


SPI Speedz = 10 Mhz

STATUS = 0x0e RX_DR=0 TX_DS=0 MAX_RT=0 RX_P_NO=7 TX_FULL=0

RX_ADDR_P0-1 = 0x65646f4e31 0x65646f4e32

RX_ADDR_P2-5 = 0xc3 0xc4 0xc5 0xc6

TX_ADDR = 0x65646f4e31

RX_PW_P0-6 = 0x20 0x20 0x20 0x20 0x20 0x20

EN_AA = 0x3f

EN_RXADDR = 0x02

RF_CH = 0x4c

RF_SETUP = 0x03

CONFIG = 0x0f

DYNPD/FEATURE = 0x00 0x00

Data Rate = 1 MBPS

Model = nRF24L01+

CRC Length = 16 bits

PA Power = PA_LOW

ARC = 0

My receiver serial output

SPI Speedz = 10 Mhz

STATUS = 0x0e RX_DR=0 TX_DS=0 MAX_RT=0 RX_P_NO=7 TX_FULL=0

RX_ADDR_P0-1 = 0xe7e7e7e7e7 0xc2c2c2c2c2

RX_ADDR_P2-5 = 0xc3 0xc4 0xc5 0xc6

TX_ADDR = 0xe7e7e7e7e7

RX_PW_P0-6 = 0x00 0x00 0x00 0x00 0x00 0x00

EN_AA = 0x3f

EN_RXADDR = 0x03

RF_CH = 0x02

RF_SETUP = 0x0f

CONFIG = 0x08

DYNPD/FEATURE = 0x00 0x00

Data Rate = 2 MBPS

Model = nRF24L01+

CRC Length = 8 bits

PA Power = PA_MAX

ARC = 0

I moved your topic to an appropriate forum category @princesamsuddin.

In the future, when creating a topic please take some time to pick the forum category that best suits the subject of your topic. There is an "About the _____ category" topic at the top of each category that explains its purpose.

This is an important part of responsible forum usage, as explained in the "How to get the best out of this forum" guide. The guide contains a lot of other useful information. Please read it.

Thanks in advance for your cooperation.

Post an annotated schematic showing exactly how you have wired your project. Be sure to show all connections, power sources, grounds, and any other hardware. Explain what the problem is and why the different bit rates between transmit and receive?

Pick one.

It's the same with the CRC length.

OP. Are you using the same nrf24L01 library version and test code on both the transmitter and the receiver?
Supply also a link to the site from which you purchased these modules.