Getting Started with MPLAB® Harmony v3 Drivers on SAM C21 MCUs Using FreeRTOS™
Objective
MPLAB® Harmony v3 is a flexible, fully integrated embedded software development framework for 32-bit MCUs and MPUs.
MPLAB Harmony v3 includes the MPLAB Code Configurator (MCC) 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 MCC to create an application that gets you started in developing applications on SAM C21 MCUs using the MPLAB Harmony v3 software framework FreeRTOS™.
MPLAB 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 MPLAB Harmony drivers in the Synchronous mode of operation.
The application makes use of the SAM C21 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.
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 C21 Xplained Pro Evaluation Kit Board to observe the expected behavior.
Lab Objectives
- Create an MPLAB Harmony v3 project for a SAM C21 microcontroller from scratch.
- Use MCC to configure and generate MPLAB Harmony Synchronous Driver code for I²C and USART peripherals.
- Along with the configuration of drivers for I²C and USART peripherals, use MCC to configure and generate MPLAB Harmony v3 peripheral libraries for the I²C, USART, and PORTS peripherals.
- Use MCC to configure application threads using FreeRTOS.
- Use the MPLAB Harmony v3 Driver, Peripheral Library APIs, and FreeRTOS APIs to implement the application.
Reference Materials
Hardware Tools
- Part Number: ATSAMC21-XPRO SAM C21 Xplained Pro Evaluation Kit
- Part Number: ATIO1-XPRO I/O1 Xplained Pro Extension Kit
Hardware Connection Setup
Connection Diagram
The application has the temperature sensor and EEPROM connected to the SAM C21 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
Installers
For this lab, you could download the following repositories from GitHub:
Overview
This lab shows you how to create an MPLAB Harmony v3 project from scratch, configure, and generate:
- MPLAB Harmony v3 Peripheral Libraries code for TC, I²C, USART, and PORTS peripherals
- MPLAB Harmony v3 Synchronous Driver code for I²C and USART peripherals
- MPLAB 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.
The Sensor thread, EEPROM thread, and User Input thread run the corresponding application function in an infinite loop. These threads are created from the 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 MCC 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 which needs to be stored in EEPROM. Once notified, the Sensor threads block again for the temperature sampling period duration.
By default, the EEPROM thread is waiting 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 waiting 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).
ZIP Files
Extracting the ZIP file creates the following folders:
- samc21_getting_started_freertos contains the lab solution (in the firmware folder) and source files (in the dev_files folder).
- dev_files contains subfolder sam_c21_xpro 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.
Procedure
Lab Index
Step 1: Create a Project and Configure the SAM C21
- Create MPLAB Harmony v3 Project using MPLAB X IDE
- Verify Clock Settings
Step 2: Configure I²C and USART Drivers in Synchronous mode
- Configure I²C Driver and I²C Pins
- Configure USART Driver and USART Pins
- Configure LED Pin
- Rename the Default Main File
- Configure Application Threads
Step 4: Generate Code
Step 5: Add Application Code to the Project
Step 6: Build, Program, and Observe the Outputs