我一直在使用WinCE7设备上的C#进行项目,我似乎无法弄清楚如何使用我提供的API.dll。 API用于控制gpio并包含输入的中断函数。我对api的文档非常有限,我无法访问代码本身。我设法使用轮询机制让一切工作正常,但我似乎无法设置中断。我已经阅读了很多关于msdn和codeproject的文章,并浏览了一些堆栈溢出问题,但我的代码仍然失败。 我尝试使用的功能如下所示:
BOOL GpioSetupInterruptPin(HANDLE hGPIO, PIN_GPIO_PORT port, UINT pin, INT_TRIGGER_MODE mode, INT_TRIGGER_POLARITY polarity, LPCWSTR szEventName, BOOL enable);
我已经获得了PORT,TRIGGER_MODE和TRIGGER_POLARITY的结构以及szEventName的以下描述:"命名事件的事件名称"。这就是我为此功能提供的全部内容,但我无法联系开发人员。 我发现了一些关于将LPCWSTR与pInvoke一起使用的问题,并且修复程序要么将CharSet设置为Charset.Unicode,要么将编组设置为UnmanagedType.LPArray,但我要注意这些修复是否适用于此情况。 此外,我是c#中事件处理的新手,我不确定我是否也能正确地做到这一点。
public class StartEventArgs : System.EventArgs
{
private GPIOapi.PIN_GPIO_PORT port;
private uint pin;
public StartEventArgs(GPIOapi.PIN_GPIO_PORT port,uint pin)
{
this.port = port;
this.pin = pin;
}
}
public delegate void StartEventHandler(StartEventArgs e);
public class GPIO_In
{
public event StartEventHandler TriggerDown;
public event StartEventHandler TriggerUp;
protected virtual void OnTriggerDown(StartEventArgs e)
{
if (TriggerDown != null)
TriggerDown(e);
}
protected virtual void OnTriggerUp(StartEventArgs e)
{
if (TriggerUp != null)
TriggerUp(e);
}
public void DoTrigger(GPIOapi.PIN_GPIO_PORT port, uint pin)
{
OnTriggerDown(new StartEventArgs(port, pin));
//....
OnTriggerUp(new StartEventArgs(port, pin));
}
}
private GPIO_In input;
public Form1()
{
InitializeComponent();
input=new GPIO_In();
connect();
}
void connect()
{input.TriggerDown+=new StartEventHandler(this.Check);}
private void Check(StartEventArgs e)
{
GetInput(pin1, port6, pin_level);
}
有没有人知道如何使用这个功能,他们是否愿意分享他们的一些经验?谢谢。 我厌倦了一些资源:
http://msdn.microsoft.com/en-gb/library/aa288459(v=vs.71).aspx
http://msdn.microsoft.com/en-gb/library/aa645739(v=vs.71).aspx
http://stackoverflow.com/questions/7609225/c-to-c-sharp-event-handling
http://stackoverflow.com/questions/17073386/raise-events-in-c-cli-dll-and-consume-in-c-sharp
http://stackoverflow.com/questions/12576944/triggering-event-in-c-sharp-from-c-dll
http://www.codeproject.com/Questions/155043/Raise-C-event-and-catch-in-C
http://stackoverflow.com/questions/2969654/how-to-marshall-a-lpcwstr-to-string-in-c
http://www.codeproject.com/Questions/460787/Which-data-type-in-Csharp-equivalent-with-LPCWSTR
http://msdn.microsoft.com/En-US/library/aa288468(VS.71).aspx#pinvoke_example1
编辑*:不确定我是否获得了正确的标题但澄清:我想使用上面提到的函数在C#中触发一个事件(我认为这是用C ++编写的)
答案 0 :(得分:1)
您的代码未显示对GpioSetupInterruptPin
的重要调用。那就是说,我认为你过于复杂了。只需将其定义为字符串即可完成。
此外,我没有看到您在代码中创建命名系统事件。您发布的事件处理程序等与问题无关。您需要做的是P / Invoke CreateEvent
使用与传递给安装API相同的字符串名称,然后在该调用返回的句柄上使用WaitForSingleObject
。
如果您不想自己编写这些内容,open-source SDF会在托管对象OpenNETCF.THreading.EventWaitHandle
中提供这些内容。