Fixed issues with the logger and brought logger to same structure as the rest - now the logger is a independent object
Added testItems to HwValidationMenu for SWo git-svn-id: https://svn.vbchaos.nl/svn/hsb/trunk@235 05563f52-14a8-4384-a975-3d1654cca0fa
This commit is contained in:
@@ -30,6 +30,8 @@
|
||||
|
||||
#include "nhd0420.h"
|
||||
|
||||
#include "platform.h"
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// Constant and macro definitions
|
||||
// -----------------------------------------------------------------------------
|
||||
@@ -99,11 +101,11 @@ ErrorStatus Display_construct(struct Display* self, struct DisplayDevice* displa
|
||||
if (xTaskCreate(DisplayTask, (const char*)"DisplayTask", self->stackSize, self, self->TaskPriority, self->taskHandle) != pdTRUE)
|
||||
{
|
||||
returnValue = ERROR;
|
||||
LOGGER_ERROR("Starting display task failed");
|
||||
LOGGER_ERROR(mainLog, "Starting display task failed");
|
||||
}
|
||||
else
|
||||
{
|
||||
LOGGER_INFO("Display task started");
|
||||
LOGGER_INFO(mainLog, "Display task started");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user