hello! I am using s32ds for power. when I build my project, there were some errors in my project. like Ld error: undefined reference to '__close_console', Ld error: undefined reference to '__read_console', Ld error: undefined reference to '__write_console' and make:***[....] Error 1. Can you help me?
Thanks
Hello,
As the error describes, there is missing definition for the macros you call.
Check if there are any program branches like #if / #ifdef which leads to the definition of the missing macros.
best regards,
Peter
Hi,
you need to implement such functions by yourself - typically this functions sends or reads data from UART.. printf and scanf are calling these functions at the end.
For reference you can look at this example -