예제 #1
0
        public bool WriteNVItem(int item, byte[] data, CommandQueue queue, bool threaded)
        {
            string  strConsoleOut = "DIAG_NV_WRITE - Item: " + item.ToString();
            Command inCommand     = new Command(Qcdm.Cmd.DIAG_NV_WRITE_F, data, strConsoleOut);

            queue.Add(ref inCommand);
            return(queue.Run(threaded));
        }
예제 #2
0
        public bool ReadNVItem(int item, CommandQueue queue, bool threaded)
        {
            string  strConsoleOut = "DIAG_NV_READ - Item: " + item.ToString();
            Command inCommand     = new Command(Qcdm.Cmd.DIAG_NV_READ_F, strConsoleOut);

            queue.Add(ref inCommand);
            return(queue.Run(threaded));
        }