I've been lastly working with Robot Framework in some low level tasks, so I have to manage some byte strings. I need to use the Convert To bytes
keyword from the BuiltIn Library, but I can't find the way to handle Little Endian byte-ordered strings using this keyword.
I'm concerned that these types of operations are way easier to be handled directly in Python with user-defined keywords, but having in mind that a Built-In keyword is already thought to do this work for me, shouldn't it be able to work both in Big and Little Endian formats?
If someone could tell me if the Convert To Bytes
keyword can also work in Little Endian in some way, or if there exist any other library apart from the BuiltIn supporting this format, I'll really appreciate that!