Can we use keil as separate compiler only???
Means if I wrote the program in notepad or some other text file and after that copiling it and creating hex file separately in keil?? for this I have to use Keil IDE itself or separate keil compiler is there which we can install in our server???
I can easily imagine a setup where you send the source code to the server with Keil tools installed and you receive a compiled firmware image. I leave it to you to figure out the necessary glue logic that would make it work. Whether such a setup would violate license terms is another matter.
One license / user.
But you can build the source code from the command line.
@Mike Kleshov,
It it possible, but you cannot debug like that AFAIK...
Anyone wanting debugging from command line should probably consider a processor that supports gcc/gdb.
There aren't many options for debugging without use of a "graphical" debugger.
But in this case, it was explicitly the compiler there was questions about.
I write all my source code using the best text editor ever...
C:\Impressive\Directory\Name>copy con:=Main.C #include <stdio.h> typdef unsigned long u32 void main( void ) { u32 i; printf( "\nA reminder about whole numbers:\n" ); for( i=0; i < (2^32-1); i++ ) // only 4,294,967,295 printf calls (aka 'forever') { if( (i % 2) != 0 ) { printf( "%ld is Odd\n", i ); } else { printf( "%ld is Even\n", i ); } } }^Z C:\Impressive\Directory\Name>
This works out great because I never make mistakes and never have to actually 'edit' anything.
--Cpt. Vince Foster 2nd Cannon Place Fort Marcy Park, VA