-
When pressing play in a Netflix notification the Gadgetbridge app
crashes and restarts, but the bluetooth connection is not resumed
automatically.I can confirm this, but with Amazon music. I opened https://codeberg.org/Freeyourgadget/Gadgetbridge/issues/2485
but I don't have the time to add the required logs right now. Maybe you can do it ...? -
-
-
-
@Gordon: That's exactly the issue I encountered before. I included at the moment as workaround in the watch face
Bluetooth.setConsole(true);
otherwise the whole console is written to the screen.
-
-
-
Sadly, Navstar satellites are synchronised, so the number of channels are irrelevant for downloading ephemeris and almanac data.
Yes and no. The data is the same, but the TTFB of the data can be massivly reduced. Multi channel is used as a method for shortening the time to 30 s to 3 min. The mathematicians at the chip designers do the rest of the improvement.
-
-
-
-
-
-
-
-
To be exact: The shown code is derived from the Anton clock approach to time updates.
Jep, you're right. Thank you. That's not correct. The undefined would lead to one buzz in the first, two buzzes in the second hour and so on. But this does not explain why this leads to infinite buzzes in the first hour - due to the 2s delay.
-
I developed an hour chime function (buzz) two years ago for v1 which worked very well. After some firmware upgrades on v1, the chime had sometimes complete runaways and did not stop chiming. I had several attempts with completely different approaches to get rid of it and secured the buzz() in a way that it can only be executed once at a time. Now I tried the event triggered solution below on v2 - and there it is again. Works, works not. Does somebody see my error in the code? From my point of view it should be impossible that the buzz code is executed twice.
function planChime() { if (chimeTimer) { clearTimeout(chimeTimer); } chimeTimer = setTimeout(function() { chimeTimer = undefined; Bangle.buzz().then(() => { setTimeout(function(){ planChime(); }, 2000); }); }, 3600000 - (Date.now() % 3600000)); }
after a buzzer runaway:
Uncaught Storage Updated! Interpreter error: [ "FIFO_FULL" ] New interpreter error: FIFO_FULL >
-
-
-
-
-
-
-
By the way: With other music apps it does not crash, with Amazon Music this can be reproduced.