Fixed comments

git-svn-id: https://svn.vbchaos.nl/svn/hsb/trunk@409 05563f52-14a8-4384-a975-3d1654cca0fa
This commit is contained in:
mmi
2017-12-18 14:32:51 +00:00
parent e92304755c
commit 0fb4fa7deb
11 changed files with 451 additions and 62 deletions

View File

@@ -86,6 +86,10 @@
#define SPI_LCD_RX_QUEUE (32)
#define SPI_LCD_TX_QUEUE (32)
// Logger Settings
#define LOGGER_STACK_SIZE (512)
#define LOGGER_TASK_PRIORITY (3)
// Buzzer Settings
#define BUZZER_STACK_SIZE (128)
#define BUZZER_TASK_PRIORITY (3)
@@ -709,7 +713,9 @@ static ErrorStatus initPlatformDevices (void)
returnValue = Led_construct(ledInternGreen, ledInternOrange, ledBicolourGreen, ledBicolourRed);
}
/* --------------------------------------------------------------------*/
/* High Voltage Detection */
/* --------------------------------------------------------------------*/
if (returnValue == SUCCESS)
{
returnValue = HighVoltageDetection_construct(hv0Present, hv1Present, hv2Present);
@@ -758,7 +764,7 @@ static ErrorStatus initPlatformDevices (void)
/* --------------------------------------------------------------------*/
if (returnValue == SUCCESS)
{
returnValue = Logger_construct(mainLog, &uart1->device, 1, 512);
returnValue = Logger_construct(mainLog, &uart1->device, LOGGER_TASK_PRIORITY, LOGGER_STACK_SIZE);
}
/* --------------------------------------------------------------------*/