Getting Started with Harmony v3 Drivers on SAM E54 MCUs Using FreeRTOS™
Objective
MPLAB® Harmony v3 is a flexible, fully integrated embedded software development framework for 32-bit microcontrollers (MCUs) and microprocessors (MPUs).
MPLAB Harmony v3 includes the MHC tool, a set of modular devices, and middleware libraries. Additionally, there are numerous example applications, all of which are designed to help the developers quickly and easily develop powerful and efficient embedded software for Microchip’s 32-bit PIC® and SAM devices.
This tutorial shows you how to use MHC to create an application that gets you started in developing applications on SAM E54 MCUs using MPLAB Harmony v3 software framework with FreeRTOS™.
Harmony v3 drivers support Asynchronous and Synchronous modes of operation.
Asynchronous Mode
- Non-blocking Application Program Interfaces (APIs)
- Works seamlessly in bare-metal and RTOS environments
- Interrupt and thread-safe
Synchronous Mode
- Blocking APIs
- Suitable for use in RTOS environment
- Interrupt and thread-safe
In this tutorial, you will use Harmony drivers in the Synchronous mode of operation.
The application makes use of the SAM E54 Xplained Pro Evaluation Kit and I/O1 Xplained Pro Extension Kit (sold separately).
The application reads the current room temperature from the temperature sensor on the I/O1 Xplained Pro Extension Kit. The temperature reading is displayed on a serial console periodically every second. Further, the application writes the temperature readings to EEPROM. When a character is entered on the console, the last five written temperature values are read from the EEPROM and displayed on the console. Also, an LED (LED0) is toggled every time the temperature is displayed on the serial console.
The application you create will utilize:
- I²C Synchronous Driver to read the temperature from a temperature sensor and store/retrieve to/from EEPROM.
- Universal Synchronous Asynchronous Receiver Transmitter (USART) Synchronous Driver to print the temperature values on a COM (serial) port terminal application running on a PC.
- PORTS Peripheral Library to toggle an LED.
- FreeRTOS library to create application threads and intercommunicate between application threads.
In the process, the lab will also demonstrate the use of callback functions.
Ways to Use This Tutorial
There are two ways to use this tutorial:
- Create the project from scratch:
- Use the provided source files and step-by-step instructions below.
- Use the solution project as an example:
- Build the solution project and download it to the SAM E54 Xplained Pro Evaluation Kit Board to observe the expected behavior.
Lab Objectives
- Create an MPLAB X IDE Harmony v3 project for a SAM E54 microcontroller from scratch.
- Use MHC to configure and generate Harmony Synchronous Driver code for I²C and USART peripherals.
- Along with the configuration of drivers for I²C and USART peripherals, use MHC to configure and generate Harmony v3 peripheral libraries for the I²C, USART, and peripherals and configure the corresponding PORT pins.
- Use MHC to configure application threads using FreeRTOS.
- Use the Harmony v3 Driver, Peripheral Library APIs, and FreeRTOS APIs to implement the application.
Materials
Reference Materials
About
Purchase
- Part Number: ATSAME54-XPRO - SAM E54 Xplained Pro
- Part Number: ATIO1-XPRO - I/O1 Xplained Pro extension kit
Tool
Hardware Connection Setup
Apart from the hardware tools listed above, a USB Type-A male to Micro-B male cable for programming/debugging is required.
Connection Diagram
The application has the temperature sensor and EEPROM connected to the SAM E54 over the I²C interface and the console (serial terminal) on a PC connected over the USART interface (through USB to USART converter).
Software Tools
- Use the MPLAB Harmony 3 Content Manager (MHCM) to download the repositories.
Steps to Install the Repositories
Go to Tools > Embedded > MPLAB Harmony 3 Content Manager.
Click Browse first to choose any Framework Path and then click Next.
Click Download on the required repositories (CSP, DEV_PACKS, MHC, CORE, CMSIS_FreeRTOS).
Check the Accept License box and then click Close.
Please complete the same steps to download CSP, DEV_PACKS, and MHC. Once you downloaded all files, you are good to proceed with the MPLAB Harmony project.
For this lab, also you could download the following repositories from GitHub:
Overview
This lab shows you how to create an MPLAB Harmony v3 project from scratch, to configure, and generate:
- Harmony v3 Peripheral Libraries code for I²C, USART, and corresponding PORT pins peripherals
- Harmony v3 Synchronous Driver code for I²C and USART peripherals
- Harmony v3 application threads using FreeRTOS
It demonstrates the reading of temperature sensor values from the temperature sensor available on the I/O1 Xplained Pro Extension Kit periodically and displays it on a serial console. It further writes the temperature readings to EEPROM. When a character is entered on the console, the last five written temperature values are read from the EEPROM and displayed on the console. Also, an LED is toggled every time the temperature is displayed on the serial console.
The application functionality is divided into three threads.
- Sensor Thread – To read and display temperature periodically.
- EEPROM Thread – To write the temperature values to EEPROM and display it on the COM (serial) port terminal when requested by the user.
- User Input Thread – To read the character entered on the COM (serial) port terminal.
Sensor thread, EEPROM thread, and the User Input thread run the corresponding application function in an infinite loop. These threads are created from SYS_Tasks routine. Following the creation of these threads, the FreeRTOS scheduler is invoked. The scheduler performs the preemptive scheduling of these threads based on the waiting, ready, and running state of each of them. Developers can use MHC to generate the template files for the three application threads.
Once the scheduler is invoked, the threads start to run based on the default scheduling method (preemptive).
By default, the sensor thread is blocked and wakes up every time the temperature sampling period expires. Once active, the sensor thread reads the latest room temperature value from the temperature sensor and prints the same on the serial terminal. It also notifies the EEPROM thread through the RTOS queue of the availability of the latest temperature value that needs to be stored in the EEPROM. Once notified, the sensor threads block again for temperature sampling period duration.
By default, the EEPROM thread is in the waiting state for an event to occur. It wakes up when there is an event in the RTOS queue to either write the latest temperature value or the read last five temperature values. Based on the event, the EEPROM thread performs writing or reading and goes back to the waiting state.
By default, the user input thread is blocked to receive a character on the USART receive line. Once a character is received, the user input thread becomes active and submits an EEPROM read request to the EEPROM thread through the RTOS queue to read the last five temperature values stored in EEPROM. After serving the user input request, the thread goes back to the blocking state to receive another character on the USART receive line.
Lab Source Files and Solutions
This ZIP file contains the completed solution project for this lab. It also contains the source files needed to perform the lab as per the following step-by-step instructions (see the "Procedure" section on this page).
ZIP
Extracting the ZIP file creates the following folders:
- same54_getting_started_freertos contains the lab solution (in the firmware folder) and source files (in the dev_files folder).
- dev_files contains subfolder sam_e54_xpro containing application source files and other support files (if any) required to perform the lab (see the "Procedure" section below).
- firmware contains the completed lab solution project. It can be directly built and downloaded on the hardware to observe expected behavior.