Create a New MPLAB® Harmony v3 Project Using MCC (Peripheral Library Example)
Objective
This tutorial shows you how to create a new MPLAB® Harmony v3 project using MPLAB® Code Configurator (MCC). This training module used SAM D5x/E5x MCUs to create an application that gets you started in developing applications using MCC on the MPLAB Harmony v3 software framework.
The application makes use of the SAM E51 Curiosity Nano Evaluation Kit.
This application demonstrates an LED (LED0) toggle on a timeout basis and prints the LED toggling rate on the serial terminal. The periodicity of the timeout will change from 500 milliseconds to 1 second, 2 seconds, 4 seconds, and back to 500 milliseconds every time you press the switch SW0 on the SAM E51 Curiosity Nano Evaluation Kit.
The applications you create will utilize:
- Real-Time Clock (RTC) PLIB to periodically sample temperature sensor data.
- SERCOM (as USART), Direct Memory Access (DMA) PLIBS to print the temperature values on a COM (serial) port terminal application running on a PC.
- PORT PLIB to toggle the LED.
- Help develop your first MPLAB Harmony v3 application using MCC.
In the process, the lab will also demonstrate the use of callback functions.
Two Ways to Use This Tutorial
- Create the project from scratch:
- Use the provided source files and step-by-step instructions.
- Use the solution project as an example:
- Build the solution project and download it to the SAM E51 Curiosity Nano Evaluation Kit Board to observe the expected behavior.
Lab Objectives
- Create an MPLAB X IDE Harmony v3 project for a SAM E51 microcontroller from scratch.
- Use the MCC to configure and generate Harmony v3 Peripheral Libraries code for RTC, USART, DMA, and PORT peripherals.
- Use the Harmony v3 PLIB Application Programming Interfaces (APIs) to implement the application.
Reference Materials
SAM E51 Curiosity Nano Evaluation Kit
MPLAB® X Integrated Development Environment (IDE)
Use the MPLAB Harmony v3 Framework downloader to download the repositories.
This repository contains the completed solution project for this lab. It also includes the source files needed to perform the lab following step-by-step instructions (see the "Procedure" section on this page).
Extracting the ZIP file creates the following folders:
- same51n_getting_started contains the lab solution (in the firmware folder) and source files (in the dev_files folder).
- dev_files contains subfolder sam_e51_cnano containing application source files and other support files (if any) required to perform the lab (see "Procedure" section).
- firmware contains the completed lab solution project. It can be directly built and downloaded on the hardware to observe expected behavior.
Overview
This lab shows you how to create an MPLAB Harmony v3 project from scratch using MCC. It shows you how to configure, and generate Harmony v3 Peripheral Libraries code for RTC, USART, DMA, and PORT peripherals. It demonstrates an LED (LED0) toggle on a timeout basis and prints the LED toggling rate on the serial terminal. The periodicity of the timeout will change from 500 milliseconds to 1 second, 2 seconds, 4 seconds, and back to 500 milliseconds every time you press the switch SW0 on the SAM E51 Curiosity Nano Evaluation Kit.
The application initializes the clock, PORT, and other peripherals (configured through MCC) by calling the function SYS_Initialize.
The application registers callback event handlers for DMA, RTC, and External Interrupt Controller (EIC) Peripheral Libraries. The callback event handlers are called back by the peripheral libraries when the transaction completion events occur.
Note:
- A callback event handler for SERCOM (as USART) is not registered as the actual USART data transfer is accomplished by the DMA. The DMA calls back the callback event handler when the DMA transfer request is completed.
- RTC peripheral is used for implementing the time period instead of the timer peripheral. This is done to demonstrate how to configure and use the RTC peripheral in an application (particularly a low-power application).
The application checks whether the configured RTC timer period has expired and checks the previous USART transmission completed. The application prints the LED toggling rate on the serial terminal on every timer period by initiating the DMA channel transfer function DMAC_ChannelTransfer for the transmitting channel. The DMA PLIB calls back the registered callback event handler when the transmission completes. Finally, the application sets a flag in the RTC callback event handler.
The application also monitors the pressing of the switch SW0; if a switch press is detected, the application changes the LED toggling rate from the default 500 milliseconds to 1 second. The application changes the LED toggling rate to 2 seconds, 4 seconds, and back to 500 milliseconds on subsequent switch press. Thus, the application cycles the LED toggling rate on every switch press.
Procedure
All steps must be completed before you will be ready to build, download, and run the application.
Step 1: Create project and configure the MCU
- Step 1.1 - Create MPLAB Harmony v3 Project using MCC on MPLAB X IDE
- Step 1.2 - Verify Clock Settings
Step 2: Configure USART and RTC Peripheral Libraries
- Step 2.1 - Configure RTC Peripheral Library
- Step 2.2 - Configure USART Peripheral Library and USART pins
- Step 2.3 - Configure DMA Peripheral Library
Step 3: Configure Pins for Switch and LED
- Step 3.1 - Configure switch button pin with EIC
- Step 3.2 - Configure LED Pin
- Step 3.3 - Rename the default main file
Step 4: Generate Code
Step 5: Add application code to the project
Step 6: Build, program and observe the outputs