From 7230d17c39aceef79b8398acd89386d02628fd38 Mon Sep 17 00:00:00 2001 From: Dominik Sliwa Date: Tue, 28 Jun 2016 10:52:51 +0200 Subject: debug:printfs in main.c --- source/main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/main.c b/source/main.c index 094da3a..ec2c101 100644 --- a/source/main.c +++ b/source/main.c @@ -37,7 +37,7 @@ #include "board.h" #include "pin_mux.h" #include "clock_config.h" -/*#include "fsl_debug_console.h"*/ +#include "fsl_debug_console.h" /* FreeRTOS kernel includes. */ #include "FreeRTOS.h" @@ -68,9 +68,8 @@ int main(void) { BOARD_InitPins(); BOARD_BootClockRUN(); BOARD_InitDebugConsole(); - /* Add your code here */ - + PRINTF("Hello!\r\n"); /* Create RTOS task */ xTaskCreate(hello_task, "Hello_task", configMINIMAL_STACK_SIZE, NULL, hello_task_PRIORITY, NULL); vTaskStartScheduler(); -- cgit v1.2.3