We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,
My professor asked me to do offline processing for signal. I think for that i would only require a processor core, memory and probably a UART.
I have already built those hardware from design kit.
I wanted to write application code(in Keil) for my algorithm which takes data from memory process it and store it back into memory.
Since most of the design example(EDK) are in assembly but I m more familiar with C but addressing of peripheral and starting reset handler routine. I do not know how to write in C. I did not use CMSIS also:(
Could you suggest some thing which makes it easier
Sorry for the delay.
You write the character with value of 11 (0xB) to the UART. However, this might not be a character that can be displayed on your terminal.
So please try
AHB_UART_BASE='A'; // Character 'A'
Another issue is that the main() is finished after you send out the character.
You might want to add a dead loop :
int main (void)
{
AHB_UART_BASE='A';
while(1); // deadloop
return 0;
}
Hope this helps.