initial commit

This commit is contained in:
2024-12-05 17:47:04 -06:00
commit 23b83eb009
17 changed files with 3694 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
export type Protocols = {
SDT: 1;
};
export type UDPPreamble = {
preambleSize: number;
postambleSize: number;
packetIdentifier: string;
};
export type ACNPacket<PreambleType, PDUBlockType, PostambleType> = {
preamble: PreambleType;
pduBlock: PDUBlockType;
postamble: PostambleType;
};
export type RootLayerPDU = {
vector: number;
header: Uint8Array;
data: Uint8Array;
};