Good Morning all: I am currently working on project 8 & 9 with KEIL. This is from the training files section and is a good tutor on how stuff works but it is very compilcated. This project is for a interface with flashing led diodes and will be used with windows programs.
I have also got some stuff in C++ and want it working. can KEIL convert C++ to embedded and is it automatic?.
I would be happy to make these available if they would be of use to others in exchange for help. Please post here.
int main () { sendmessage ( "Hello World!\n" ); }
We can not see Project 8 or 9, or 1 and 2 for that matter.
C++ in not supported.
try:
void main (void) { initSerialPort(); sendmessage ( "Hello World!\n" ); while(1){}; }
.