|
|||||||||||||||||||||||
|
Technical Support On-Line Manuals RL-ARM User's Guide |
FCARM File ConverterThis file converter reformats all the web files into a single C-file, which is then included and compiled into the project. All the files are stored in the Virtual ROM File System. The FCARM file converter has integrated also a file optimization algorithm to compress the html, java script and cgi script files. This allows you to create more compact and smaller executable images. The FCARM command line syntax is:
FCARM <{>inputlist<}> <{> TO outputfile<}> <{>directives<}>
or FCARM @commandfile Where
File Converter DirectivesThe following table describes all FCARM Converter directives.
Disabling OptimizationTo disable the FCARM optimization for a web content file, you have to add the tilde prefix (~) to the file name. For example, to disable optimization for jquerry.js, specify this file in a list as ~jquerry.js. This allows you to selectively disable optimization for a file of interest. For example if you want to debug java script file, it is very hard to trace the code that is compacted to a single line with no spaces, no comments and no line feed separators. ExamplesThe following command line example invokes FCARM, specifies the web file index.htm. The output C-file is index.c which the file converter creates. FCARM index.htm The following command line example invokes FCARM, specifies the web files index.htm, keil.gif, llblue.jpg, system.cgi, and specifies the C-file web.c which the file converter creates. FCARM index.htm, keil.gif, llblue.jpg, system.cgi to web.c The following command line example invokes FCARM, specifies the web files index.htm, keil.gif, llblue.jpg, system.cgi, specifies the C-file web.c, and disables generation of the listing file. The web files are located in subfolder Web_Files. FCARM index.htm, keil.gif, llblue.jpg, system.cgi to web.c nopr root(Web_Files) | ||||||||||||||||||||||
|
|||||||||||||||||||||||