We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad73d0b commit 32d35efCopy full SHA for 32d35ef
ports/espressif/supervisor/port.c
@@ -493,6 +493,18 @@ void port_idle_until_interrupt(void) {
493
}
494
495
496
+#if CIRCUITPY_WIFI
497
+void port_boot_info(void) {
498
+ uint8_t mac[6];
499
+ esp_wifi_get_mac(ESP_IF_WIFI_STA, mac);
500
+ mp_printf(&mp_plat_print, "MAC");
501
+ for (int i = 0; i < 6; i++) {
502
+ mp_printf(&mp_plat_print, ":%02X", mac[i]);
503
+ }
504
+ mp_printf(&mp_plat_print, "\n");
505
+}
506
+#endif
507
+
508
void port_post_boot_py(bool heap_valid) {
509
if (!heap_valid && filesystem_present()) {
510
0 commit comments