Hello,
we use a custom uart protocol with cobs.
I want to write a HLA to first decode the bytes and after that give it to the output in Logic 2.
My idea is to collect first all incoming bytes until the trailing zero is found.
Then decode the collected bytes and give them to the output.
But I dont know how to put multiple bytes in to the output?
I know how to return one byte with
return AnalyzerFrame(‘mytype’, frame.start_time, frame.end_time, {
‘input_type’: frame.type
But how to do this with multiple bytes and place them accordingly?
Thank you for your further help.