開發RFID讀寫程序軟件
日期:2020/11/17  發布人:潤宇軟件  瀏覽量:
 

開發RFID讀寫程序軟件

private void ReadOneBlock(int sectorIndex)
        {
            MWStatus mwStatus = new MWStatus();
            MWCommand mwCommand = new MWCommand();
            int ret;
            int index = 0;
            byte blockIndex;

            mwCommand.TxSeq = seq ;
            mwCommand.Command = 0x46;
            mwCommand.Len = 0x01;

            //塊號
            blockIndex = (byte)(sectorIndex Convert.ToByte(cmbSector.Text) * 4);
            mwCommand.Parameters[index ] = blockIndex;

            ret = DoMWCommand(com, mwCommand, mwStatus);
            if (ret != 0)
                MessageBox.Show("讀數據塊" blockIndex.ToString()  "錯誤。");
            else
            {
                if (mwStatus.Status == 0)
                {
                    if (mwStatus.Len > 0)
                    {
                        byte[] cardSerial = new byte[mwStatus.Len];
                        for (int i = 0; i < mwStatus.Len; i ) cardSerial[i] = mwStatus.Parameters[mwStatus.Len - 1 - i];
                        MessageBox.Show("讀數據塊" blockIndex.ToString() "返回:" byteArrayToHex(cardSerial));
                    }
                    else
                        MessageBox.Show("讀數據塊" blockIndex.ToString() "成功。");
                }
                else MessageBox.Show("讀數據塊" blockIndex.ToString() "錯誤:" mwStatus.Status.ToString());
            }
        }

一级片aaaa