mirror of
https://github.com/jwetzell/rttrp-js.git
synced 2026-08-19 05:54:04 +00:00
add encoder for universe module
This commit is contained in:
@@ -3,6 +3,16 @@ const { describe, it } = require('node:test');
|
||||
const { Encoders } = require('../');
|
||||
|
||||
const goodTests = [
|
||||
{
|
||||
description: 'Universe + Spot + Single Channel Block',
|
||||
expected: new Uint8Array([
|
||||
0x09, 0x00, 0x15, 0x12, 0x34, 0x00, 0x01, 0x0a, 0x00, 0x0e, 0x12, 0x34, 0x00, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00,
|
||||
0x06, 0x40,
|
||||
]),
|
||||
bytes: () => {
|
||||
return Encoders.Universe(0x1234, [Encoders.Spot(0x1234, 1, [Encoders.ChannelBlock(8, 6, 64)])]);
|
||||
},
|
||||
},
|
||||
{
|
||||
description: 'Spot + Single Channel Block',
|
||||
expected: new Uint8Array([0x0a, 0x00, 0x0e, 0x12, 0x34, 0x00, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00, 0x06, 0x40]),
|
||||
|
||||
Reference in New Issue
Block a user