I am seeing something similar with RFM69 (specifically RFM69CW) and ESP8266. I have build an ESP8266 gateway based on the GatewayESP8266 sketch and this is what I changed
#define MY_RADIO_RFM69
#define MY_GATEWAY_ESP8266
#define MY_RFM69_FREQUENCY RF69_868MHZ
#define MY_RF69_IRQ_PIN 4
#define MY_RF69_SPI_CS 15
#define MY_RF69_IRQ_NUM 4
I build a sensor node with the DallasTemperatureSensor sketch on an Arduino Mini Pro and defined
#define MY_RADIO_RFM69
#define MY_RFM69_FREQUENCY RF69_868MHZ
When I start up the gateway I see
0;255;3;0;9;Starting gateway (RRNGE-, 2.0.0-beta)
0;255;3;0;9;Radio init successful.
....scandone
state: 0 -> 2 (b0)
state: 2 -> 3 (0)
state: 3 -> 5 (10)
add 0
aid 8
cnt
connected with AP, channel 1
ip:62.x.x.x,mask:255.255.255.128,gw:62.x.x.x
.IP: 62.x.x.x
0;255;3;0;9;Init complete, id=0, parent=0, distance=0
So far so good - I assume all the radio wiring is OK, since the radio init is successful
On the sensor node I see
Starting sensor (RRNNA-, 2.0.0-beta)
Radio init successful.
find parent
send: 255-255-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
find parent
send: 255-255-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
find parent
send: 255-255-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
Init complete, id=255, parent=255, distance=255
As soon as the sensor node is started the ESP8266 crashes with a WDT reset
Soft WDT reset
ctx: cont
sp: 3ffef370 end: 3ffef630 offset: 01b0
>>>stack>>>
3ffef520: 00000001 3ffef6d4 3ffef964 00000000
3ffef530: 00000024 3ffef6d4 3ffef964 40202436
3ffef540: 3ffe8432 00000000 3ffef6d4 402024bc
3ffef550: 3ffe8432 00000000 3ffef6d4 402026a7
3ffef560: 3ffef6f2 00000001 3ffef6d4 40202b87
3ffef570: 3fffdae0 00000000 3ffee600 3ffef6ac
3ffef580: 3fffdae0 3ffef6f1 3ffef6d4 40202cf4
3ffef590: 3fff1210 00000000 3ffee600 402042b4
3ffef5a0: 00000000 00000002 3ffef82c 40203d20
3ffef5b0: 00000000 3ffef6d4 3ffef964 4020247c
3ffef5c0: 401057ff 00000400 00000103 3ffef5f0
3ffef5d0: 3ffef5e0 00000004 3ffef6cd 4020249c
3ffef5e0: 3ffe8920 00000000 00000000 3ffee608
3ffef5f0: 3fffdae0 00000000 3ffee600 3ffee608
3ffef600: 3fffdae0 00000000 3ffee600 40203e6c
3ffef610: feefeffe feefeffe 3ffee600 402045b4
3ffef620: feefeffe feefeffe 3ffee610 40100114
<<<stack<<<
The libraries are 2.0 beta as from a few days ago. I consider the power to the ESP8266 to be OK, since I use the same for en NRF24 based gateway and also for several other ESP modules.
From the thread I understand that known issues should be fixed in the current beta. Any ideas on how to move on?