Exemplo n.º 1
0
        string Func_JdgReceiveData(SerialPortProcessor _usb, byte[] data)
        {
            string ret_t = "";

            try
            {
            }
            catch (Exception ex)
            {
                ret_t = ex.Message;
            }


            return(ret_t);
        }
Exemplo n.º 2
0
        public void Func_SendCommand(SerialPortProcessor _usb, byte[] _b)
        {
            if (_usb == null)
            {
                return;
            }
            if (_b == null)
            {
                return;
            }
            if (_b.Length == 0)
            {
                return;
            }

            _usb.WriteData(_b);
        }
Exemplo n.º 3
0
        //受信したデータを判別する
        public string Func_Receive(SerialPortProcessor _usb, byte[] data)
        {
            string ret_t = "";

            return(ret_t);
        }