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:
@@ -119,11 +119,11 @@ ErrorStatus Keypad_construct(struct Keypad* self, struct KeypadParameters* param
|
||||
|
||||
if(returnValue == SUCCESS)
|
||||
{
|
||||
LOGGER_INFO("Keypad task started");
|
||||
LOGGER_INFO(mainLog, "Keypad task started");
|
||||
}
|
||||
else
|
||||
{
|
||||
LOGGER_ERROR("Keypad task FAILED");
|
||||
LOGGER_ERROR(mainLog, "Keypad task FAILED");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -190,8 +190,6 @@ static void KeypadTask(void* parameters)
|
||||
{
|
||||
self->lastState[rowCounter][colCounter] = RELEASED;
|
||||
// Key has been released
|
||||
LOGGER_DEBUG("KEY row%d, column%d released", rowCounter, colCounter);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -204,7 +202,6 @@ static void KeypadTask(void* parameters)
|
||||
{
|
||||
self->lastState[rowCounter][colCounter] = PRESSED;
|
||||
// Key has been pressed
|
||||
LOGGER_DEBUG("KEY row%d, column%d pressed", rowCounter, colCounter);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user