X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=FreeRTOS%2FDemo%2FRISC-V_Renode_Emulator_SoftConsole%2Ffull_demo%2Fmain_full.c;h=276b15e62b3b179fcf03600f9448a8a2ec42a120;hb=92f04df81b2bbeed4284668fc50e455731202555;hp=969b2a14c55f3a451ac725a4b14d2384d155cd55;hpb=afe3a0193fb04714e0130b62a8352804c203064d;p=freertos diff --git a/FreeRTOS/Demo/RISC-V_Renode_Emulator_SoftConsole/full_demo/main_full.c b/FreeRTOS/Demo/RISC-V_Renode_Emulator_SoftConsole/full_demo/main_full.c index 969b2a14c..276b15e62 100644 --- a/FreeRTOS/Demo/RISC-V_Renode_Emulator_SoftConsole/full_demo/main_full.c +++ b/FreeRTOS/Demo/RISC-V_Renode_Emulator_SoftConsole/full_demo/main_full.c @@ -1,5 +1,5 @@ /* - * FreeRTOS Kernel V10.2.0 + * FreeRTOS Kernel V10.2.1 * Copyright (C) 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -209,6 +209,7 @@ void main_full( void ) prvSetupPeripheralTimers(); /* Start the scheduler. */ + vSendString( "Starting" ); vTaskStartScheduler(); /* If all is well, the scheduler will now be running, and the following @@ -229,16 +230,11 @@ uint32_t ulLastRegTest1Value = 0, ulLastRegTest2Value = 0; uint32_t ulLastTimer0Interrupts = 0, ulLastTimer1Interrupts = 0; char * const pcPassMessage = "."; char * pcStatusMessage = pcPassMessage; -extern void vSendString( const char * const pcString ); extern void vToggleLED( void ); /* Just to stop compiler warnings. */ ( void ) pvParameters; - /* Start with a pass message, after which a '.' character will be printed - out on each successful loop. */ - vSendString( "Pass" ); - /* Initialise xLastExecutionTime so the first call to vTaskDelayUntil() works correctly. */ xLastExecutionTime = xTaskGetTickCount();