If you are familiar with MPLAB® X IDE, we assume you have created a new Standalone Project. "Create a New MPLAB® Harmony v2 Project" does a lot of work for you that isn't done with the creation of a standalone project.
++New Harmony Project Configuration Settings:
- Adds the relative path for the project's source folder:
- ../src
- Changes XC32 compiler options to those recommended for Harmony:
- xc32-gcc (General)
- Isolate each function in a section (box checked)
- xc32-gcc (Optimization)
- optimization-level = 1
- xc32-ld (General)
- Remove unused sections (box checked)
- xc32-gcc (General)
- Starts the MPLAB Harmony Configurator (MHC) GUI
New Files and Folders Added to Hard Drive for a New Harmony Project:
- Creates the MPLAB Harmony folder structure on your disc:
- <install-dir> /apps/<your project name>
- <install-dir> /apps/<your project name>/firmware
- <install-dir> /apps/<your project name>/firmware/<your project name>.X (this is the project folder)
- <install-dir> /apps/<your project name>/firmware/src
- <install-dir> /apps/<your project name>/firmware/src/system_config
- <install-dir> /apps/<your project name>/firmware/src/system_config/<project configuration name>
- Creates the following Harmony files
- <your project name>.hconfig
- Used by MHC along with the FreeMarker template technology to generate the source code files.
- configuration.xml
- Stores Harmony configuration settings that MHC needs to remember. A checksum is used to determine if a setting has changed.
- <your project name>.hconfig
Harmony Files Created After Clicking the Generate Code Button:
After using MPLAB® Harmony Configurator (MHC) to configure the Harmony Framework, click the Generate Code icon to generate the source files.
At this point, you will be asked if you want to save the current MHC configuration. If you save it, this file will be generated as <project config name>.mhc. This file captures all the selections you make in the MHC GUI.
The MHC configuration file can be shared or copied to duplicate a complete set of configuration selections.
MHC will then generate new source files based on your selections. You will be happy to know it doesn't blindly overwrite the existing source files (unless you tell it to). The Prompt Merge For All User Changes selection allows you to identify and keep any changes you may have made to source files modified by MHC. This is accomplished with the help of a merge window (diff utility) which is automatically opened for you.
Files Generated by MHC:
Additional files may also be generated based on your Harmony Framework configuration selections.
Application and Main files:
- app.c & app.h: Implements your application's logic
- main.c: Contains the main() function and little else
- system_config.h: Defines all static build options.
- system_definitions.h: System-wide prototypes and definitions.
- system_init.c: Initializes all libraries, applications and processor config bits.
- system_interrupt.c (optional): Implements all interrupt vector stubs and calls all Interrupt Service Routines (ISRs).
- system_tasks.c: Calls all polled system logic and maintains system state.
System configuration framework files for a specific project configuration:
- sys_clk_static.h & sys_clk_static.c: Initializes the system clocks per MHC settings.
- sys_ports_static.c: Initializes the system I/O ports per MHC settings.
Video Tour of the Files Generated by MHC:
Click on the video title to view the video on YouTube.