8000
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.
2 parents b508e41 + 32d35ef commit 361e0ebCopy full SHA for 361e0eb
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