Getting Started with Harmony v3 Drivers and Middleware on PIC32MZ EF 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 peripheral libraries, drivers, system services, middleware, and numerous example applications, all of which are designed to help you 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 the MHC to create an application that gets you started in developing applications on PIC32MZ EF MCUs using MPLAB Harmony v3 software framework with FreeRTOS™.

In this tutorial, you will use the 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 microcontrollers 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
  • Blocking API: It hangs up execution flow until it has performed its function and returns a result.
  • Non-blocking API: It 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 behaviour 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 a driver and its clients may each run in its own RTOS thread. If the RTOS is preemptive, then 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 the Synchronous mode of operation and Harmony middleware libraries with FreeRTOS.

The application makes use of the Curiosity PIC32MZ EF 2.0 Development Board 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 and to a file in a USB thumb drive whenever the USB thumb drive is connected. Also, an LED (LED1) is toggled every time the temperature is displayed on the serial console and an LED (LED2) is in an ON state when a USB thumb drive is connected.

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.
  • USB High-Speed Driver, USB Host Middleware, and File System Service libraries to write the temperature readings to a file in a USB thumb drive whenever a USB thumb drive is connected.
  • GPIO Peripheral Library to toggle an LED.
  • FreeRTOS library to create middleware, application threads, and intercommunicate between these 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 Curiosity PIC32MZ EF 2.0 Development Board to observe the expected behaviour.

Lab Objectives

  1. Create an MPLAB X IDE Harmony v3 project for a PIC32MZ EF microcontroller from scratch.
  2. Use MHC to configure and generate Harmony Synchronous Driver code for the I²C and USART peripherals.
  3. Use MHC to configure and generate Harmony Driver for the High-Speed USB peripheral.
  4. Use MHC to configure and generate Harmony libraries for the USB Host Middleware and File System Service.
  5. Along with the configuration of drivers for the I²C and USART peripherals, use MHC to configure and generate Harmony v3 peripheral libraries for the I²C, Universal Asynchronous Receiver Transmitter (UART), and GPIO peripherals.
  6. Use MHC to configure the application, middleware, and system service threads using FreeRTOS.
  7. Use the Harmony v3 Middleware Libraries, Drivers, Peripheral Library APIs, and FreeRTOS APIs to implement the application.

 Materials

Hardware Tools

Tool About Purchase
board-50px.png
Curiosity PIC32MZ EF 2.0
Development Board
io1-xpro-extension-50px.png
I/O1 Xplained Pro
Extension Kit

The Curiosity PIC32MZ EF 2.0 Development Board includes an onboard PICkit On Board 4 (PKOB4). No external tools are necessary to program or debug the PIC32MZ2048EFM144. For programming/debugging, the PKOB4 connects to the host PC through the USB micro-B connector on the Curiosity PIC32MZ EF 2.0 Development Board.

Connection Diagram

The application has the temperature sensor and EEPROM connected to the PIC32MZ EF 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

Software Tools

This project has been verified to work with the following versions of software tools:
MPLAB X IDE v5.35
MPLAB XC32 Compiler v2.40
MPLAB Harmony CSP v3.6.1
MPLAB Harmony BSP v3.6.1
DEV_PACKS v3.6.1
MHC v3.3.5
CORE v3.6.1
USB v3.4.0
CMSIS_FreeRTOS v10.2.0

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

For this lab, download the following repositories from GitHub:

  • CSP: The following table shows the summary of contents.
Folder Description
apps Example applications for CSP library components
arch Initialization and starter code templates and data
docs CSP library help documentation
peripheral Peripheral library templates and configuration data
  • DEV_PACKS: The following table shows the summary of contents.
Folder Description
Microchip Peripheral register specific definitions
arm Core Specific Register Definitions (CMSIS)
  • MHC: The following table shows the summary of contents.
File/Folder Description
doc Help documentation and licenses for libraries used
np_templates New Project templates for supported toolchains
*.jar Java implementations of MHC modules
mhc.jar Main Java executable (run: java -jar mhc.jar -h)
runmhc.bat Windows cmd batch file to run standalone MHC Graphical User Interface (GUI)
  • CORE: The following table shows the summary of contents.
Folder Description
apps Example applications for core library components
config Core module configuration scripts
docs Core module library help documentation
driver Core module peripheral device drivers
osal MPLAB Harmony Operating System Abstraction Layer
system MPLAB Harmony system services
templates Application and system file templates
  • BSP: The following table shows the summary of contents.
Folder Description
boards BSP templates and configuration data
  • USB: The following table shows the summary of contents.
