Layer: L7 Application ยท Build flags: PC_ENABLE_DIAG
What this example teaches
server.diag(slot_id) serves PC_DIAG_JSON, a compile-time snapshot of which features are enabled and how the buffers are sized. It is handy while developing - one route tells you exactly what the firmware was built with - but because it exposes the build configuration, keep it off (or behind auth) in production.
One call renders the build snapshot:
@ HTTP_GET
Safe, idempotent read.
Fully-parsed HTTP/1.1 request.
The JSON is assembled at compile time from the active PC_* macros, so the endpoint adds essentially nothing at runtime and cannot drift from the real configuration.
Build and run
pio ci --board=esp32dev --project-option="framework=arduino" \
--project-option="build_flags=-DPC_ENABLE_DIAG=1" \
--lib="." examples/L7-Application/Diagnostics/Diagnostics.ino
curl http://<ip>/diag # JSON: enabled features + buffer sizes
Annotated source
The complete sketch (Diagnostics.ino), reproduced verbatim with added explanatory comments:
#define PC_ENABLE_DIAG 1
static const char *SSID = "YOUR_SSID";
static const char *PASSWORD = "YOUR_PASSWORD";
void setup()
{
Serial.print("Connecting to WiFi");
{
delay(250);
Serial.print('.');
}
Serial.printf("IP: %u.%u.%u.%u\n", (unsigned)(ip & 0xFF), (unsigned)((ip >> 8) & 0xFF),
(unsigned)((ip >> 16) & 0xFF), (unsigned)((ip >> 24) & 0xFF));
}
void loop()
{
}
Single-port HTTP server with deterministic, zero-allocation execution.
int32_t begin(const WebServerConfig *cfg=nullptr)
Initialize all connection slots and open all registered listeners.
void on(const char *path, HttpMethod method, Handler callback)
Register a route handler.
void handle()
Drive the server - call every Arduino loop() iteration.
bool init_wifi_physical(const char *, const char *)
Connect to a WiFi access point.
uint32_t pc_net_egress_ip(void)
IPv4 (network byte order) of the current egress interface, or 0 if none.
bool wifi_ready()
True if the WiFi station link is up (associated + an IP is assigned).
Layer 1 (Physical) - link bring-up and live egress-interface reporting.
Layer 7 (Application) - public HTTP routing API.