Hello,
If I add the following line to my C++ project:
#pragma DATA_ALIGN(uartOutput, 128);
static Int8 uartOutput[128];
it gives me the following error:
error: expression must have a constant value
It compiles okay in the Edma Uart Sample Project but that is a C project. I did put this code into an "extern "C"" section but that still doesn't work. As a PS, interrupt driven Uart works just fine, this happens when I try to use DMA with Uart in my project. Any help would be greatly appreciated.
Thanks.