Folder Description
apps Example applications for USB library components
config USB module configuration scripts
docs USB module library help documentation
driver USB module driver source files
middleware USB middleware source files
templates Application and system file templates
Folder Description
CMSIS CMSIS-FreeRTOS related files
CMSIS/RTOS2/FreeRTOS/Config CMSIS-FreeRTOS configuration file
CMSIS/RTOS2/FreeRTOS/Examples CMSIS-FreeRTOS example projects
CMSIS/RTOS2/FreeRTOS/Source CMSIS-FreeRTOS source code
Config FreeRTOS Kernel configuration file
Demo FreeRTOS demo projects
DoxyGen Source of the documentation
License FreeRTOS Kernel license text file
Source FreeRTOS Kernel source code
Utilities Utility programs

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 the TC, I²C, UART, and GPIO peripherals
  • Harmony v3 Synchronous Driver code for the I²C and USART peripherals
  • Harmony v3 Driver code for the USB High-Speed peripheral
  • Harmony v3 Library code for the USB Host Middleware and File System Service
  • Harmony v3 application, middleware, and system service 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 and to a file in a USB thumb drive whenever a USB thumb drive is connected. 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 (LED1) is toggled every time the temperature is displayed on the serial console and an LED (LED2) is in an ON state when a USB thumb drive is connected.

The application functionality is divided into the following threads.

Threads to run the system service, middleware tasks:

  1. File System Layer Thread – To maintain and run the File System service tasks and functionalities.
  2. USB High-Speed Driver Thread – To maintain and run the driver's state machine.
  3. USB Host Layer Thread – To maintain and run the USB Host Stack Layer's state machine.

Application Threads:

  1. Sensor Thread – To read and display temperature periodically.
  2. EEPROM Thread – To write the temperature values to EEPROM and display them 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.
  4. USB Thread - To write temperature readings to a file in a USB thumb drive whenever a USB thumb drive is connected.

Sensor thread, EEPROM thread, USB thread, and the User Input thread run the corresponding application function in an infinite loop. USB High-Speed Driver thread, USB Host Stack Layer thread, and File System Service thread run the corresponding peripheral driver, middleware library, and system service library tasks in an infinite loop.

Following the creation of all these threads is when 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. You will use MHC to generate the template files for the four application threads. Also, MHC will generate the USB High-Speed driver thread, USB Host Stack Layer, and File System Service thread files.

thread_state_machine.png
Figure 4: The Application Threads.

Once the scheduler is invoked the threads start to run based on the default scheduling method (preemptive).

The File System thread runs the File System Service library task function SYS_FS_Tasks. The SYS_FS_Tasks function runs the underlying File System Service layers to enable media (thumb drive) mount, file opening, and read/write operations on the opened file(s).
The File System thread runs the task function SYS_FS_Tasks for a pass and yields control (blocks) for 10 milliseconds to allow other threads to run.

The USB High-Speed driver thread runs the USB high-speed driver task function DRV_USBHS_Tasks. The DRV_USBHS_Tasks function enables the USB interrupt, soft-reset the USB physical layer, and waits for the USB device to attach and detach actions in Polling mode. Further, it runs the state machine to detect events, read/write data from the USB device. The USB High-Speed driver thread runs the task function DRV_USBHS_Tasks for a pass and yields control (blocks) for 10 milliseconds to allow other threads to run.

The USB Host thread runs the USB host layer task function USB_HOST_Tasks. The USB_HOST_Tasks function enables USB host bus, USB device connection, reads USB device descriptors and maintains the USB Host stack layer state machine. The USB Host thread runs the task function USB_HOST_Tasks for a pass and yields control (blocks) for 10 milliseconds to allow other threads to run.

By default, the sensor thread is blocked and wakes up every time the temperature sampling period gets expired. 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 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 read the 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 USB thread is waiting for a USB thumb drive connection. It wakes up when there is a USB thumb drive connected to the development board. The USB thread performs writing temperature readings to a file and goes back to the waiting state once after writing is finished.

By default, the user input thread is blocked to receive a character on the UART 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 5: The 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 below folder:

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

Note:

  1. The project location of a Harmony v3 project is independent of the location of the Harmony Framework path (i.e. you need not 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:

  • getting_started_middleware contains the lab solution (in the firmware folder) and source files (in the dev_files folder).
    • dev_files contains subfolder middleware_drivers_freertos_pic32mz_ef_curiosity_v2 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 programmed on the hardware to observe expected behavior.

Procedure

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 PIC32MZ EF

  • 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.3 - Create MPLAB Harmony v3 Project using MPLAB X IDE
  • Step 1.4 - Verify Clock Settings
  • Step 1.5 - Configure BSP

Step 2: Configure Synchronous I²C and USART Drivers

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

Step 3: Configure USB High Speed Driver, USB Host Middleware and File System Service

  • Step 3.1 - Configure USB High Speed Driver
  • Step 3.2 - Configure USB Host Middleware and File System Service

Step 4: Configure Application Threads

  • Step 4.1 - Rename the default main file
  • Step 4.2 - Configure Application Threads and FreeRTOS

Step 5: Generate Code
Step 6: Add Application Code to the Project
Step 7: 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.