Just starting with Netduino (.net and VS) i have a beginners question.
(Netduino 3 Ethernet, Firmware: 4.3.2.3, VS Community for Mac 7.4.3 (build 10) )
When uploading a program it runs and i see debug output.
But when i reboot the board only the blue light turns on, the program does not execute and seems to be gone.
How would i make the program stick on the netduino so it starts whenever the netduino starts?
no windows at hand… any other option doing this?
this is what i upload:
public static void Main()
{
OutputPort led = new OutputPort(Pins.ONBOARD_LED, false);
while (true)
{
led.Write(true); // turn on the LED
Thread.Sleep(250); // sleep for 250ms
led.Write(false); // turn off the LED
Thread.Sleep(250); // sleep for 250ms
}
}
after uploading (Debug) i see the led blink. all good, debugger is attached.
stopping the progam in the ide detaches the debugger, blinking continues.
i unplug the board and plug it in again: no blinking…