c#做上位机串口发送接收问题,求指点!

 过程:c# 上位机发送指令,称重显示控制器(XK3190-A9+)会返回数据,收到数据即可。
    问题:上位机发送指令无反应。可能是我发送的数据格式不对。
    byte[] cmd = new byte[6] { 0x02,0x41,0x44,0x30,0x35,0x03};//1
    byte[] tcmd = new byte[6] {2, 65,68,48,53,3};//2
    string kk = System.Text.Encoding.ASCII.GetString(cmd);//3
    char[] ssh = Encoding.ASCII.GetChars(cmd);//4
string sshstr = new string(ssh);//5

    serialPort1.Write(cmd,0,6);
    //serialPort1.Write(kk);
    上面12345我都试了,不好使,串口设置没问题,我用串口调试助手好使,在Hex String下发送 024144303503 ,会有反馈。

http://blog.csdn.net/kasama1953/article/details/51404162

可以用串口调试助手,看看收到的是什么?, 还有上下位机的协议