Low Power Application on SAM E54 Using MPLAB® Harmony v3 Peripheral Libraries: Step 5

Last modified by Microchip on 2023/11/09 09:08

Generate Code

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

Options window Plugins tab


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.

Resources Management tab Generate button


Back to top

Navigate to the Projects tab to view the project tree structure.

Back to top

Examine the generated code as shown in the following image.

Projects tab

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 ADC1. Be aware that the same pattern is applied to all the peripheral libraries added to the project (RTC, SERCOM 3 (as I²C), SERCOM 2 (as USART), DMA, PM, EIC, EVSYS, SUPC, and PORT peripherals). MCC also generates the template main file (main_e54.c).


Back to top

Build the project by clicking on the Clean and Build and verify that the project builds successfully.

Clean and Build

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

Back to top