Hi David,
odr-dabmux supports three different output formats (that are, I agree,
not well documented)
There was a post from Pascal on the mmbtools forum:
"""
The three formats are called framed, streamed and raw.
The framed format is used for saving a finite ETI stream into a file.
Each frame does
not contain any padding, and the format can be described as follows:
uint32_t nbFrames
// for each frame
uint16_t frameSize
uint8_t data[ frameSize ]
When streaming data, in which case the number of frames is not known in
advance,
the streamed format can be used. This format is identical to the first
one except for the
missing nbFrames.
// for each frame
uint16_t frameSize
uint8_t data[ frameSize ]
The raw format corresponds to ETI(NI), where each frame has a constant
size of 6144
Bytes. The padding in this case is necessary.
// for each frame
uint8_t data [6144]
In order to select the format, the following syntax for the -O option is
used: -O
file://filename?type=format, where format is one of framed, streamed or raw.
"""
I would try the raw output, that is probably the best if you want to
interact with other tools.
mpb
> My generated file begin with *01 00 00 00 b8 02 ff* *07 3a b6* *00 81*
>
>
> But according to the spec it should start by *xx 07 3a b6 00 81*
> *
> *
> --
> You received this message because you are subscribed to the Google
> Groups "mmbtools" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to
crc-mmbtools...@googlegroups.com
> <mailto:
crc-mmbtools...@googlegroups.com>.