Beispiel #1
0
        static void Main(string[] args)
        {
            SFM_SDK_NET SFM    = new SFM_SDK_NET();
            UF_RET_CODE result = new UF_RET_CODE();

            result = SFM.UF_InitCommPort("COM3", 19200, false);
            Console.WriteLine(result.ToString());
        }
Beispiel #2
0
 Suprema(string path = null)
 {
     if (null == path)
     {
         supremaEngine = new SFM_SDK_NET();
     }
     else
     {
         supremaEngine = new SFM_SDK_NET(path);
     }
 }