CFDP Update #682

Merged
gaisser merged 158 commits from mueller/cfdp-update-without-handlers into development 2022-11-14 15:04:45 +01:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit ece5ae59e4 - Show all commits

View File

@ -119,7 +119,8 @@ const uint8_t* SerialBufferAdapter<count_t>::getConstBuffer() const {
}
template <typename count_t>
void SerialBufferAdapter<count_t>::setBuffer(const uint8_t* data, count_t len) {
void SerialBufferAdapter<count_t>::setBuffer(uint8_t* data, count_t len) {
this->buffer = data;
this->constBuffer = data;
this->bufferLength = len;
}

View File

@ -68,7 +68,7 @@ struct PsbParams {
* a suitable global distributor with the static ID @PusServiceBase::pusDistributor and
* register itself at that object.
*/
PUSDistributorIF* pusDistributor = nullptr;
PusDistributorIF* pusDistributor = nullptr;
TimeWriterIF* timeStamper = nullptr;
};