@Dhananjay If I am correct you are working on Colibri T20 module, and API’s you have implemented in your application is meant to work for Vybrid and iMX6 modules.
Note: Please do mention complete details about your platform( module, image, carrier board, application details) always whenever you write post new question on community so that anyone can answer your queries.
Hello Dhananjay,
I am trying to implement mentioned CODE, but getting message of " Unable to open GPIO, check if handle is valid". Can you please know me the exact problem?
using System;
using System.Linq;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace Gpio_Demo_Csharp
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[MTAThread]
static void Main()
{
Application.Run(new Form1());
}
}
}