1
0
forked from fsfw/fsfw

SerialBufferAdapter can process uint32_t * buffers now

This commit is contained in:
2019-12-01 17:48:05 +01:00
parent 10c24e39a3
commit 37a70df244
4 changed files with 44 additions and 11 deletions

View File

@ -8,10 +8,9 @@
InternalErrorReporter::InternalErrorReporter(object_id_t setObjectId,
uint32_t queuePoolId, uint32_t tmPoolId, uint32_t storePoolId) :
SystemObject(setObjectId), mutex(NULL), queuePoolId(queuePoolId), tmPoolId(
tmPoolId), storePoolId(
storePoolId), queueHits(0), tmHits(0), storeHits(
0) {
SystemObject(setObjectId), mutex(NULL), queuePoolId(queuePoolId),
tmPoolId(tmPoolId),storePoolId(storePoolId), queueHits(0), tmHits(0),
storeHits(0) {
mutex = MutexFactory::instance()->createMutex();
}