MFile
From ProjectPages
Mfile has mainly been written to help AVR-GCC developers to quickly setup a Makefile for their project. The project web site is here. The Makefile is a text file that organizes code compilations. It is, essentially, a script file that tells the code compiler what to do, and also, for AVR micros, tells the programmer what to do.
Contents
Launching the Application
Set the main file name
The first setting to make is the name of the main C file. I say the main C file as the file may well call other C files into the compiler.
When adding the name of the C file, do not type in the .c suffix, that will be assumed by the Make program.
Set the Processor type and COM port
Set the programmer type
Set the CPU Frequency
Save the File