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" ); }
What is "spunge"?
"working on project 8 & 9"
Very informative!
"This is from the training files section"
What training files section ?
"can KEIL convert C++"
See: http://www.keil.com/c51/cx51.asp And: http://www.keil.com/product/isoansi.asp
"I would be happy to make these available"
Make what available?
Please note the instructions for posting source code: www.danlhenry.com/.../keil_code.png
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){}; }
.