This directory contains demo project for Renesas RH850 F1KM-S4 R7F701649
This example implements the standard test demos detailed in following link: RTOS Third Party Demo
Open e2studio and import this project File->Open Projects from File System
In order to see log you can add your thread safe transmit function in here or use Dynamic printf feature supported by E2Studio.
int printf (const char * format, ...)
{
char tx_buff[100];
va_list arg;
va_start(arg, format);
vsprintf(tx_buff, format, arg);
va_end(arg);
/* Put your transmit function here */
return 0;
}
Select test case you want to run by changing definition configSTART_<Test_Name>_TESTS
in freertos\FreeRTOSConfig.h
macros to 0
or 1
as needed