MPLAB® Harmony v3 Drivers on SAM E70/S70/V70/V71 Using FreeRTOS™: Step 6

Last modified by Microchip on 2023/11/09 09:09

Build, Program, and Observe the Outputs

Verify that the temperature sensor (I/O1 Xplained Pro Extension Kit) is connected to the Extension Header 1 (EXT1) on the SAM E70 Xplained Ultra Evaluation Kit.

Verify that the temperature sensor (I/O1 Xplained Pro Extension Kit) is connected to the Extension Header 1 (EXT1)

The SAM E70 Xplained Ultra Evaluation Kit allows the Embedded Debugger (EDBG) to be used for debugging. Connect the Type-A male to Micro-B USB cable to the Micro-B DEBUG USB port to power and debug the SAM E70 Xplained Ultra Evaluation Kit.

Connect the Type-A male to Micro-B USB cable to the Micro-B DEBUG USB port to power and debug the SAM E70 Xplained Ultra Evaluation Kit

Go to File > Project Properties and make sure that the EDBG is selected as the debugger under the Hardware Tools and XC32 (v4.30) is selected as the Compiler Toolchain for XC32.

make sure that the EDBG is selected as the debugger under the Hardware Tools and XC32 (v2.30) is selected as the Compiler Toolchain for MPLAB® XC32 C/C++ Compiler

Clean and build your application by clicking on the Clean and Build button.

Clean and build button

Program your application to the device by clicking on the Make and Program button.

Make and program button

The lab should build and program successfully.

Now, open the Tera Term terminal application on your PC (from the Windows® Start menu by pressing the Start button). Select the Serial Port.

open the Tera Term terminal application on your PC (from the Windows® Start menu by pressing the Start button)

Change the baud rate to 115200.

Select the Serial Port

Change the baud rate to 115200

You should see the temperature values (in °F) being displayed on the terminal every one second.

You should see the temperature values (in °F) being displayed on the terminal every one second

Also, notice the LED3 blinking at a one second rate.

Press any character on the terminal to display the last five values written to the EEPROM.

Press any character on the terminal to display the last five values written to the EEPROM

You may vary the temperature by placing your finger on the temperature sensor (for a few seconds).

You may vary the temperature by placing your finger on the temperature sensor (for a few seconds)

Back to Top

Results

You observed that the application displayed the current room temperature values on the serial terminal every second. Also, you observed that the application retrieved and printed (on the serial terminal) the last five stored temperature values from EEPROM every time you entered a character on the serial terminal. You also observed that a user LED was toggled every time the current temperature is displayed on the serial terminal.

Analysis

You have successfully created your first application using MPLAB® Harmony v3 on the SAM E70 microcontroller. Your application used all the fundamental elements that go into building a real-time application. Your application successfully read temperature sensor values and displayed them periodically over a serial terminal on a PC. While the temperature values were getting printed on the serial terminal, the application stored the temperature values into an EEPROM. The application retrieved the last five values stored in EEPROM and displayed them on the serial terminal when a user requested them (by entering a character on the serial terminal).

In this application, you used MPLAB Code Configurator (MCC) to configure SAM E70 and to use the MPLAB Harmony v3 Framework. You verified the clock configurator to set up the CPU clock and peripheral clocks. You configured Two-Wire Interfaces (TWIHS) (I²C), Universal Synchronous Asynchronous Receiver Transmitter 1 (USART1) synchronous drivers. You used Pin Configurator to set up the pins for LED and peripheral (USART, I²C) pins. You build this application using FreeRTOS™. You created FreeRTOS threads, configured FreeRTOS stack, and heap size for the application threads.

Conclusions

This tutorial provided you the training for configuring and using all the fundamental components needed to build a real-time application using FreeRTOS on a SAM E70 microcontroller with MPLAB Harmony v3 Framework. As a next step, you may customize this application and reconfigure some of the components used in this tutorial. You could also add new components (drivers, etc.), additional threads to enhance this application to realize your end application.

Back to Top