NRF24L01 can not be initialized

TMRh20:
Here is my pin configuration, it seems to differ slightly from what you posted initially, so thought it might be worth posting:

Mega:
48 (CE), 49 (CSN), 50 (MISO), 51 (MOSI), 52 (SCK)

RF24 radio(48,49);

Nano/Uno:

9 (CE), 10 (CSN), 11(MOSI), 12(MISO), 13(SCK)

RF24 radio(9,10);

I do have the exact same Pin Config :wink: and It does not work, now I tried the Mirf libraray but this does not even compile the examples :

.../arduino-1.0.1/libraries/Mirf/Mirf.cpp: In member function ‘void Nrf24l::init()’:
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp:85: error: ‘OUTPUT’ was not declared in this scope
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp:85: error: ‘pinMode’ was not declared in this scope
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp: In member function ‘void Nrf24l::ceHi()’:
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp:285: error: ‘HIGH’ was not declared in this scope
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp:285: error: ‘digitalWrite’ was not declared in this scope
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp: In member function ‘void Nrf24l::ceLow()’:
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp:289: error: ‘LOW’ was not declared in this scope
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp:289: error: ‘digitalWrite’ was not declared in this scope
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp: In member function ‘void Nrf24l::csnHi()’:
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp:293: error: ‘HIGH’ was not declared in this scope
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp:293: error: ‘digitalWrite’ was not declared in this scope
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp: In member function ‘void Nrf24l::csnLow()’:
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp:297: error: ‘LOW’ was not declared in this scope
.../arduino-1.0.1/libraries/Mirf/Mirf.cpp:297: error: ‘digitalWrite’ was not declared in this scope

an it seem that the Mirf.ce() and Mirf.csn() set funtions had been removed.