0

Hello,
I have problems using printf on the RX debug console using the GCC Renesas compiler.

When I get to printf the debugger gets lost doing _vprintf_r () and resets some ideas?
Can anyone use printf on the command console with the Renesas GCC RX?

Thank you,
Simone

 

I use e2 studio 7.4.0 with GCC 4.8.4.201803
/ ************************************************* **********************
*
* FILE: DebugPrintf.c
* DATES: 2019-07-28
* DESCRIPTION: Main Program
*
* NOTE: THIS IS A TYPICAL EXAMPLE.
*
************************************************** ********************* /
#include “r_smc_entry.h”

#include <stdint.h>
#include <stdio.h>

void main (void);

void main (void)
{
printf ( “Hello”);
}

Darius Galis answered