MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / extendedWaterfallFrame

Function extendedWaterfallFrame

tests/kiwi_sdr_protocol_test.cpp:29–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27}
28
29QByteArray extendedWaterfallFrame(quint32 start, quint32 flagsAndZoom,
30 const QByteArray& payload)
31{
32 QByteArray frame("W/F", 3);
33 frame.append('\x08');
34 appendLittleEndianU32(&frame, start);
35 appendLittleEndianU32(&frame, flagsAndZoom);
36 appendLittleEndianU32(&frame, 0);
37 frame.append(payload);
38 return frame;
39}
40
41QByteArray extendedSoundFrame(quint8 flags, quint32 sequence,
42 const QByteArray& payload)

Callers 1

mainFunction · 0.85

Calls 1

appendLittleEndianU32Function · 0.85

Tested by

no test coverage detected