Hello i have two questions.
I use RTOS and want to use printf with UART0. The UART works with UART_write(.... but is it also possible with printf to use the UART for stdout?
i have a array with 512 int16. but when i create the variable with "const unsigned int lambda_table[12];" it is located in the RAM. how can i locate it in the Flash? I tried to use
#pragma DATA_SECTION(lambda_table,".const")
const unsigned int lambda_table[12];
the array is now located in the flash, but the code is not working any more.??