Step 6: Build, program, and observe the outputs
11
Every subsequent press of switch SW1 on the Curiosity PIC32MZ EF 2.0 Development Board changes the default sampling rate to two seconds, four seconds, 500 milliseconds, and back to one second in cyclic order as shown in the accompanying image.
While the temperature sampling rate changes on every switch SW1 press, notice LED1 toggling at the same sampling rate.
Results
You observed that the application displayed the current room temperature values on the serial terminal every 500 milliseconds. You were able to change the temperature sampling values dynamically by pressing a user switch on the development kit. You could exercise sampling changes to one second, two seconds, or four seconds, and cycle back to 500 milliseconds every time you pressed the user switch. You also observed that a user LED was toggled every time the current temperature was displayed on the serial terminal.
Analysis
You have successfully created your first application using MPLAB® Harmony v3 on the PIC32MZ EF 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. The application also took user input by pressing a switch on the development board.
In this application, you used MPLAB Code Configurator (MCC) to configure a PIC32MZ EF and to use the MPLAB Harmony v3 Framework. You used the clock configurator to set up the CPU clock and timer (Timer1) clock. You configured the I²C1, UART6, TMR1, and GPIO peripheral libraries. You also configured Direct Memory Access (DMA) using the DMA configurator. You used the pin configurator to set up the pins for LED and switch functions.
Conclusions
This tutorial provided training for configuring and using all the fundamental components needed to build a real-time application on a PIC32MZ EF microcontroller with the 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 (PLIBs, etc.) to enhance this application to realize your end application.