Low Power Application on PIC32CM LE00 Using MPLAB® Harmony v3 Peripheral Libraries: Step 5

Last modified by Microchip on 2023/11/16 06:59

Generate Code

By default, the Autosave MCC configuration file option is enabled. That means MPLAB® Code Configurator (MCC) automatically saves your MCC configurations.

mcc autosave


Now, generate the code by using MCC. From the left side tab, Resource Management (MCC), go to Project Resources and click on the Generate button.

generate code


Navigate to the Projects tab in MPLAB X IDE to view the project tree structure.

Examine the updated project tree of the newly generated code.

project_tree.png

MCC will include all the MPLAB Harmony library files and generate the code based on the MCC selections. The generated code will add files and folders to your Harmony project. Among the generated code, notice the peripheral library file generated for ADC. Be aware that the same pattern is applied to all the peripheral libraries added to the project (RTC, SERCOM5 (as I²C), SERCOM3 (as USART), DMA, PM, EIC, EVSYS, SUPC, and PORT peripherals). MCC also generates the template main file (main.c).


Build the code by clicking on the Clean and Build button and selecting Clean and Build Main Project and verify that the project builds successfully.

clean_and_build_icon.png

At this point, you are ready to start implementing your application code.

Back to Top