1
0
forked from fsfw/fsfw

SerialBufferAdapter new setBuffer function

Serial Fixed Array List Adapter documentation adapted
SinglyLinkedList setEnd() function added
This commit is contained in:
2020-01-18 16:48:33 +01:00
parent c9e4c73bd2
commit 6fe0f45c27
4 changed files with 12 additions and 1 deletions

View File

@ -58,6 +58,11 @@ public:
virtual void setNext(LinkedElement* next) {
this->next = next;
}
void setEnd() {
this->next = NULL;
}
LinkedElement* begin() {
return this;
}