Rev 1566 | Rev 1611 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1566 | Rev 1573 | ||
---|---|---|---|
Line 198... | Line 198... | ||
198 | 198 | ||
199 | public void visit(UniversalWriteParamSetRequestFrame f) throws IOException { |
199 | public void visit(UniversalWriteParamSetRequestFrame f) throws IOException { |
200 | writeByte('s'); |
200 | writeByte('s'); |
201 | base64OutputStream.writeByte(f.getConfigurationSetNumber()); |
201 | base64OutputStream.writeByte(f.getConfigurationSetNumber()); |
202 | base64OutputStream.writeByte(f.getConfigurationVersionNumber()); |
202 | base64OutputStream.writeByte(f.getConfigurationVersionNumber()); |
203 | // base64OutputStream.writeByte(f.getDataLength()); |
203 | base64OutputStream.writeByte(f.getDataLength() + 12); |
- | 204 | base64OutputStream.writeBytes(f.getData()); |
|
204 | base64OutputStream.writeBytes(f.getData()); |
205 | base64OutputStream.writeChars(f.getName()); |
Line 205... | Line 206... | ||
205 | } |
206 | } |
206 | 207 | ||
207 | public void visit(SetCompassHeadingRequestFrame f) throws IOException { |
208 | public void visit(SetCompassHeadingRequestFrame f) throws IOException { |