[SOLVED] latest git-snapshot causes freezes
-
I hope you catch it, as I believe I'm hit by the same bug. It the happens similar way on Sensebender Micro & NRF24L01+. I have a thread on troubleshooting forum with topic of interrupt mystery. I'm arduino newbie, so I'm not much help. I'm just about to try it on Arduino Pro mini just for comparison.
Somehow the enbling of interrupts lock it within a minute or so. If no interrupt enabled, no locking.
BR,
Ikke -
I hope you catch it, as I believe I'm hit by the same bug. It the happens similar way on Sensebender Micro & NRF24L01+. I have a thread on troubleshooting forum with topic of interrupt mystery. I'm arduino newbie, so I'm not much help. I'm just about to try it on Arduino Pro mini just for comparison.
Somehow the enbling of interrupts lock it within a minute or so. If no interrupt enabled, no locking.
BR,
Ikke -
@cimba007
just an idea..i don't know if it can help at all..but it looks there is a while loop in FaBo3Axis::readI2c
do you think if adding some debug here you get something??
i was just thinking..a freeze that's weird..no wdt? -
@tekka Arduiono 1.6.12
############################################################## # Add the new board to boards.txt (normally located at "C:\Program Files\Arduino\hardware\arduino\avr" # The *.bootloader.* etries only matters if you want to program bootloader (and fuses) from Arduino IDE. # See http://www.engbedded.com/fusecalc (select Atmega328p) for interpretation of fuse values and how # extended fuses are written in different applications (07h in Arduino IDE = FFh in Atmel studio). ############################################################## apm96.name=APM Optiboot internal 1MHz noBOD 9600baud apm96.upload.tool=avrdude apm96.upload.protocol=arduino apm96.upload.maximum_size=32256 apm96.upload.speed=9600 apm96.bootloader.tool=avrdude apm96.bootloader.low_fuses=0x62 apm96.bootloader.high_fuses=0xde apm96.bootloader.extended_fuses=0x06 apm96.bootloader.path=optiboot_v50 apm96.bootloader.file=atmega328_1a.hex apm96.bootloader.unlock_bits=0x3F apm96.bootloader.lock_bits=0x2F apm96.build.board=AVR_APM96 apm96.build.mcu=atmega328p apm96.build.f_cpu=1000000L apm96.build.core=arduino apm96.build.variant=standard ##############################################################I changed the fuses to include BDOUT @ 1,8Volt
VCC of my setup is 2-3Volt -
@cimba007
just an idea..i don't know if it can help at all..but it looks there is a while loop in FaBo3Axis::readI2c
do you think if adding some debug here you get something??
i was just thinking..a freeze that's weird..no wdt?@scalz Thanks for the hint with the while-loop. I changed the i2c-read the following way:
void FaBo3Axis::readI2c(uint8_t register_addr, uint8_t num, uint8_t buffer[]) { Wire.beginTransmission(_i2caddr); Wire.write(register_addr); Wire.endTransmission(); Wire.requestFrom(_i2caddr, num); int i = 0; uint8_t limit = num; while(Wire.available() && limit--) { Serial.print("r"); buffer[i] = Wire.read(); i++; } }Now it should under no circumstanced read more then the number given. Sadly this had no impact:
| 34291 34291 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 34357 TSF:MSG:ACK 134390 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0 r34471 MCO:SLP:MS=16,SMS=0,I1=1,M1=3,I2=255,M2=255 34537 MCO:SLP:TPD 34553 MCO:SLP:WUP=1 | 34553 34553 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 34553 TSF:MSG:ACK 134553 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0Just before the sleep ..
I then added a Serial.flush() to the "r"-output ..
void FaBo3Axis::readI2c(uint8_t register_addr, uint8_t num, uint8_t buffer[]) { Serial.print("readI2c"); Serial.flush(); Wire.beginTransmission(_i2caddr); Wire.write(register_addr); Wire.endTransmission(); Wire.requestFrom(_i2caddr, num); int i = 0; uint8_t limit = num; while(Wire.available() && limit--) { Serial.print("r"); Serial.flush(); buffer[i] = Wire.read(); i++; } }54706 MCO:SLP:WUP=1 | 54706 54706 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 54706 TSF:MSG:ACK 154706 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0Now the freeze is clearly before entering the sleep function ..
but then .. on another round ..
| 56623 56623 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 56623 TSF:MSG:ACK 156623 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0 readI2creadI2cgot # from slave: 1 r78987 MCO:SLP:MS=16,SMS=0,I1=1,M1=3,I2=255,M2=255 79052 MCO:SLP:TPD 79069 MCO:SLP:WUP=1 | 79069 79069 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 79069 TSF:MSG:ACK 179069 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0 readI2cSo .. your tip was very good .. it seems to be related to the
Wire.beginTransmission(_i2caddr); Wire.write(register_addr); Wire.endTransmission();-call .. only one questions remains .. why was it working perfectly on the stable library?
Just to be sure I will run exactly the same code in a non-stop loop with the stable library ..
-
@scalz Thanks for the hint with the while-loop. I changed the i2c-read the following way:
void FaBo3Axis::readI2c(uint8_t register_addr, uint8_t num, uint8_t buffer[]) { Wire.beginTransmission(_i2caddr); Wire.write(register_addr); Wire.endTransmission(); Wire.requestFrom(_i2caddr, num); int i = 0; uint8_t limit = num; while(Wire.available() && limit--) { Serial.print("r"); buffer[i] = Wire.read(); i++; } }Now it should under no circumstanced read more then the number given. Sadly this had no impact:
| 34291 34291 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 34357 TSF:MSG:ACK 134390 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0 r34471 MCO:SLP:MS=16,SMS=0,I1=1,M1=3,I2=255,M2=255 34537 MCO:SLP:TPD 34553 MCO:SLP:WUP=1 | 34553 34553 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 34553 TSF:MSG:ACK 134553 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0Just before the sleep ..
I then added a Serial.flush() to the "r"-output ..
void FaBo3Axis::readI2c(uint8_t register_addr, uint8_t num, uint8_t buffer[]) { Serial.print("readI2c"); Serial.flush(); Wire.beginTransmission(_i2caddr); Wire.write(register_addr); Wire.endTransmission(); Wire.requestFrom(_i2caddr, num); int i = 0; uint8_t limit = num; while(Wire.available() && limit--) { Serial.print("r"); Serial.flush(); buffer[i] = Wire.read(); i++; } }54706 MCO:SLP:WUP=1 | 54706 54706 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 54706 TSF:MSG:ACK 154706 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0Now the freeze is clearly before entering the sleep function ..
but then .. on another round ..
| 56623 56623 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 56623 TSF:MSG:ACK 156623 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0 readI2creadI2cgot # from slave: 1 r78987 MCO:SLP:MS=16,SMS=0,I1=1,M1=3,I2=255,M2=255 79052 MCO:SLP:TPD 79069 MCO:SLP:WUP=1 | 79069 79069 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 79069 TSF:MSG:ACK 179069 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0 readI2cSo .. your tip was very good .. it seems to be related to the
Wire.beginTransmission(_i2caddr); Wire.write(register_addr); Wire.endTransmission();-call .. only one questions remains .. why was it working perfectly on the stable library?
Just to be sure I will run exactly the same code in a non-stop loop with the stable library ..
-
@tekka said:
AVR board def
What do you mean with AVR board def?
https://forum.mysensors.org/topic/4999/latest-git-snapshot-causes-freezes/17
I am using an arduino pro-mini china clone (328p) with 8mhz internal oscillator and DIV_8 fuse.
The bootloader is an "APM Optiboot 1Mhz" .. cant find the link right now.
-
@tekka said:
AVR board def
What do you mean with AVR board def?
https://forum.mysensors.org/topic/4999/latest-git-snapshot-causes-freezes/17
I am using an arduino pro-mini china clone (328p) with 8mhz internal oscillator and DIV_8 fuse.
The bootloader is an "APM Optiboot 1Mhz" .. cant find the link right now.
-
btw .. the "old" library is running happy for 6 minutes now ... still continuing
TSP:MSG:READ 0-0-14 s=0,c=1,t=16,pt=2,l=2,sg=0:0
1TSP:MSG:SEND 14-14-0-0 s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=ok:0
readI2cgot # from slave: 1
r | 373997
TSP:MSG:READ 0-0-14 s=0,c=1,t=16,pt=2,l=2,sg=0:0
1TSP:MSG:SEND 14-14-0-0 s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=ok:0
readI2cgot # from slave: 1
r | 374177@tekka: I will try the "new snapshot" with the board defs you mentioned .. standby
-
@1.6.12 board defs
r68550 MCO:SLP:MS=16,SMS=0,I1=1,M1=3,I2=255,M2=255 68599 MCO:SLP:TPD 68632 MCO:SLP:WUP=1 | 68632 68632 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 68632 TSF:MSG:ACK 168632 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0 readI2c@1.6.13 board defs
readI2cgot # from slave: 1 r62914 MCO:SLP:MS=16,SMS=0,I1=1,M1=3,I2=255,M2=255 62980 MCO:SLP:TPD 62996 MCO:SLP:WUP=1 | 62996 62996 TSF:MSG:READ,0-0-14,s=0,c=1,t=16,pt=2,l=2,sg=0:0 62996 TSF:MSG:ACK 162996 TSF:MSG:SEND,14-14-0-0,s=0,c=1,t=16,pt=2,l=2,sg=0,ft=0,st=OK:0 readI2c -
hmm..too bad that didn't do the trick..but there was something (and that's an issue which can appear easily when using other libs, "hidden" while) and difficult to reproduce exactly the same case on my side as i'm not using the same radio.
i've dl the latest snpashot. so i will check on my side if one of my sketch is still running fine (with 4ints) and if i get the problem i'll try to debug it too. but i hope to not get it lol :) -
That would be nice .. my latest findings point out that the i2c-function is getting stuck. I investigated the i2c-source of arduino a bit and found out it is quite depending on interrupts.
This is now
wild speculation
For some reason interrupts got disabled while the i2c library is trying to write some data on the i2c-bus ..
wild-speculation-end
-
Code working: (4minutes+)
sei(); fabo3axis.readIntStatus();Code not working:
//sei(); fabo3axis.readIntStatus();I noticed that interrupts in the sleep function are only detached if the intrrupt occurs ..
whereas in the stable
detachInterrupt(interrupt1); if (interrupt2!=0xFF) detachInterrupt(interrupt2);They get detached after the wakeup in the sleep ..
What if .. for some strange reason the interrupt is interfearing with .. whatever?!
EDIT: with the added sei(); the node is running for 10 minutes now ...
EDIT2: Running for 20 minutes now .. -
-
@tekka, the versions are:
Mysensors is development branch, I didn't pay attention while cloning, it's set to default to development:
commit 8cacb4825b256f63aa2fc51468fd11a90bb19678 Merge: 75a100f 8ccb1ca Author: Patrick Fallberg <patrick@fallberg.net> Date: Thu Sep 22 19:02:11 2016 +0200Arduino IDE is 1.6.4
$ rpm -qa arduino* arduino-core-1.6.4-8.fc24.noarch arduino-doc-1.6.4-8.fc24.noarch arduino-1.6.4-8.fc24.noarchMy IDE board manager shows Arduino AVR boards version 1.6.7, and it seems there is newer one available, 1.6.14. I will update that.
Mysensors AVR board definition for Micro version is 1.0.1
-
so far, on my side, using custom sleep() and other mix, my ints are still working..i'm using latest snap' now, and still in 1.6.8..
but that's not the same usecase as i'm not using mys sleep for this node..
I will try your case; at least mine is working well :) . it could be sort of race..always a dilemma somewhere..