| |||||
Technical Support On-Line Manuals RTX51 Tiny User's Guide | Command-Line ToolsRTX51 Tiny is fully integrated into the C51 programming language. This makes generating RTX51 Tiny applications very easy to master. To create an RTX51 Tiny program, you need only write C functions. No assembly programming is required. To compile your RTX51 Tiny programs from the command line... Invoke the compiler as normal. No special directives are required. For example: C51 RTXPROG.C DEBUG OBJECTEXTEND The resulting RTXPROG.OBJ file contains the C code and RTX51 Tiny tasks you defined. To link your RTX51 Tiny programs from the command line...
For example: BL51 RTXPROG.OBJ, RTX_CONF.OBJ RTX51TINY The RTX51TINY directive instructs the linker to link RTXPROG.OBJ with RTX_CONF.OBJ and to include the RTX51 Tiny library. An RTX51 Tiny program using the tasks created in your C files is created. Note
| ||||
| |||||