So,
I have an NRF24L01 (the one with the PA and SMA antenna) gateway. After much frustration, I got it working with a pool temp sensor works fine, no issue at all.
Now I want to add a simple node with an LED out, this is on a pro micro running on 3.3v at 8MHz.
I tried a lot of things and I could not add it to the network, then I amongst a lot of troubleshooting I wiped the EEPROM.
After re-flashing the original sketch, the sensor presented itself and I could communicate with it, success. Except that if I power it down (or reset it) it doesn't reconnect (fails to find a parent, gateway receive the request and send a response tho).
The thing is that I have no clue where this is coming from, the node can clearly communicate after an EEPROM wipe (I can send a V_STATUS message, and it turns on/off the LED with no issues ) , so in my view it's ruling out power and range issues
I've also tried to set a static node id and parent node id with
#define MY_PARENT_NODE_ID 0
#define MY_NODE_ID 5
These have no effect, like absolutely none the node stills searches for a parent (the node id itself seems to work tho)
I'm at a complete lost so if you want to dive in here are my logs:
Gateway: https://hastebin.com/ehimahunum.txt
Node: https://hastebin.com/kiguyojuxi.txt
Node with RF24 verbose: https://hastebin.com/isiliyuzow.txt
Thanks in advance for you help