1
0
forked from fsfw/fsfw

fifo tweaks, pus parser fixes

This commit is contained in:
2020-07-06 23:07:38 +02:00
parent fd1e612ea5
commit cb691db807
4 changed files with 10 additions and 8 deletions

View File

@ -73,4 +73,9 @@ inline size_t FIFOBase<T>::next(size_t current) {
return current;
}
template<typename T>
inline size_t FIFOBase<T>::getMaxCapacity() const {
return maxCapacity;
}
#endif