2

我无法stm32f4discovery使用 VS2010 在 .NET 中编译代码。

使用NETMF 4.2

    using System;
    using System.Threading;
    using Microsoft.SPOT;
    using Microsoft.SPOT.Hardware;

    namespace MFConsoleApplication1
    {

        public class Program
        {
            private static InterruptPort interruptPort;

            public static void Main()
            {
                interruptPort =  new InterruptPort(Cpu.Pin.GPIO_Pin2,
                                               false,
                                               Port.ResistorMode.PullUp,
                                               rt.InterruptMode.InterruptEdgeLevelLow);

                interruptPort.OnInterrupt += new NativeEventHandler(port_OnInterrupt);


                 Thread.Sleep(Timeout.Infinite);
            }


             private static void port_OnInterrupt(uint port, uint state, TimeSpan time)
             {
                Debug.Print("Pin=" + port + " State=" + state + " Time=" + time);
                interruptPort.ClearInterrupt();
             }
         }
    } 

在编译时,我收到以下错误: No overload for 'port_OnInterrupt' matches delegate 'Microsoft.SPOT.Hardware.NativeEventHandler'

我如何编译代码?

我从“Expert .NET Micro framework”一书中举了这个例子。

4

1 回答 1

6

尽管文档声明最后一个参数是 aTimeSpan我认为它确实是DateTime我一直在使用的 .net 微框架中的一个。

所以而不是

 private static void port_OnInterrupt(uint port, uint state, TimeSpan time)

尝试

 private static void port_OnInterrupt(uint port, uint state, DateTime time)

还有另一个提示:而不是

 interruptPort.OnInterrupt += new NativeEventHandler(port_OnInterrupt);

你可以写

 interruptPort.OnInterrupt += port_OnInterrupt;

这是等效的但更具可读性。

于 2012-12-09T17:11:08.887 回答