Hello and thank you for your reply.
You tell me that this is an old example code. Or did you find ? Her research I have to do to get a sample? When I looked on the internet and forums, I find notes applications without too understands how to use them.
To return to your example. I am unable to use it. I import different .c and .h files unless start08.c because it gave me an error:
ERROR L1818: Symbol 17 - _startupData duplicated in start08_c.obj and Start08_c.obj
ERROR L1818: Symbol 20 - _Startup duplicated in start08_c.obj and Start08_c.obj
I modified: #define Tx_MODULO_VALUE 0x67
To have a baud rate of 9600 with 8 Mhz
In debug mode, this condition is always false, so I can never sent a character.
if(RxOk) // if there's a ready byte just received
{
SSCI_Tx_Byte('U'); // Start sending TX byte (sending via MTIM interrupt)
RxOk = 0; // acknoledges the Received Byte
}
Is what I had to change anything that I would not notice?
Thank you