I have crashes all the time when using this instruction. I cannot get it stable
Code: Select all
2018-06-14 22:36:17.118 Error: Domoticz received fatal signal 11 !...
2018-06-14 22:36:17.180 Error: /home/pi/domoticz/domoticz() [0x263630]
2018-06-14 22:36:17.180 Error: /home/pi/domoticz/domoticz(_Z14signal_handleri+0x4c) [0x2636e8]
2018-06-14 22:36:17.180 Error: /lib/arm-linux-gnueabihf/libc.so.6(__default_sa_restorer+0) [0x76c6d6b0]
2018-06-14 22:36:17.180 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave9ValueList8WriteXMLEP12TiXmlElement+0xbc) [0x7e6f78]
2018-06-14 22:36:17.180 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave12CommandClass8WriteXMLEP12TiXmlElement+0x3c4) [0x822354]
2018-06-14 22:36:17.180 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave12CentralScene8WriteXMLEP12TiXmlElement+0x14) [0x813c50]
2018-06-14 22:36:17.180 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave4Node8WriteXMLEP12TiXmlElement+0xe7c) [0x808ac0]
2018-06-14 22:36:17.180 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave6Driver11WriteConfigEv+0x218) [0x7f1a00]
2018-06-14 22:36:17.180 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave7Manager11WriteConfigEj+0x1c) [0x7cf624]
2018-06-14 22:36:17.180 Error: /home/pi/domoticz/domoticz(_ZN10COpenZWave21WriteControllerConfigEv+0x1c) [0x504584]
2018-06-14 22:36:17.180 Error: /home/pi/domoticz/domoticz(_ZN10COpenZWave19OnZWaveNotificationEPKN9OpenZWave12NotificationE+0x1264) [0x517cdc]
2018-06-14 22:36:17.181 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave7Manager14NotifyWatchersEPNS_12NotificationE+0x74) [0x7da808]
2018-06-14 22:36:17.181 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave6Driver14NotifyWatchersEv+0xcc) [0x7f8b28]
2018-06-14 22:36:17.181 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave6Driver16DriverThreadProcEPNS_5EventE+0x2a0) [0x801550]
2018-06-14 22:36:17.181 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave10ThreadImpl3RunEv+0x20) [0x84ba98]
2018-06-14 22:36:17.181 Error: /home/pi/domoticz/domoticz(_ZN9OpenZWave10ThreadImpl10ThreadProcEPv+0x8) [0x84bab4]
Ok, please verify my theory.
Code: Select all
diff --git a/config/zwcfg.xsd b/config/zwcfg.xsd
index ed9d20f..e32c9be 100644
--- a/config/zwcfg.xsd
+++ b/config/zwcfg.xsd
@@ -67,6 +67,7 @@
<xs:attribute name='version' type='xs:string' use='optional'/>
<xs:attribute name='query_stage' type='xs:string' use='optional'/>
<xs:attribute name='security' use='optional'>
+ <xs:attribute name='sleep_after_send' use='optional'/>
<xs:simpleType>
<xs:restriction base='xs:string'>
<xs:enumeration value='true'/>
Last point for me is to add manually line
<xs:attribute name='sleep_after_send' use='optional'/>
after line
<xs:attribute name='query_stage' type='xs:string' use='optional'/>
in domoticz/Config/zwcfg.xsd file. It seems that this corrections might take an effect. I will report in few days if crashes stopped.
Adam