After searching everything I can find, I can't find an example of an RTX_Config.c with the RTA functionality included for the STM32 Cortex M3.
I can find many examples of RTX_Config.c with an ARM, and many examples of RTA_Config.c without RTX.
Since the Cortex does some stuff quite differently, like the systick, I haven't been able to merge anything that will even compile let alone run.
Am I missing something simple or is RTA + RTX not supported on the Cortex yet?
Which features of RTA do you need that can not be done in hardware using Serial Wire + ITM with the ULINK2?
http://www.keil.com/download/docs/374.asp
http://www.keil.com/appnotes/docs/apnt_197.asp
In addition to this, if you use CMSIS, there is an ITM_SendChar(char c) in the CMSIS layer. You can use this function to send characters to the debug printf window (see serial windows).
Keyboard input will be provided soon.
BR, /th.
I have downloaded the documents and will also look at ITM_SendChar.
The RTA provided real-time variable watches and I also wanted to use it to implement ASSERT output.
The absence of the example was pointing to me being on the wrong path. :-)
Thanks from a brand new Cortex CMSIS user.