You are reading a single comment by @NebbishHacker and its replies. Click here to read the full conversation.
  • I've been able to reproduce the issue a couple times and I got your exact symptoms - no logs, only the bluetooth widget frozen, completely unresponsive until I reset by holding BTN1+BTN2.

    Looking at the content of the WIDGETS array on my watch, I see that the order of the widgets is bluetooth, batpc, ram. The fact that the ram widgets is consistently the only one visible when it freezes is makes me suspect the issue might somehow be triggered by the battery (with percentage) widget.

    I modified your code a bit because I'm impatient, and now it generally hangs within 5 minutes:

    var ctr = 0;
    g.clear();
    Bangle.loadWidgets();
    Bangle.drawWidgets();
    Bangle.setGPSPower(1);
    Bangle.setHRMPower(1);
    setInterval(function(){
      g.reset();
      g.setFont("6x8", 3);
      g.drawString(ctr.toString(),60,60,true);­
      ctr++;
      Bangle.drawWidgets();
      g.flip();
    },1);
    
About