Подключение RFID считывателя Z-2 USB - C#

Узнай цену своей работы

Формулировка задачи:

Доброго времени суток! В sdk к данному считывателю есть Demo.exe и Example на C#. В Demo к считывателю коннектится без проблем, а вот в example не получается приконнектится.
Листинг программы
  1. hr = ZRIntf.ZR_Rd_Open(ref m_hRd, ref rOpen, rRdInf);
Выдает отрицательное число.
Листинг программы
  1. public const ZP_PORT_TYPE RdPortType = ZP_PORT_TYPE.ZP_PORT_COM;
  2. public const string RdPortName = "IL01JXE8";
  3. ZR_RD_INFO rRdInf = new ZR_RD_INFO();
  4. ZR_RD_OPEN_PARAMS rOpen = new ZR_RD_OPEN_PARAMS(RdPortType, RdPortName);
Настройки порта верные, может кто-нибудь может помочь?
Ошибку нашел, тему можно удалять

Решение задачи: «Подключение RFID считывателя Z-2 USB»

textual
Листинг программы
  1.     class Program
  2.     {
  3.         static string[] PortTypeStrs = { "Неизвестно", "COM", "FT", "IP", "IPS" };
  4.         static string[] ReaderTypeStrs = { "Неизвестно", "Z-2 USB", "Matrix III Rd-All", "Z-2 USB MF", "Matrix III Net", "CP-Z-2MF", "Z-2 EHR", "Z-2 Base", "Matrix V" };
  5.         static string[] CardTypeStrs = { "Неизвестно", "EM", "HID", "IC", "UL", "1K", "4K", "DF", "PX",
  6.                                          "Cod433 Fix", "Cod433", "Dallas", "CAME", "Plus", "Plus 1K", "Plus 2K", "Plus 4K", "Mini" };
  7.         public static IntPtr m_hRd;
  8.  
  9.         static void Main(string[] args)
  10.         {
  11.             int hr;
  12.             hr = ZRIntf.ZR_Initialize(ZPIntf.ZP_IF_NO_MSG_LOOP);
  13.             if (hr < 0)
  14.             {
  15.                 Console.WriteLine("Ошибка ZR_Initialize ({0}).", hr);
  16.                 Console.ReadLine();
  17.                 return;
  18.             }
  19.             try
  20.             {
  21.                 UInt32 nVersion = ZRIntf.ZR_GetVersion();
  22.                 UInt32 nVerMajor = (nVersion & 0xFF);
  23.                 UInt32 nVerMinor = ((nVersion >> 8) & 0xFF);
  24.                 UInt32 nVerBuild = ((nVersion >> 16) & 0xFF);
  25.                 Console.WriteLine("SDK Reader v{0}.{1}.{2}", nVerMajor, nVerMinor, nVerBuild);
  26.                 if ((nVerMajor != ZRIntf.ZR_SDK_VER_MAJOR) || (nVerMinor != ZRIntf.ZR_SDK_VER_MINOR))
  27.                 {
  28.                     Console.WriteLine("Неправильная версия SDK Reader.");
  29.                     Console.ReadLine();
  30.                     return;
  31.                 }
  32.                 Console.WriteLine("Перечисление последовательных портов...");
  33.                 int nPortCount = 0;
  34.                 IntPtr hList = new IntPtr();
  35.                 hr = ZRIntf.ZR_GetPortInfoList(ref hList, ref nPortCount);
  36.                 if (hr < 0)
  37.                 {
  38.                     Console.WriteLine("Ошибка ZG_EnumSerialPorts ({0}).", hr);
  39.                     Console.ReadLine();
  40.                     return;
  41.                 }
  42.                 List<ZP_PORT_INFO> list_rPi = new List<ZP_PORT_INFO>();
  43.                 try
  44.                 {
  45.                     ZP_PORT_INFO rPI = new ZP_PORT_INFO();
  46.                     for (int i = 0; i < nPortCount; i++)
  47.                     {
  48.                         ZPIntf.ZP_GetPortInfo(hList, i, ref rPI);
  49.                         Console.WriteLine("{0}. {1} ({2}); {3}",
  50.                            (i + 1),
  51.                            rPI.szName,
  52.                            rPI.szFriendly,
  53.                            ((rPI.nFlags & ZPIntf.ZP_PIF_BUSY) != 0) ? "Занят" : "");
  54.                         list_rPi.Add(rPI);
  55.                     }
  56.                 }
  57.                 finally
  58.                 {
  59.                     ZRIntf.ZR_CloseHandle(hList);
  60.                 }
  61.                 Console.WriteLine("--------------");
  62.                 if (nPortCount > 0)
  63.                 {
  64.                     Console.WriteLine("Найдено {0} портов.", nPortCount);
  65.                     try
  66.                     {
  67.                         foreach (var rPi in list_rPi)
  68.                         {
  69.                             if (rPi.szFriendly != string.Empty)
  70.                             {
  71.                                 Console.WriteLine("Подключение к считывателю ({0})...", rPi.szName);
  72.                                 ZR_RD_OPEN_PARAMS rOpen = new ZR_RD_OPEN_PARAMS(rPi.nType, rPi.szName);
  73.                                 ZR_RD_INFO rRdInf = new ZR_RD_INFO();
  74.                                 hr = ZRIntf.ZR_Rd_Open(ref m_hRd, ref rOpen, rRdInf);
  75.                                 if (hr < 0)
  76.                                 {
  77.                                     Console.WriteLine("Ошибка ZR_Rd_Open ({0}).", hr);
  78.                                     Console.ReadLine();
  79.                                     return;
  80.                                 }
  81.                                 Console.WriteLine("{0}, с/н: {1}, v{2}.{3}", ReaderTypeStrs[(int)rRdInf.nType], rRdInf.rBase.nSn, rRdInf.rBase.nVersion & 0xff, (rRdInf.rBase.nVersion >> 8) & 0xff);
  82.                                 Console.WriteLine("Поиск карт...");
  83.                                 int nCardCount = 0;
  84.                                 hr = ZRIntf.ZR_Rd_SearchCards(m_hRd);
  85.                                 if (hr < 0)
  86.                                 {
  87.                                     Console.WriteLine("Ошибка ZR_Rd_SearchCards ({0}).", hr);
  88.                                     Console.ReadLine();
  89.                                     return;
  90.                                 }
  91.                                 ZR_CARD_INFO rInfo = new ZR_CARD_INFO();
  92.                                 while ((hr = ZRIntf.ZR_Rd_FindNextCard(m_hRd, rInfo)) == ZRIntf.S_OK)
  93.                                 {
  94.                                     Console.WriteLine("{0}. {1} {2}",
  95.                                         ++nCardCount, CardTypeStrs[(int)rInfo.nType], ZRIntf.CardNumToStr(rInfo.nNum, rInfo.nType));
  96.                                 }
  97.                                 if (hr < 0)
  98.                                 {
  99.                                     Console.WriteLine("Ошибка ZR_Rd_FindNextCard ({0}).", hr);
  100.                                     Console.ReadLine();
  101.                                     return;
  102.                                 }
  103.                                 ZRIntf.ZR_Rd_FindNextCard(m_hRd, null);
  104.                                 Console.WriteLine("--------------");
  105.                                 if (nCardCount > 0)
  106.                                     Console.WriteLine("Найдено {0} карт.", nCardCount);
  107.                                 else
  108.                                     Console.WriteLine("Карты не найдены.");
  109.  
  110.                                 m_oEvent = new ManualResetEvent(false);
  111.                                 ZR_RD_NOTIFY_SETTINGS rNS = new ZR_RD_NOTIFY_SETTINGS(ZRIntf.ZR_RNF_EXIST_CARD, m_oEvent.SafeWaitHandle);
  112.                                 hr = ZRIntf.ZR_Rd_SetNotification(m_hRd, rNS);
  113.                                 if (hr < 0)
  114.                                 {
  115.                                     Console.WriteLine("Ошибка ZR_Rd_SetNotification ({0}).", hr);
  116.                                     Console.ReadLine();
  117.                                     return;
  118.                                 }
  119.                                 StartNotifyThread();
  120.                                 Console.WriteLine();
  121.                                 Console.WriteLine("Ожидание поднесения карт...");
  122.                                 Console.WriteLine();
  123.                                 Console.ReadLine();
  124.                             }
  125.                         }
  126.                     }
  127.                     finally
  128.                     {
  129.                         StopNotifyThread();
  130.                         if (m_hRd != IntPtr.Zero)
  131.                             ZRIntf.ZR_CloseHandle(m_hRd);
  132.                         ZRIntf.ZR_Finalyze();
  133.                     }
  134.                 }
  135.                 else
  136.                     Console.WriteLine("Порты не найдены.");
  137.             }
  138.             finally
  139.             {
  140.                 ZRIntf.ZR_Finalyze();
  141.             }
  142.             Console.ReadLine();
  143.         }
  144.  
  145.         static int CheckNotifyMsgs()
  146.         {
  147.             int hr;
  148.             UInt32 nMsg = 0;
  149.             IntPtr nMsgParam = IntPtr.Zero;
  150.             while ((hr = ZRIntf.ZR_Rd_GetNextMessage(m_hRd, ref nMsg, ref nMsgParam)) == ZRIntf.S_OK)
  151.             {
  152.                 switch (nMsg)
  153.                 {
  154.                     case ZRIntf.ZR_RN_CARD_INSERT:
  155.                         {
  156.                             ZR_CARD_INFO pInfo = (ZR_CARD_INFO)Marshal.PtrToStructure(nMsgParam, typeof(ZR_CARD_INFO));
  157.                             Console.WriteLine("Карта поднесена {0} {1}",
  158.                                CardTypeStrs[(int)pInfo.nType],
  159.                                ZRIntf.CardNumToStr(pInfo.nNum, pInfo.nType));
  160.                         }
  161.                         break;
  162.                     case ZRIntf.ZR_RN_CARD_REMOVE:
  163.                         {
  164.                             ZR_CARD_INFO pInfo = (ZR_CARD_INFO)Marshal.PtrToStructure(nMsgParam, typeof(ZR_CARD_INFO));
  165.                             Console.WriteLine("Удалена карта {0} {1}",
  166.                                 CardTypeStrs[(int)pInfo.nType],
  167.                                 ZRIntf.CardNumToStr(pInfo.nNum, pInfo.nType));
  168.                         }
  169.                         break;
  170.                 }
  171.             }
  172.             if (hr == ZPIntf.ZP_S_NOTFOUND)
  173.                 hr = ZRIntf.S_OK;
  174.             return hr;
  175.         }
  176.         static ManualResetEvent m_oEvent = null;
  177.         static bool m_fThreadActive;
  178.         static Thread m_oThread = null;
  179.  
  180.         static void DoNotifyWork()
  181.         {
  182.             while (m_fThreadActive)
  183.             {
  184.                 if (m_oEvent.WaitOne())
  185.                 {
  186.                     m_oEvent.Reset();
  187.                     if (m_hRd != IntPtr.Zero)
  188.                         CheckNotifyMsgs();
  189.                 }
  190.             }
  191.         }
  192.  
  193.         static void StartNotifyThread()
  194.         {
  195.             if (m_oThread != null)
  196.                 return;
  197.             m_fThreadActive = true;
  198.             m_oThread = new Thread(DoNotifyWork);
  199.             m_oThread.Start();
  200.         }
  201.         static void StopNotifyThread()
  202.         {
  203.             if (m_oThread == null)
  204.                 return;
  205.             m_fThreadActive = false;
  206.             m_oEvent.Set();
  207.             m_oThread.Join();
  208.             m_oThread = null;
  209.         }
  210.     }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

6   голосов , оценка 4.167 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут