Getting Started with Harmony v3 Drivers on SAM D21 MCUs Using FreeRTOS

MPLAB Harmony v3 is now configurable through MPLAB Code Configurator (MCC). Although the instructions in this tutorial are for the MHC, the flow and experience of creating a project, configuring peripherals, and generating code using MCC are similar. Refer to the below links for specific instructions to use MPLAB Harmony v3 with MCC.

 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 MPLAB Harmony Configurator (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 D21 MCUs using MPLAB Harmony v3 software framework with FreeRTOS™.

Note: In this tutorial, you will use Arm® Cortex® Microcontroller Software Interface Standard - Real-Time Operating System (CMSIS-RTOS) adoption of FreeRTOS version 10.2.0. FreeRTOS is a market-leading RTOS for MCUs having ports for Microchip’s MCUs. The FreeRTOS kernel is released under the MIT open source license.

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 environment
  • Interrupt and thread-safe

Synchronous Mode

  • Blocking APIs
  • Suitable for use in RTOS environment
  • Interrupt and thread-safe

Note:

  • Blocking API: A blocking API hangs up execution flow until it has performed its function and returns a result.
  • Non-blocking API: Non-blocking API receives the application request and returns immediately without providing the result. The result of the non-blocking API call is provided separately through an asynchronous event. The application verifies the event to take further action.
  • Interrupt-safe: A sequence of code is said to be “interrupt-safe” when the occurrence of an interrupt(s) doesn't alter the output or functional behavior of the code. To be "interrupt-safe", the sequence of code in consideration must be atomic (indivisible and uninterruptible), the relevant interrupts must be disabled before entering the sequence.
  • Thread-safe: In an RTOS-based environment, it is possible that a driver and its clients may each run in its own RTOS thread. If the RTOS is preemptive, it is possible that the scheduler may interrupt any of these threads at any time and switch to another. If the other thread happens to also non-atomically access the same shared resource or executes the same critical section of code, that section of code must be guarded and made atomic. The sequence of code with such guards is known as “thread-safe” code.

In this tutorial, you will use Harmony drivers in a Synchronous mode of operation.

The application makes use of the SAM D21 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:

  1. Create the project from scratch:
    • Use the provided source files and step-by-step instructions below.
  2. Use the solution project as an example:
    • Build the solution project and download it to the SAM D21 Xplained Pro Evaluation Kit Board to observe the expected behavior.

Lab Objectives

  1. Create an MPLAB X IDE Harmony v3 project for a SAM D21 MCU from scratch.
  2. Use MHC to configure and generate Harmony Synchronous Driver code for I²C and USART peripherals.
  3. 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, peripherals and configure the corresponding PORT pins.
  4. Use MHC to configure application threads using FreeRTOS.
  5. Use the Harmony v3 Driver, Peripheral Library APIs, and FreeRTOS APIs to implement the application.

 Materials

Hardware Tools

Tool About Purchase
board-50px.png
SAM D21 Xplained Pro
Evaluation Kit
io1-xpro-extension-50px.png
I/O1 Xplained Pro
Extension Kit

Note: The Xplained Pro series evaluation kits include an on-board Embedded Debugger (EDBG). No external tools are necessary to program or debug the ATSAMD21J18A. For programming/debugging, the EDBG connects to the host PC through the USB Micro-B connector on the SAM D21 Xplained Pro Evaluation Kit.

Connection Diagram

The application has the temperature sensor and EEPROM connected to the SAM D21 over the I²C interface and the console (serial terminal) on a PC connected over the USART interface (through USB to USART converter).

connection_diagram.png
Figure 2: Connection Diagram

Note: Use the default address of 0x4F and 0x57 to access the temperature sensor (0x4F) and EEPROM (0x57) on the I/O1 Xplained Pro board.

Software Tools

Note:
This project has been verified to work with the following versions of software tools:

  • MPLAB X IDE v5.40
  • MPLAB XC32 Compiler v2.50
  • MPLAB Harmony CSP v3.8.1
  • DEV_PACKS v3.8.0
  • MPLAB Harmony Configurator Plugin v3.6.0
  • CORE v3.8.1
  • CMSIS_FreeRTOS v10.3.1

Because we regularly update our tools, occasionally you may discover an issue while using the newer versions. If you suspect that to be the case, we recommend that you double-check and use the same versions that the project was tested with.

Tool About Installers
Installation
Instructions
Windows Linux Mac OSX
MPLAB® X
Integrated Development Environment
MPLAB® XC32
C/C++ Compiler

Follow these steps to install the repositories:

1

Go to Tools > Embedded > MPLAB Harmony 3 Content Manager.

launch_content_manager.png
Figure 3

2

Click Browse first to choose any Framework Path and then click Next.

path_content_manager.png
Figure 4

3

Click Download on the required repositories (CSP, DEV_PACKS, MHC, CORE, CMSIS_FreeRTOS).

download_packages.png
Figure 5

4

Click Accept License and then Close.

accept_license.png
Figure 6

5

Please complete the same steps to download CSP, DEV_PACKS, and MHC. Once you downloaded all files, you may 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.

  1. Sensor Thread – To read and display temperature periodically.
  2. EEPROM Thread – To write the temperature values to EEPROM and display it on the COM (serial) port terminal when requested by the user.
  3. 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.

thread_state_machine.png
Figure 7: The 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 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.

threads_operation.png
Figure 8: The Application Thread Functioning.

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).

