Skip to content

Commit

Permalink
change u_int32_t to uint32_t
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesgiguere committed Jul 16, 2024
1 parent b576a87 commit 4aa8b11
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=GPIOViewer
version=1.5.4
version=1.5.5
author=The Last Outpost Workshop
maintainer=The Last Outpost Workshop <thelastoutpostworkshop@gmail.com>
sentence=Web Application to view GPIO pins live!
Expand Down
8 changes: 4 additions & 4 deletions src/gpio_viewer.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#endif
#include <esp_partition.h>

const char *release = "1.5.4";
const char *release = "1.5.5";

const String baseURL = "https://thelastoutpostworkshop.github.io/microcontroller_devkit/gpio_viewer_1_5/";

Expand Down Expand Up @@ -196,9 +196,9 @@ class GPIOViewer
unsigned long lastSentWithNoActivity = millis();
AsyncWebServer *server;
AsyncEventSource *events;
u_int32_t freeHeap = 0;
u_int32_t freePSRAM = 0;
u_int32_t psramSize = 0;
uint32_t freeHeap = 0;
uint32_t freePSRAM = 0;
uint32_t psramSize = 0;
String freeRAM = formatBytes(ESP.getFreeSketchSpace());

void sendESPPartition(AsyncWebServerRequest *request)
Expand Down

0 comments on commit 4aa8b11

Please sign in to comment.