1
0
forked from fsfw/fsfw

Array List swapper for SerialFixedArrayList

This commit is contained in:
2020-01-18 18:01:37 +01:00
parent 6fe0f45c27
commit 5cb591a063
2 changed files with 20 additions and 0 deletions

View File

@ -40,6 +40,10 @@ public:
bool bigEndian) {
return SerialArrayListAdapter<BUFFER_TYPE, count_t>::deSerialize(this, buffer, size, bigEndian);
}
void swapArrayListEndianness() {
SerialArrayListAdapter<BUFFER_TYPE, count_t>::swapArrayListEndianness(this);
}
};