from machine import Pin
led = Pin("LEDW", Pin.OUT)
led.on()
hangs when run after board reset. LED turns on but REPL does not return a prompt.
If the wifi is set up first and connected then the same code works as expected without hanging.
P.S. Why "LEDW" and not "LED"?