arendst / Tasmota

Alternative firmware for ESP8266 and ESP32 based devices with easy configuration using webUI, OTA updates, automation using timers or rules, expandability and entirely local control over MQTT, HTTP, Serial or KNX. Full documentation at
https://tasmota.github.io/docs
GNU General Public License v3.0
22.19k stars 4.81k forks source link

ESP8266 WiFi connection fails after a while #7904

Closed dbvcode closed 4 years ago

dbvcode commented 4 years ago

Hello guys, I have discovered some strange issues that have raised some questions and would very much appreciate help in this direction.

The story: I have build 8 Wemos D1 Mini with 1 WS2812, 1 inverted Buzzer and 1 PN532 card reader. I've made o custom image from Tasmota 8.1.0.10(lite), built it with USE_PN532_HSUand USE_PN532_CAUSE_EVENTS. Took out all the emulation and stuff I did not need.

All the boards connect to a MQTT server. I also developed an app to listen to the MQTT and watches for cards that have been read and sends a Backlog color 4bf20e; dimmer 100; delay 8; Power OFF over MQTT to the device that read the card. This makes the neopixel green and buzzes a bit to send a notification the card has been read and accepted.

The idea is simple and works...most of the time.

The requirements: I don't care about power consumption. I want it to be reliable, work snappy and reconnect to the Wifi and MQTT as soon as possible after a disconnect. I don't want it to sleep or idle. It should just look for cards that are read and send them to MQTT.

Image and device details:

Program Version 8.1.0.10(lite)
Build Date & Time   2020-03-13T10:25:54
Core/SDK Version    STAGE/2.2.2-dev(38a443e)
Uptime  0T00:03:22
Flash write Count   388 at 0xF8000
Boot Count  11
Restart Reason  External System
Friendly Name 1 Tasmota

AP1 SSId (RSSI) Aaaa (70%, -65 dBm)
Hostname    tasmota_F87AC3-6851
IP Address  192.168.2.138
Gateway 192.168.2.1
Subnet Mask 255.255.255.0
DNS Server  192.168.2.2
MAC Address 5C:CF:7F:F8:7A:C3

MQTT Host   192.168.2.25
MQTT Port   1883
MQTT User   user
MQTT Client DVES_F87AC3
MQTT Topic  tasmota_%06X
MQTT Group Topic    cmnd/tasmotas/
MQTT Full Topic cmnd/tasmota_F87AC3/
MQTT Fallback Topic cmnd/DVES_F87AC3_fb/

Emulation   Disabled
mDNS Discovery  Disabled

ESP Chip Id 16284355
Flash Chip Id   0x1640E0
Flash Size  4096kB
Program Flash Size  4096kB
Program Size    439kB
Free Program Space  564kB
Free Memory 25kB

The setup: I'm logging everything in the serial console with PlatformIO on VSCode so I keep an eye on what happens.

I also go on my router and simulate a Wifi failure buy turning off the AP I'm connected to the turning it back on.

For stress testing I've let the card on top of the reader so every 1 second, 2 seconds a reading pops up.

I first light up the neopixel with the Rule1 when a card is read, then I expect the neopixel to change color and the buzzer to buzz when my MQTT program sends the command back to the device thru MQTT.

This way I can see if the card is read, not read or if the card is read and also getting feedback on MQTT.

I also watch the logs on my app that's connected to MQTT and watches for Tasmota read cards.

The tasmota setup: Template: {"NAME":"MyTemplate","GPIO":[255,255,255,255,7,161,255,255,138,139,255,255,255],"FLAG":15,"BASE":18} This is:

GPIO4: WS2812 (7)
GPIO5: Buzzeri (161)
GPIO12:PN532 Tx (138)
GPIO13:PN532 Rx (139)

Rule for lighting up the neopixel briefly when a card is read(so I know Tasmota is aware of the card):

Rule1 ON EVENT#PN532_UID DO backlog color 0728fc; delay 1; power off ENDON

Other settings I use:

SetOption34 10; Delay 4; TelePeriod 20; Sleep 0; SetOption0 0; SetOption36 0; Rule1 1

The problem: Seems the connection of my Wemos D1 Mini is not reliable and it takes a long time for Tasmota to figure out what is going on and maybe reset the device.

