1
0
forked from fsfw/fsfw

Some bugfixes(?) for PusServiceBase.

Getter Function for Serial Buffer Adapter.
This commit is contained in:
2020-01-04 16:37:08 +01:00
parent 0a57103339
commit 827f185e20
6 changed files with 24 additions and 15 deletions

View File

@ -96,10 +96,10 @@ uint8_t * SerialBufferAdapter<T>::getBuffer() {
return buffer;
}
//template<typename T>
//void SerialBufferAdapter<T>::setBuffer(uint8_t * buffer_) {
// buffer = buffer_;
//}
template<typename T>
void SerialBufferAdapter<T>::setBuffer(uint8_t * buffer_) {
buffer = buffer_;
}
//forward Template declaration for linker
template class SerialBufferAdapter<uint8_t>;