gbs-control icon indicating copy to clipboard operation
gbs-control copied to clipboard

No Output on Debugger Console

Open Metaln00b opened this issue 1 year ago • 7 comments

Bildschirmfoto vom 2024-02-01 19-14-14 Does anyone else have the problem that no output is visible on the Developer Console within the WEBUI?

Browsers: Brave, Chrome IDE: PlatformIO

Metaln00b avatar Feb 01 '24 18:02 Metaln00b

No problems on 64b634.

@PSHarold So it seems to be a problem with the new OLED menu. ~~Could it perhaps be due to the font.h being removed?~~

Edit: I tried with font.h and nothing has changed.

Metaln00b avatar Feb 01 '24 18:02 Metaln00b

Waiting for someone to confirm this as I don't have my gbsc for now.

PSHarold avatar Feb 02 '24 08:02 PSHarold

Web UI will run without a GBS ;p But cheers for your work :)

ramapcsx2 avatar Feb 02 '24 12:02 ramapcsx2

Just uploaded 5293343 to my unit again and no problems here, running Firefox and Brave on Linux.

YoImLee avatar Feb 02 '24 14:02 YoImLee

Just uploaded 5293343 to my unit again and no problems here, running Firefox and Brave on Linux.

If i click on Print Info, nothing happens. I've used Brave and Chrome, cleared the cache also.

Metaln00b avatar Feb 02 '24 14:02 Metaln00b

if (ESP.getFreeHeap() > 20000) {
    webSocket.broadcastTXT(&data, 1);
} else {
    webSocket.disconnect();
}

Problem found. There is not enough heap available on my uC. I am running between 16000 and 19000. I changed the value in the statement to 10000 and now it is running.

The OLED menu now needs a little more heap, which is somehow logical.

How do we deal with this?

Metaln00b avatar Feb 04 '24 12:02 Metaln00b

That's weird that it's apparently only on yours? Maybe a fluke, who knows... I think this check was there because the server could eat through all the leftover heap memory, so this was some protection. It might not be needed anymore, dunno. Maybe try to remove it? :)

ramapcsx2 avatar Feb 04 '24 19:02 ramapcsx2