Skip to content

Commit

Permalink
Disable SSE again
Browse files Browse the repository at this point in the history
  • Loading branch information
SciLor committed Apr 27, 2022
1 parent de1535e commit a0b9896
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Hackiebox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ BoxEvents Events;
Hackiebox Box;

void crash(crashSource source, uint32_t* sp) {
Box.logStreamSse.setSsePaused(true);
//Box.logStreamSse.setSsePaused(true);
Log.info("crashSource=%i, sp=%X, sp=%X", source, sp, (uint32_t)sp-0x20004000);

if (source == CRASH_TEST)
Expand Down Expand Up @@ -142,7 +142,7 @@ void Hackiebox::setup() {
boxWiFi.onRun(ThreadCallbackHandler([&]() { boxWiFi.loop(); }));
webServer.onRun(ThreadCallbackHandler([&]() { webServer.loop(); }));

logStreamSse.setSsePaused(false);
//logStreamSse.setSsePaused(false);

boxLEDs.defaultIdleAnimation();
Log.info("Hackiebox started!");
Expand Down

0 comments on commit a0b9896

Please sign in to comment.