@ mda747 - does putting a breakpoint on the first line get hit?
@ Justin
That’s crazy. All of the lines get hit! So the code works “perfectly”. But I tested the output pins and none of them reacting when I want to switch them on. Also I can’t do anything with the LED4 and the debug is not working too.
@ mda747 - the led is io69 according to the schematic
@ Justin
true! the code has been modified, still nothing. I know it might be boring that I always say the debug command, but for me it was one of the most valuable feautres. Any idea for that?
@ mda747 - VS in release mode and not debug mode?
What does this do?
using System;
using Microsoft.SPOT;
using System.Threading;
using Microsoft.SPOT.Hardware;
using GHI.Premium.Hardware.EMX;
namespace MFConsoleApplication1
{
public class Program
{
public static void Main()
{
OutputPort LED;
LED = new OutputPort((Cpu.Pin)EMX.Pin.IO69, true);
while (true)
{
LED.Write(!LED.Read());
Thread.Sleep(200);
}
}
}
}
@ Justin
ground… I have just found one very very little damage on the PCB near to the ground trace. I’m trying to fix it.
@ mda747 - good luck