S
Spring_Thunder
Unregistered / Unconfirmed
GUEST, unregistred user!
Type<br> MyArray = Array of Byte;<br><br>Var<br> Test:MyArray;<br> Test1:Array Of Byte;<br>begin<br> SetLength(Test,1);<br> SetLength(Test1,1);<br> Test[0]:=$02;<br> Test1[0]:=$02;<br> …………<br> …………<br>end;<br> 分别把Test和Test1写入串口,但是下位机收到的数据却不一样,<br>这是怎么回事啊?