small bugfixes

This commit is contained in:
Robin Müller 2020-12-07 12:17:02 +01:00
parent 33d4b57400
commit c4ba243885
2 changed files with 10 additions and 2 deletions

View File

@ -10,4 +10,12 @@ target_sources(${LIB_FSFW_NAME}
QueueMapManager.cpp
SemaphoreFactory.cpp
TaskFactory.cpp
)
)
if(UNIX)
target_link_libraries(${LIB_FSFW_NAME}
PRIVATE
pthread
rt
)
endif()

View File

@ -4,7 +4,7 @@
#include <inttypes.h>
// to be implemented by bsp
/*extern "C" */void printChar(const char*, bool errStream);
extern "C" void printChar(const char*, bool errStream);
#ifndef UT699