The contents of this ZIP file need to be placed in the folder below:

<Any directory of your choice>/training/
(example Directory = C:/microchip/harmony/v3_5_2)

Note:

  1. The project location of a Harmony v3 project is independent of the location of the Harmony Framework path (i.e., you do not need to create or place a Harmony v3 project in a relative path under the Harmony v3 framework folder). The project can be created or placed in any directory of your choice.
  2. The point above is true because when created, a Harmony v3 project generates all the referred source/header files and libraries (if any) under the project folder.
  3. Both points above contrast with Harmony v2 project location. In Harmony v2, the project was supposed to be created in a location under the Harmony framework.


Extracting the ZIP file creates the following folders:

  • samd21_getting_started_freertos contains the lab solution (in the firmware folder) and source files (in the dev_files folder).
    • dev_files contains subfolder sam_d21_xpro containing application source files and other support files (if any) required to perform the lab (see "Procedure" section below).
    • firmware contains the completed lab solution project. It can be directly built and downloaded on the hardware to observe expected behavior.

Procedure

Note: You must complete all of these steps before you can build, download, and run the application.

Lab Index

Step 1: Create Project and Configure the SAM D21

  • Step 1.1 - Install the MPLAB Harmony Configurator (MHC) Plugin in MPLAB X IDE
  • Step 1.2 - Setup MHC Plugin Window Open in Native mode
  • Step 1.4 - Create MPLAB Harmony v3 Project using MPLAB X IDE
  • Step 1.4 - Verify Clock Settings

Step 2: Configure I²C and USART Drivers in Synchronous mode

  • Step 2.1 - Configure I²C Driver and I²C Pins
  • Step 2.2 - Configure USART Driver and USART Pins

Step 3: Configure Pin for LED

  • Step 3.1 - Configure LED Pin
  • Step 3.2 - Rename the Default Main File
  • Step 3.3 - Configure Application Threads

Step 4: Generate Code
Step 5: Add Application Code to the Project
Step 6: Build, Program, and Observe the Outputs

© 2024 Microchip Technology, Inc.
Notice: ARM and Cortex are the registered trademarks of ARM Limited in the EU and other countries.
Information contained on this site regarding device applications and the like is provided only for your convenience and may be superseded by updates. It is your responsibility to ensure that your application meets with your specifications. MICROCHIP MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND WHETHER EXPRESS OR IMPLIED, WRITTEN OR ORAL, STATUTORY OR OTHERWISE, RELATED TO THE INFORMATION, INCLUDING BUT NOT LIMITED TO ITS CONDITION, QUALITY, PERFORMANCE, MERCHANTABILITY OR FITNESS FOR PURPOSE. Microchip disclaims all liability arising from this information and its use. Use of Microchip devices in life support and/or safety applications is entirely at the buyer's risk, and the buyer agrees to defend, indemnify and hold harmless Microchip from any and all damages, claims, suits, or expenses resulting from such use. No licenses are conveyed, implicitly or otherwise, under any Microchip intellectual property rights.