Layer: L7 Application ยท Build flags: PC_ENABLE_RADIO_POWER (+ PC_RADIO_WIFI_PS, optional PC_RADIO_MAX_TX_DBM)
What this example teaches
On a battery device the WiFi radio dominates the power budget. This applies a WiFi modem-sleep mode (and an optional max-TX-power cap) after the link comes up, trading a little latency for lower average current. GET /radio reports the mode read back from the radio.
Apply after the link is up. The WiFi connect path may set its own default first, so the settings are applied once association completes:
pc_radio_power_apply();
Serial.printf("radio modem-sleep: %s\n", pc_radio_ps_name(pc_radio_ps_get()));
The mode is a build flag, not a runtime call, so it reaches the separately-compiled library: PC_RADIO_WIFI_PS is 0 (none), 1 (min modem sleep), or 2 (max modem sleep), with an optional PC_RADIO_MAX_TX_DBM cap. pc_radio_ps_get() reads the live mode back and pc_radio_ps_name() turns it into a string for the endpoint.
Build and run
pio ci --board=esp32dev --project-option="framework=arduino" \
--project-option="build_flags=-DPC_ENABLE_RADIO_POWER=1 -DPC_RADIO_WIFI_PS=1" \
--lib="." examples/L7-Application/RadioPower/RadioPower.ino
curl http://<ip>/radio # {"modem_sleep":"min"}
Annotated source
The complete sketch (RadioPower.ino), reproduced verbatim with added explanatory comments:
#define PC_ENABLE_RADIO_POWER 1
static const char *SSID = "YOUR_SSID";
static const char *PASSWORD = "YOUR_PASSWORD";
void setup()
{
delay(250);
Serial.print("IP: ");
Serial.printf("IP: %u.%u.%u.%u\n", (unsigned)(ip & 0xFF), (unsigned)((ip >> 8) & 0xFF),
(unsigned)((ip >> 16) & 0xFF), (unsigned)((ip >> 24) & 0xFF));
pc_radio_power_apply();
Serial.printf("radio modem-sleep: %s\n", pc_radio_ps_name(pc_radio_ps_get()));
char b[48];
snprintf(b, sizeof(b), "{\"modem_sleep\":\"%s\"}", pc_radio_ps_name(pc_radio_ps_get()));
server.
send(
id, 200,
"application/json", b);
});
}
void loop()
{
}
Single-port HTTP server with deterministic, zero-allocation execution.
void send(uint8_t slot_id, int code, const char *content_type, const char *payload)
Send an HTTP response with a body and close the connection.
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.
@ HTTP_GET
Safe, idempotent read.
WiFi radio power controls (PC_ENABLE_RADIO_POWER).
Fully-parsed HTTP/1.1 request.