What I've noticed:

  1. After a disconnect from the Wifi(I turn wifi off, then I turn it back on), Tasmota sees I have no wifi and tries to reconnect. After it does, it waits for a while(I guess the MQTT timeout) and then tries to connect to MQTT. This mostly works!

  2. After working a while, it just drops the wifi connection, tries to reconnect and then it always times out even if the wifi is on. This goes into a loop and the device needs reset. Strange behavior and hard to understand why it does not see the wifi anymore.

  3. Some other strange situation that arises is that Tasmota thinks it's connected to Wifi but it actually isn't or is in a state that it cannot use the network. I have no ping from the network to Tasmota either. But it thinks it's connected and tries to reconnect to MQTT and guess what, that fails with rc:-2. This also creates a loop!

  4. I've also noticed sometimes the loop is:

    10:52:20 WIF: Checking connection...
    10:52:20 WIF: Attempting connection...
    10:52:20 WIF: Checking connection...
    10:52:20 WIF: Attempting connection...

    and then it crashes with an error similar to the one at the bottom. Then the device restart.

For 2. and 3. sometimes one reset(from the button) is not enough as it gets back into the same loop. The second reset seems to work. Also issues 2. and 3. happen out of the blue(i don't mess with the wifi), after the devices has been active for a while.

The strange things: Out of the 8 Wemoses I've flashed one did not connect to the Wifi from the get go. Check out the behavior on What I've noticed point 2.

Other stuff I've done: I thought this might be a power issue and the whole esp8266 gets confused and doesn't work properly. So I strapped a 10000uF electrolytic cap over the Wemos's 3.3V and ground terminals. Seems it works more stable now but this may only be in my head as the same software issues as described happen again. Seems after a bit longer than without the cap.

My questions:

  1. After a WIFI failure, how can I make Tasmota reconnect instantly to MQTT after it has reconnected successfully to the WIFI? (And not wait the timeout for MQTT). I guess I want the same behavior Tasmota has when it boots up. First it looks for Wifi, then instantly for MQTT.

  2. How can I restart the device after 5 consecutive WIFI reconnect failures?

  3. How can I restart the device after 5 consecutive MQTT reconnect failures?

  4. How can I prevent Tasmota to retain any type of state and assume it starts fresh on each reboot?

PS. I'd willingly go after these things in the code myself but unfortunately I don't have any experience with C, low level stuff, hardware programming, etc so I'm hopping my post yields some results, tips, pointers, maybe some additional rules to Tasmota or maybe even some bug fixes?

What I also guess is that most people use Tasmota for low power usage, sensors that send data every 10 minutes or something like this. This way this type of behavior may not even show up. But when I started stress testing it this it came up.

As I was writing my request, this error popped up in my serial console and the device restarted(don't know if this is of any help to anyone):

10:00:14 WIF: Connecting to AP1 Aaaa in mode 11N as tasmota_F87AC3-6851...

Exception (29):
epc1=0x4023b21b epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000019 depc=0x00000000

>>>stack>>>

ctx: sys
sp: 3fffecb0 end: 3fffffb0 offset: 0190
3fffee40:  0000004c 40237563 00000018 00000000  
3fffee50:  3fffee70 4023b357 3ffed5fc 1234cfa9  
3fffee60:  40255f0e 00000000 00000019 00000003  
3fffee70:  00000018 3fff4464 00000004 3ffedd40  
3fffee80:  3ffe8ed6 3ffe8ed6 3fff3f57 4023d31f  
3fffee90:  3ffedcf4 4023cef0 1234cfa9 60000600  
3fffeea0:  4023ca6c 40254908 3ffed6a4 00000000  
3fffeeb0:  00000001 00000004 3ffebaa8 3ffebb02  
3fffeec0:  4023cf2b 3ffedde8 3ffedde8 60000600  
3fffeed0:  4023eea0 3ffedde8 4bc6a7f0 00000000  
3fffeee0:  3ffed6a4 4023ee64 3ffedd0c 3ffee530  
3fffeef0:  4023cee0 4023ceb4 3ffed6a4 3ffee530  
3fffef00:  4023ce7f 3ffedd0c 3ffee530 4022fddc  
3fffef10:  4023d3ed 05b05bbb 3ffee530 60000600  
3fffef20:  4024d735 3ffedd0c 3ffee530 1234bc62  
3fffef30:  4024d77a 3fffdab0 00000000 3fffdcb0  
3fffef40:  3ffee558 3fffdad0 3fff27e0 40226b68  
3fffef50:  40000f49 40000f49 3fffdab0 40000f49  
3fffef60:  40000e19 00000005 0006dda8 00000000  
3fffef70:  00000000 aa55aa55 000000ed 401051f1  
3fffef80:  401051f7 0006dda8 00000000 00000000  
3fffef90:  4010000d 00000000 00000000 00000000  
3fffefa0:  402461ac 3fffef3c 4024615d 3fffff58  
3fffefb0:  3fffffc0 00000000 00000000 feefeffe  
3fffefc0:  feefeffe feefeffe feefeffe feefeffe  
3fffefd0:  feefeffe feefeffe feefeffe feefeffe  
3fffefe0:  feefeffe feefeffe feefeffe feefeffe  
3fffeff0:  feefeffe feefeffe feefeffe feefeffe  
3ffff000:  feefeffe feefeffe feefeffe feefeffe  
3ffff010:  feefeffe feefeffe feefeffe feefeffe  
3ffff020:  feefeffe feefeffe feefeffe feefeffe  
3ffff030:  feefeffe feefeffe feefeffe feefeffe  
3ffff040:  feefeffe feefeffe feefeffe feefeffe  
3ffff050:  feefeffe feefeffe feefeffe feefeffe  
3ffff060:  feefeffe feefeffe feefeffe feefeffe  
3ffff070:  feefeffe feefeffe feefeffe feefeffe  
3ffff080:  feefeffe feefeffe feefeffe feefeffe  
3ffff090:  feefeffe feefeffe feefeffe feefeffe  
3ffff0a0:  feefeffe feefeffe feefeffe feefeffe  
3ffff0b0:  feefeffe feefeffe feefeffe feefeffe  
3ffff0c0:  feefeffe feefeffe feefeffe feefeffe  
3ffff0d0:  feefeffe feefeffe feefeffe feefeffe  
3ffff0e0:  feefeffe feefeffe feefeffe feefeffe  
3ffff0f0:  feefeffe feefeffe feefeffe feefeffe  
3ffff100:  feefeffe feefeffe feefeffe feefeffe  
3ffff110:  feefeffe feefeffe feefeffe feefeffe  
3ffff120:  feefeffe feefeffe feefeffe feefeffe  
3ffff130:  feefeffe feefeffe feefeffe feefeffe  
3ffff140:  feefeffe feefeffe feefeffe feefeffe  
3ffff150:  feefeffe feefeffe feefeffe feefeffe  
3ffff160:  feefeffe feefeffe feefeffe feefeffe  
3ffff170:  feefeffe feefeffe feefeffe feefeffe  
3ffff180:  feefeffe feefeffe feefeffe feefeffe  
3ffff190:  feefeffe feefeffe feefeffe feefeffe  
3ffff1a0:  feefeffe feefeffe feefeffe feefeffe  
3ffff1b0:  feefeffe feefeffe feefeffe feefeffe  
3ffff1c0:  feefeffe feefeffe feefeffe feefeffe  
3ffff1d0:  feefeffe feefeffe feefeffe feefeffe  
3ffff1e0:  feefeffe feefeffe feefeffe feefeffe  
3ffff1f0:  feefeffe feefeffe feefeffe feefeffe  
3ffff200:  feefeffe feefeffe feefeffe feefeffe  
3ffff210:  feefeffe feefeffe feefeffe feefeffe  
3ffff220:  feefeffe feefeffe feefeffe feefeffe  
3ffff230:  feefeffe feefeffe feefeffe feefeffe  
3ffff240:  feefeffe feefeffe feefeffe feefeffe  
3ffff250:  feefeffe feefeffe feefeffe feefeffe  
3ffff260:  feefeffe feefeffe feefeffe feefeffe  
3ffff270:  feefeffe feefeffe feefeffe feefeffe  
3ffff280:  feefeffe feefeffe feefeffe feefeffe  
3ffff290:  feefeffe feefeffe feefeffe feefeffe  
3ffff2a0:  feefeffe feefeffe feefeffe feefeffe  
3ffff2b0:  feefeffe feefeffe feefeffe feefeffe  
3ffff2c0:  feefeffe feefeffe feefeffe feefeffe  
3ffff2d0:  feefeffe feefeffe feefeffe feefeffe  
3ffff2e0:  feefeffe feefeffe feefeffe feefeffe  
3ffff2f0:  feefeffe feefeffe feefeffe feefeffe  
3ffff300:  feefeffe feefeffe feefeffe feefeffe  
3ffff310:  feefeffe feefeffe feefeffe feefeffe  
3ffff320:  feefeffe feefeffe feefeffe feefeffe  
3ffff330:  feefeffe feefeffe feefeffe feefeffe  
3ffff340:  feefeffe feefeffe feefeffe feefeffe  
3ffff350:  feefeffe feefeffe feefeffe feefeffe  
3ffff360:  feefeffe feefeffe feefeffe feefeffe  
3ffff370:  feefeffe feefeffe feefeffe feefeffe  
3ffff380:  feefeffe feefeffe feefeffe feefeffe  
3ffff390:  feefeffe feefeffe feefeffe feefeffe  
3ffff3a0:  feefeffe feefeffe feefeffe feefeffe  
3ffff3b0:  00000002 00000000 00000020 40100844  
3ffff3c0:  40102269 feefeffe 00000002 40101e38  
3ffff3d0:  3ffe9222 401050d3 3ffec990 feefeffe  
3ffff3e0:  00000001 401042ae 3ffed3e8 feefeffe  
3ffff3f0:  4010471f feefeffe feefeffe feefeffe  
3ffff400:  feefeffe feefeffe feefeffe feefeffe  
3ffff410:  401041e7 00000023 00000002 00040000  
3ffff420:  00002200 feefeffe feefeffe feefeffe  
3ffff430:  401030ac 00080000 feefeffe feefeffe  
3ffff440:  00000000 00000000 0000001f 40100844  
3ffff450:  00000002 2c9f0300 4000050c 3fffc278  
3ffff460:  40102d94 3fffc200 00000022 40101e38  
3ffff470:  4022c469 00000030 00000018 ffffffff  
3ffff480:  4022c208 00000000 4025abd4 00000001  
3ffff490:  00000001 3ffff6d0 00000000 00000001  
3ffff4a0:  000000a0 3ffff70c 00000000 3ffff610  
3ffff4b0:  4025abd4 00000000 4025abd3 00000030  
3ffff4c0:  00002200 feefeffe 3fffc228 40105991  
3ffff4d0:  401030ac 00080000 feefeffe feefeffe  
3ffff4e0:  4022bf7a 00000000 00000008 ffffffff  
3ffff4f0:  4022c208 2c9f0300 4000050c 3fffc278  
3ffff500:  00000005 00000000 00000020 40100844  
3ffff510:  4022c1ea 00000030 00000005 40101e38  
3ffff520:  3ffe9225 401050eb 3ffeccb0 00000001  
3ffff530:  00000000 00000001 3ffff610 4022c01e  
3ffff540:  00007fff 4025abcd 3ffed6c8 40102bb0  
3ffff550:  3ffe9ad0 00000000 00000000 4025abcd  
3ffff560:  00000000 4025abce 3ffff610 4022c208  
3ffff570:  3ffe9ad0 7fffffff 00002200 00000001  
3ffff580:  00000001 00000001 00302020 40100844  
3ffff590:  00000000 00000000 0000001f 40100844  
3ffff5a0:  00000005 00000000 00000020 40100844  
3ffff5b0:  4000050c 3fffc200 00000005 40101e38  
3ffff5c0:  3ffe9225 401050eb 3ffecc10 00000001  
3ffff5d0:  00000000 00000001 3ffff6b0 4022c01e  
3ffff5e0:  00007fff 4025abcd 00000000 40102bb0  
3ffff5f0:  3ffe9ab8 00000000 00000000 4025abcd  
3ffff600:  00000000 4025abce 3ffff6b0 4022c208  
3ffff610:  3ffff70d 7fffffff 00000001 ffff0208  
3ffff620:  3ffff70c 00000001 3f302090 00040000  
3ffff630:  00000000 00000000 0000001f 40100844  
3ffff640:  3ffe9ac4 2c9f0300 3fffc228 40105991  
3ffff650:  4000050c 3fffc200 00000022 00000100  
3ffff660:  4020ee18 00000030 00000008 ffffffff  
3ffff670:  3ffff780 3ffff770 0000000c 3ffe834c  
3ffff680:  00000000 00000001 00000000 3ffff760  
3ffff690:  3ffff6c0 3ffff768 3ffff760 ffffffff  
3ffff6a0:  3ffffc68 3ffe834c 00000003 00000001  
3ffff6b0:  00000000 00000001 3ffff790 4022c01e  
3ffff6c0:  3ffff7ac 4025abcd 0000000c 4022593c  
3ffff6d0:  00000006 00000001 3ffff700 4025abcd  
3ffff6e0:  00000000 4025abce 3ffff790 4022c208  
3ffff6f0:  3ffffbc8 00000000 3ffffbd4 3ffff750  
3ffff700:  00000001 00000001 3f3020a0 4020ef98  
3ffff710:  3ffff7e0 3ffff80d 3ffffbe0 40225759  
3ffff720:  3ffff760 00000000 3ffffc74 3ffff800  
3ffff730:  3ffff760 3ffff808 3ffff800 4020c6c8  
3ffff740:  40229958 3ffff750 00000400 3ffff800  
3ffff750:  3ffff860 3ffff850 0000000c 3ffe834c  
3ffff760:  00000001 00000001 00000000 4022593c  
3ffff770:  00000006 00000001 3ffff7a0 ffffffff  
3ffff780:  3ffffd48 3ffe834c 00000003 4022b7bd  
3ffff790:  3ffff88d 00000000 00000001 ffff0208  
3ffff7a0:  3ffff88c 00000002 3ffffc40 4020ef98  
3ffff7b0:  00000000 3ffff800 3ffffc80 40225759  
3ffff7c0:  00000005 3ffffbe0 00000000 40225778  
3ffff7d0:  3ffff7f0 3ffffc40 00000000 4020f5c5  
3ffff7e0:  40229958 3ffff7f0 00000400 00000040  
3ffff7f0:  3ffff8c0 3ffff8ee 414c4544 4e4f0059  
3ffff800:  3ffff7e0 00000000 3ffffd54 3ffff8e0  
3ffff810:  3ffff840 3ffff8e8 3ffff8e0 4020c6c8  
3ffff820:  00000000 3ffff7f8 00000007 3ffff8e0  
3ffff830:  3ffff8e8 3ffffd24 3ffffd20 4020ef98  
3ffff840:  00000001 3ffff8ee 0000000c 4022593c  
3ffff850:  00000006 00000001 3ffff880 3ffff8d0  
3ffff860:  3ffff890 3ffff8d8 3ffff8d0 4020c6c8  
3ffff870:  3ffffd48 00000000 3ffffd54 3ffff8d0  
3ffff880:  3ffff8d8 3ffffd24 3ffffd20 4020ef98  
3ffff890:  00000000 3ffff8e0 3ffffd60 40225759  
3ffff8a0:  00000005 3ffffcc0 00000000 40225778  
3ffff8b0:  3ffff8d0 3ffffd20 00000000 4020f5c5  
3ffff8c0:  40229958 3ffff8d0 00000400 00000040  
3ffff8d0:  3ffff8c0 3ffff900 45574f50 00003152  
3ffff8e0:  3ffff8c0 3ffff8f0 54415453 00000000  
3ffff8f0:  3ffffa50 00000000 3ffffa50 4022c01e  
3ffff900:  00000001 3ffff9f3 0000000a 00000000  
3ffff910:  00000001 00000000 0000000a 00000023  
3ffff920:  3ffffa50 00000023 3ffffa50 4022c01e  
3ffff930:  00000000 3fff082a 3ffff960 0000001c  
3ffff940:  00001000 00000000 00001000 00000000  
3ffff950:  3ffffab0 00000000 3ffffab0 4022c01e  
3ffff960:  00000023 3ffffa53 00000000 00000002  
3ffff970:  00000000 00000002 3ffffa50 00000023  
3ffff980:  3ffffab0 00000023 3ffffab0 4022c01e  
3ffff990:  3ffffa10 3fff082a 3ffff9c0 3ffe88f2  
3ffff9a0:  00000000 3ffe88f4 3ffffa50 4022bf54  
3ffff9b0:  3ffffab0 3fff082a 3ffffa10 4022ca80  
3ffff9c0:  00000023 0000002e 3f302073 00000001  
3ffff9d0:  00000000 00000001 3ffffab0 4022c01e  
3ffff9e0:  3ffffa53 40264e60 00000000 4022ca80  
3ffff9f0:  00000002 00000000 3ffffb50 40264e60  
3ffffa00:  00000000 40264e61 3ffffab0 4022c208  
3ffffa10:  00000000 00000023 00000000 00000000  
3ffffa20:  00000023 00000f91 00302073 4022c01e  
3ffffa30:  00000000 40263fc4 3ffffae0 3fff1514  
3ffffa40:  3fff26b0 3ffe834c 00000040 4022b7bd  
3ffffa50:  00d8fb2e 40263fe2 00000011 ffff0208  
3ffffa60:  3ffffb00 0000003f 00000000 00000001  
3ffffa70:  3ffffb80 3ffffb70 00000024 3ffe834c  
3ffffa80:  00000023 00000001 00000000 4022c208  
3ffffa90:  00008b60 40264e61 00000000 000000d8  
3ffffaa0:  3ffe8644 3ffe834c 00000fa0 4022b7bd  
3ffffab0:  3fff081b 00000000 0000000e ffff0208  
3ffffac0:  3ffef88a 00000f9f 00000002 4022b800  
3ffffad0:  3ffffb80 3ffffb50 00000008 00000000  
3ffffae0:  3ffffc40 00000000 3ffffc40 4022c01e  
3ffffaf0:  00000001 3ffffbe3 0000000a 00000000  
3ffffb00:  00000001 00000000 0000000a 00000041  
3ffffb10:  3ffffc40 00000041 3ffffc40 4022c01e  
3ffffb20:  00000000 3fff082a 3ffffb50 0000001c  
3ffffb30:  00001000 3fff156c 00001000 00000000  
3ffffb40:  3ffffca0 00000000 3ffffca0 4022c01e  
3ffffb50:  00000041 3ffffc43 3ffffcb3 00000002  
3ffffb60:  00000000 00000002 3ffffc40 00000041  
3ffffb70:  3ffffca0 00000041 3ffffca0 4022c01e  
3ffffb80:  3ffffc00 3fff082a 3ffffbb0 3ffe88f2  
3ffffb90:  00000000 3ffe88f4 3ffffc40 4022bf54  
3ffffba0:  3ffffca0 3fff082a 3ffffc00 4022ca80  
3ffffbb0:  00000041 0000004c 3f302073 00000001  
3ffffbc0:  00000000 00000001 3ffffca0 4022c01e  
3ffffbd0:  3ffffc43 40264e60 00000000 00000013  
3ffffbe0:  00fffd10 00000013 3ffffd10 40264e60  
3ffffbf0:  00000000 40264e61 3ffffca0 4022c208  
3ffffc00:  00000000 00000041 00000000 00000000  
3ffffc10:  00000041 00000f72 00302073 4022ca80  
3ffffc20:  00000013 05aec2a1 3ffede20 0000004c  
3ffffc30:  3fff26b0 3ffe834c 0000004d 4022b7bd  
3ffffc40:  00d9be40 402640ff 00000000 ffff0208  
3ffffc50:  3fffbdf4 0000004c 00000000 402640ff  
3ffffc60:  3ffffd70 3ffffd60 00000024 3ffe834c  
3ffffc70:  00000041 00000001 00000000 00000000  
3ffffc80:  00008f88 000011f1 000011f1 000000d9  
3ffffc90:  3ffe8644 3ffe834c 00000fa0 4022b7bd  
3ffffca0:  3fff07fc 0000004c 0000002d ffff0208  
3ffffcb0:  3ffef88a 00000f9f 3fffbdf4 4022b800  
3ffffcc0:  3ffffd70 3ffffd40 3fffbdf4 4022e39d  
3ffffcd0:  3fff26b0 00000008 3fffbdf4 4022e388  
3ffffce0:  00000013 00000008 00000002 402247c6  
3ffffcf0:  303a3031 34313a30 46495720 6f43203a  
3ffffd00:  63656e6e 676e6974 206f7420 20315041  
3ffffd10:  75626942 3fff1514 00000002 4022b800  
3ffffd20:  3ffffd70 3ffffd60 0000000c 00373846  
3ffffd30:  3ffffd70 3ffffd40 00000008 3fffc278  
3ffffd40:  40102d94 3fffc200 3ffffda0 4022b874  
3ffffd50:  3ffffd70 3ffffd60 0000000c ffffffff  
3ffffd60:  00000005 00000000 00000020 40100844  
3ffffd70:  000000d9 3ffffda0 00000005 40101e38  
3ffffd80:  00000005 00000000 00000020 40100844  
3ffffd90:  00000005 00000000 00000020 40100844  
3ffffda0:  3ffe9225 401050eb 00000005 40101e38  
3ffffdb0:  3ffe9225 401050eb 3ffecc38 40100844  
3ffffdc0:  401029cf 3ffecc38 00000005 40101e38  
3ffffdd0:  00007fff 123478b3 3ffed6c8 40102bb0  
3ffffde0:  3ffe9adc 00000000 00000000 40101e38  
3ffffdf0:  00007fff 123478b3 40103072 00000100  
3ffffe00:  3ffe9adc 7fffffff 00002200 00000001  
3ffffe10:  00000000 00000000 0000001f 40100844  
3ffffe20:  3ffe9adc 00000000 3fffc228 40105991  
3ffffe30:  4000050c 2c9f0300 4000050c 3fffc278  
3ffffe40:  4000066d 00000030 00000010 ffffffff  
3ffffe50:  00000000 00000000 0000001f 40100844  
3ffffe60:  00004bc6 a0975290 3fffc228 40105991  
3ffffe70:  4000050c 3fffc6fc 7b8d5290 1234bc57  
3ffffe80:  40100a10 00000030 00000010 ffffffff  
3ffffe90:  40100a04 1234cf8a 00000000 00418937  
3ffffea0:  00000000 77a19760 00000000 fffffffe  
3ffffeb0:  0000495f 3fffc6fc 88259760 1234cf8a  
3ffffec0:  00000000 05639997 3fff27e0 00000030  
3ffffed0:  3fff1448 3fffdad0 3fff27e0 00000030  
3ffffee0:  3ffef0e0 00000004 3ffef4e0 4021e78a  
3ffffef0:  00000000 3fffdad0 3fff27e0 40221162  
3fffff00:  00000004 00000004 3ffef0e0 4021ebda  
3fffff10:  00000000 00000001 3fffff30 4022954d  
3fffff20:  00000000 4bc6a7f0 0004a92a 3fff27e0  
3fffff30:  40227f28 4bc6a7f0 0004a92a 3fff27e0  
3fffff40:  00000000 4bc6a7f0 0004a92a 3fff27e0  
3fffff50:  00000000 00000000 00000000 3fff13be  
3fffff60:  3fffdad0 3fff27e0 40226be8 3fffefa0  
3fffff70:  00000000 3fff1448 0004ab50 402273f6  
3fffff80:  3fffdad0 3fff13be 00000000 4021a014  
3fffff90:  3fffdad0 00000000 3fff27a0 3fff27e0  
3fffffa0:  3fffdad0 00000000 3fff27a0 40226d0c  
<<<stack<<<
close-issue-app[bot] commented 4 years ago

This issue has been automatically closed because the issue template is missing or incomplete. Filling the template is required so standard questions don't need to be asked again each time. Our ability to provide assistance is greatly hampered if few minutes are not taken to complete the issue template with the requested information. The details requested potentially affect which options to pursue. The small amount of time you will spend completing the template will also help the volunteers, providing assistance to you, to reduce the time required to help you. Please, could you be so kind on completing the issue template in order to have more information so as to properly help you? Thank you for taking the time to report, hopefully it can be resolved soon. Support Information Wiki for more information. Chat for more user experience. Community for forum. Code of Conduct Contributing Guideline and Policy