The first thing to say is that you have not included all the output which the tests have generated.
Here is a complete example starting with the phrase "CheckConnection Starting":
20:18:01.573 -> CheckConnection Starting
20:18:01.573 ->
20:18:01.573 -> FIRST WITH THE DEFAULT ADDRESSES after power on
20:18:01.665 -> Note that RF24 does NOT reset when Arduino resets - only when power is removed
20:18:01.711 -> If the numbers are mostly 0x00 or 0xff it means that the Arduino is not
20:18:01.804 -> communicating with the nRF24
20:18:01.849 ->
20:18:01.849 -> STATUS = 0x0e RX_DR=0 TX_DS=0 MAX_RT=0 RX_P_NO=7 TX_FULL=0
20:18:01.942 -> RX_ADDR_P0-1 = 0xe7e7e7e7e7 0x4141417852
20:18:01.942 -> RX_ADDR_P2-5 = 0xc3 0xc4 0xc5 0xc6
20:18:01.988 -> TX_ADDR = 0xe7e7e7e7e7
20:18:02.034 -> RX_PW_P0-6 = 0x00 0x20 0x00 0x00 0x00 0x00
20:18:02.080 -> EN_AA = 0x3f
20:18:02.080 -> EN_RXADDR = 0x02
20:18:02.126 -> RF_CH = 0x4c
20:18:02.126 -> RF_SETUP = 0x07
20:18:02.172 -> CONFIG = 0x0e
20:18:02.172 -> DYNPD/FEATURE = 0x00 0x00
20:18:02.172 -> Data Rate = 1MBPS
20:18:02.218 -> Model = nRF24L01+
20:18:02.218 -> CRC Length = 16 bits
20:18:02.264 -> PA Power = PA_MAX
20:18:02.310 ->
20:18:02.310 ->
20:18:02.310 -> AND NOW WITH ADDRESS AAAxR 0x41 41 41 78 52 ON P1
20:18:02.356 -> and 250KBPS data rate
20:18:02.356 ->
20:18:02.356 -> STATUS = 0x0e RX_DR=0 TX_DS=0 MAX_RT=0 RX_P_NO=7 TX_FULL=0
20:18:02.403 -> RX_ADDR_P0-1 = 0xe7e7e7e7e7 0x4141417852
20:18:02.494 -> RX_ADDR_P2-5 = 0xc3 0xc4 0xc5 0xc6
20:18:02.540 -> TX_ADDR = 0xe7e7e7e7e7
20:18:02.540 -> RX_PW_P0-6 = 0x00 0x20 0x00 0x00 0x00 0x00
20:18:02.587 -> EN_AA = 0x3f
20:18:02.633 -> EN_RXADDR = 0x02
20:18:02.633 -> RF_CH = 0x4c
20:18:02.633 -> RF_SETUP = 0x27
20:18:02.633 -> CONFIG = 0x0e
20:18:02.679 -> DYNPD/FEATURE = 0x00 0x00
20:18:02.726 -> Data Rate = 250KBPS
20:18:02.726 -> Model = nRF24L01+
20:18:02.772 -> CRC Length = 16 bits
20:18:02.772 -> PA Power = PA_MAX
20:18:02.772 ->
20:18:02.772 ->
Most of your last two debug sessions looks odd, with many fields set to either 0x0000 or 0xFFFFFF, but this in particular is odd where the CRC length is disabled.
The one in post #4 looks good so far but, like all, is incomplete.
It does appear that the ones in posts #5 and #6, where you appear to have made changes to the power provision indicate a problem.
I think the first thing to do is to repeat the results and supply the complete output from the debug session, again indicating how the power was configured for each test.