Skip to content

Commit b72869f

Browse files
committed
Add Binary Test fpr Martin MAC Viper XIP FW 1.2.0
1 parent 670b866 commit b72869f

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
using ArtNetSharp;
2+
3+
namespace ArtNetTests.Binary_Tests.Martin
4+
{
5+
internal class Martin_MAC_Viper_XIP_V1_2_0 : AbstractArtPollReplyBinaryTestSubject
6+
{
7+
private static readonly byte[] DATA = [
8+
0x41, 0x72, 0x74, 0x2d, 0x4e, 0x65, 0x74, 0x00,
9+
0x00, 0x21, 0x02, 0x00, 0xcf, 0x0e, 0x36, 0x19,
10+
0x01, 0x02, 0x00, 0x00, 0x2c, 0xcf, 0x00, 0xe2,
11+
0x50, 0x4d, 0x4d, 0x41, 0x43, 0x00, 0x00, 0x00,
12+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
13+
0x00, 0x00, 0x00, 0x00, 0x4d, 0x41, 0x43, 0x20,
14+
0x56, 0x69, 0x70, 0x65, 0x72, 0x20, 0x58, 0x49,
15+
0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
16+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
17+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
18+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
19+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
20+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
21+
0x00, 0x00, 0x00, 0x00, 0x23, 0x30, 0x30, 0x30,
22+
0x31, 0x20, 0x5b, 0x30, 0x32, 0x38, 0x31, 0x5d,
23+
0x20, 0x4e, 0x6f, 0x20, 0x72, 0x65, 0x70, 0x6f,
24+
0x72, 0x74, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00,
25+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
26+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
27+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
28+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
29+
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00,
30+
0x00, 0x00, 0x08, 0x08, 0x08, 0x08, 0x80, 0x00,
31+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
32+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
33+
0x00, 0x00, 0x03, 0x43, 0x05, 0xcf, 0x0e, 0x02,
34+
0x00, 0xcf, 0x0e, 0x01, 0x18, 0x00, 0x00, 0x00,
35+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
36+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
37+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 ];
38+
39+
private static readonly PortTestSubject[] PORTS =
40+
[
41+
new PortTestSubject(EPortType.OutputFromArtNet,(PortAddress)0,(PortAddress)0)
42+
];
43+
public Martin_MAC_Viper_XIP_V1_2_0() : base(
44+
"Martin MAC Viper XIP (FW 1.2.0)",
45+
DATA,
46+
0,
47+
"MAC",
48+
"MAC Viper XIP",
49+
new MACAddress("00:03:43:05:cf:0e"),
50+
new IPv4Address("2.0.207.14"),
51+
new IPv4Address("2.0.207.14"),
52+
0x2ccf,
53+
0x4d50,
54+
EStCodes.StNode,
55+
PORTS,
56+
false,
57+
majorVersion: 1,
58+
minorVersion: 2)
59+
{
60+
}
61+
}
62+
}

0 commit comments

Comments
 (0)