├── .gitattributes ├── .gitignore ├── .jenkins └── Jenkinsfile ├── Microchip_SLA001.md ├── _config.yml ├── apps └── readme.md ├── favicon.ico ├── package.xml ├── package.yml ├── readme.md └── release_notes.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case people don't have core.autocrlf set. 2 | * text=auto 3 | 4 | # Explicitly declare text files you want to always be normalized and converted 5 | # to native line endings on checkout. 6 | 7 | *.py text 8 | *.ftl text 9 | *.h text 10 | *.c text 11 | 12 | # Denote all files that are truly binary and should not be modified. 13 | *.jar binary 14 | *.exe binary 15 | *.a binary 16 | *.gif binary 17 | *.png binary 18 | *.jpg binary 19 | *.svg binary 20 | *.chm binary 21 | *.html binary 22 | *.css binary 23 | *.pdf binary 24 | *.md binary 25 | *.hex binary 26 | *.bin binary 27 | *.ico binary 28 | *.elf binary 29 | *.backup binary 30 | *.inc binary 31 | *.idx binary 32 | *.apk binary 33 | *.dump binary 34 | *.json binary 35 | *.xls binary 36 | *.csv binary 37 | *.lib binary 38 | *.js binary 39 | *.link binary 40 | *.group binary 41 | *.bib binary 42 | *.cgi binary 43 | *.zip binary 44 | *.wav binary 45 | *.bmp binary 46 | *.IAR binary 47 | *.xml binary 48 | *.mc3 binary 49 | *.yml binary 50 | *.ld binary 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.elf 3 | *.map 4 | *.d 5 | **/nbproject/private 6 | **/nbproject/Makefile-* 7 | **/nbproject/Package-* 8 | **/nbproject/project.properties 9 | **/*.X/debug 10 | **/*.X/dist 11 | **/*.X/build 12 | **/*.X/.generated_files 13 | **/*.IAR/Debug 14 | **/*.IAR/settings 15 | **/*.IAR/*.dep 16 | **/*.IAR/*.custom_argvars 17 | **/*.KEIL/Objects 18 | **/*.KEIL/*.uvguix.* 19 | Gemfile* 20 | **/*.X/queuelogs 21 | /docs/apps/sam_d21_cnano/ble_weather_station/hex 22 | /docs/apps/sam_d21_cnano/fitness_tracker/hex 23 | /docs/apps/sam_d21_cnano/location_sos/hex 24 | /docs/apps/sam_e54_xpro/same54_vending_machine/firmware 25 | /docs/apps/pic32mz_ef_curiosity_v2/wifi_rgb_easy_configuration/firmware 26 | /docs/apps/sam_e70_xpld/getting_started_drivers_middleware/firmware 27 | /docs/readme.md 28 | docs/apps_mpu/sama7g54_ek/sama7g54_ek_ethernet_web_server_getting_started/firmware/src/web_pages 29 | -------------------------------------------------------------------------------- /.jenkins/Jenkinsfile: -------------------------------------------------------------------------------- 1 | #!groovy 2 | 3 | @Library('jenkins-shared-library') _ 4 | 5 | jslRunH3AppRepoBuildTask(timeout:60) -------------------------------------------------------------------------------- /Microchip_SLA001.md: -------------------------------------------------------------------------------- 1 | V2.001 - 20230126 2 | 3 | **THE MICROCHIP SOFTWARE AND DOCUMENTATION PROVIDED HEREUNDER IS OFFERED SOLELY TO ASSIST YOU IN DEVELOPING PRODUCTS AND SYSTEMS THAT USE AND INCORPORATE MICROCHIP PRODUCTS. INSTALLING, COPYING, DOWNLOADING AND/OR USING THE SOFTWARE AND DOCUMENTATION REQUIRES THAT YOU ACCEPT THIS SOFTWARE LICENSE AGREEMENT. IF YOU DO NOT WISH TO ACCEPT THESE TERMS, DO NOT, INSTALL, COPY, DOWNLOAD OR USE ANY OF THE SOFTWARE OR DOCUMENTATION. INSTALLING, COPYING, DOWNLOADING OR USING THE SOFTWARE AND DOCUMENTATION CONSTITUTES YOUR ACCEPTANCE OF THIS SOFTWARE LICENSE AGREEMENT.** 4 | 5 | Under Microchip Technology Incorporated’s (“Microchip”) intellectual property rights and subject to applicable licensing terms for any third-party software incorporated in this software and any applicable Open Source Software (as defined here below), the redistribution, reproduction and use in source and binary forms of the software or any part thereof, with or without modification, are permitted provided that the following conditions are met: 6 | 7 | © [**2025**], Microchip Technology Inc., and its subsidiaries. All rights reserved. 8 | 9 | 1. Redistribution of source code (modified or unmodified) must retain the copyright notice accompanying the software and documentation, this list of conditions and the disclaimer in capital type at the end of this software license agreement. 10 | 11 | 2. Redistributions in binary form, except as embedded into a device manufactured by or for Microchip or a software update for any such Microchip device, must reproduce the accompanying copyright notice, this list of conditions and the below disclaimer in capital type, in the documentation and/or other materials provided with the distribution. 12 | 13 | 3. Neither the name of Microchip nor the names of other contributors to this software and documentation may be used to endorse or promote products derived from this software, documentation or part thereof without specific written permission of Microchip. 14 | 15 | 4. The software and documentation or any part thereof, including modifications and/or derivative works of this software and documentation, must be used and execute solely and exclusively on or in combination with a device manufactured by or for Microchip. 16 | 17 | 5. No use, reproduction or redistribution of this software or documentation partially or totally may be done in any manner that would subject the software to any Open Source Software license terms (as defined below). 18 | 19 | 6. The software may also include third-party software as expressly specified in the software or documentation subject to specific license terms from such third parties. Such third-party software is supplied under such specific license terms and is not subject to the terms and conditions of this software license agreement. By installing copying, downloading, accessing or otherwise using this software, you agree to be bound by such third-party license terms with regard to such third-party software. 20 | 21 | 7. Some portion of the software may contain software subject to Open Source Software license terms applicable for each such portion of Open Source Software, as further specified in the software documentation. Such Open Source Software is supplied under the applicable Open Source Software license terms and is not subject to the terms and conditions of this software license agreement. “Open Source Software” shall mean any open source software licensed under terms that requires as part of distribution of such software that the source code of such software is distributed therewith or otherwise made available, or such license terms that substantially complies with the Open Source definition specified at www.opensource.org and any other comparable open source license such as for example GNU General Public License (GPL), Eclipse Public License (EPL), Apache Software License, BSD license and MIT license. 22 | 23 | 8. The software and documentation is and will remain the exclusive property of Microchip and its licensors. You will not take any action that jeopardizes Microchip’s and its licensors' proprietary rights or acquire any rights in the software and documentation, except the limited rights specified hereunder. 24 | 25 | 9. Microchip has no obligation to provide any maintenance, support or updates for the software. 26 | 27 | 10. You shall comply with all applicable laws and regulations affecting the use of the software and documentation or any part thereof including any applicable export control law or regulation. 28 | 11. Redistribution and use of the software and documentation partially or any part thereof other than as permitted under this software license agreement is void and will automatically terminate your rights under this software license agreement. 29 | 30 | 31 | DISCLAIMER: 32 | 33 | © [**2025**], Microchip Technology Inc., and its subsidiaries. All rights reserved. 34 | 35 | The software and documentation is provided by Microchip and its contributors "as is" and any express, implied or statutory warranties, including, but not limited to, the implied warranties of merchantability, fitness for a particular purpose and non-infringement of third party intellectual property rights are disclaimed to the fullest extent permitted by law. In no event shall Microchip or its contributors be liable for any direct, indirect, incidental, special,exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of the software and documentation, even if advised of the possibility of such damage. 36 | 37 | Except as expressly permitted hereunder and subject to the applicable license terms for any third-party software incorporated in the software and any applicable open source software license terms, no license or other rights, whether express or implied, are granted under any patent or other intellectual property rights of Microchip or any third party. 38 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # Welcome to Jekyll! 2 | # 3 | # This config file is meant for settings that affect your whole site, values 4 | # which you are expected to set up once and rarely edit after that. If you find 5 | # yourself editing these this file very often, consider using Jekyll's data files 6 | # feature for the data you need to update frequently. 7 | # 8 | # For technical reasons, this file is *NOT* reloaded automatically when you use 9 | # 'jekyll serve'. If you change this file, please restart the server process. 10 | 11 | # Site settings 12 | # These are used to personalize your new site. If you look in the HTML files, 13 | # you will see them accessed via {{ site.title }}, {{ site.github_repo }}, and so on. 14 | # You can create any custom variable you would like, and they will be accessible 15 | # in the templates via {{ site.myvariable }}. 16 | 17 | name: Microchip Technology 18 | title: Microchip MPLAB Harmony Reference Applications help 19 | lang: en-US 20 | timezone: America/Phoenix 21 | 22 | description: Harmony 3 Reference Applications package 23 | url: "https://microchip-mplab-harmony.github.io" 24 | baseurl: "/reference_apps" 25 | 26 | remote_theme: "Microchip-MPLAB-Harmony/just-the-docs@mchp-harmony" 27 | 28 | # Build settings 29 | 30 | # GH Pages default (to ensure local build is same) 31 | lsi: false 32 | safe: true 33 | incremental: false 34 | highlighter: rouge 35 | gist: 36 | noscript: false 37 | kramdown: 38 | math_engine: mathjax 39 | syntax_highlighter: rouge 40 | parse_block_html: true 41 | 42 | markdown: kramdown 43 | 44 | plugins: 45 | - jekyll-coffeescript # GH Pages default (to ensure local build is same) 46 | - jekyll-default-layout 47 | - jekyll-gist 48 | - jekyll-github-metadata 49 | - jekyll-optional-front-matter 50 | - jekyll-paginate 51 | - jekyll-readme-index 52 | - jekyll-titles-from-headings 53 | - jekyll-relative-links 54 | - jekyll-seo-tag # MCHP 55 | 56 | # 57 | # ------------ Theme configuration ------------ 58 | # 59 | 60 | # Enable or disable the site search 61 | search_enabled: true 62 | 63 | # Set the search token separator for hyphenated-word search: 64 | search_tokenizer_separator: /[\s/]+/ 65 | 66 | # Enable or disable heading anchors 67 | heading_anchors: true 68 | 69 | # Google Analytics Tracking (optional) 70 | ga_tracking: UA-2724382-16 71 | 72 | exclude: 73 | - "*.xml" 74 | - "*.py" 75 | - "*.ftl" 76 | - "*.c" 77 | - "*.h" 78 | - "*.X" 79 | - "*.IAR" 80 | - "Gem*" 81 | - "*.S" 82 | - "*.ld" 83 | - "*.jar" 84 | - "*.prj" 85 | - "*.hex" 86 | - "*.wav" 87 | - "*.bmp" 88 | - "*.txt" 89 | - "*.yml" 90 | - "*.bin" 91 | - "*.zip" 92 | - "*.a" 93 | - "*.link" 94 | - "*.group" 95 | - "*.bib" 96 | - "*.cgi" 97 | - "*.css" 98 | - "*.js" 99 | - "*.pdf" 100 | - "*.backup" 101 | - "*.inc" 102 | - "*.idx" 103 | - "*.apk" 104 | - "*.dump" 105 | - "*.json" 106 | - "*.xls" 107 | - "*.csv" 108 | - "*.lib" 109 | 110 | # Aux links for the upper right navigation 111 | aux_links: 112 | "Obtain Support from Microchip": 113 | - "https://support.microchip.com" 114 | 115 | # Set a path/url to a logo that will be displayed instead of the title 116 | logo: "/assets/images/vendor/microchip_mplab_harmony_logo_150_transparent.png" 117 | 118 | # Footer content appears at the bottom of every page's main content 119 | footer_content: "
Copyright © 2020 Microchip Technology." 120 | -------------------------------------------------------------------------------- /apps/readme.md: -------------------------------------------------------------------------------- 1 | ![Microchip logo](https://raw.githubusercontent.com/wiki/Microchip-MPLAB-Harmony/Microchip-MPLAB-Harmony.github.io/images/microchip_logo.png) 2 | ![Harmony logo small](https://raw.githubusercontent.com/wiki/Microchip-MPLAB-Harmony/Microchip-MPLAB-Harmony.github.io/images/microchip_mplab_harmony_logo_small.png) 3 | 4 | # MPLAB® Harmony 3 Reference Applications 5 | 6 | **"For reference application examples, see the following repositories under the Microchip-MPLAB-Harmony GitHub project:"** 7 | 8 | | Repository | Product family | Latest release | 9 | | ---------- | -------------- |-------------- | 10 | | [reference_apps_pic32cm](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32cm) | Reference Applications for PIC32CM family | [v1.0.0](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32cm/blob/master/release_notes.md#reference-applications-for-pic32cm-mcus-release-v100): Moved in applications from earlier reference_apps repo and added 28 new examples | 11 | | [reference_apps_pic32ck](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32ck) | Reference Applications for PIC32CK family | [v1.0.0](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32ck/blob/master/release_notes.md#reference-applications-for-pic32ck-mcus-release-v100): Added 4 new examples | 12 | | [reference_apps_pic32cx](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32cx) | Reference Applications for PIC32CX family | [v1.0.0](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32cx/blob/master/release_notes.md#reference-applications-for-pic32cx-mcus-release-v100): Moved in applications from earlier reference_apps repo and added 3 new examples | 13 | | [reference_apps_pic32cz](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32cz) | Reference Applications for PIC32CZ family | [v1.0.0](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32cz/blob/master/release_notes.md#reference-applications-for-pic32cz-mcus-release-v100): Moved in applications from earlier reference_apps repo and added 4 new examples | 14 | | [reference_apps_pic32m](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32m) | Reference Applications for PIC32M family | [v1.0.0](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32m/blob/master/release_notes.md#reference-applications-for-pic32m-mcus-release-v100): Moved in applications from earlier reference_apps repo and added 4 new examples | 15 | | [reference_apps_sam_mcu](https://github.com/Microchip-MPLAB-Harmony/reference_apps_sam_mcu) | Reference Applications for SAM MCU family | [v1.0.0](https://github.com/Microchip-MPLAB-Harmony/reference_apps_sam_mcu/blob/master/release_notes.md#reference-applications-for-sam-mcus-release-v100): Moved in applications from earlier reference_apps repo and added 13 new examples | 16 | | [reference_apps_sam_mpu](https://github.com/Microchip-MPLAB-Harmony/reference_apps_sam_mpu) | Reference Applications for SAM MPU family | [v1.0.0](https://github.com/Microchip-MPLAB-Harmony/reference_apps_sam_mpu/blob/master/release_notes.md#reference-applications-for-sam-mpus-release-v100): Moved in applications from earlier reference_apps repo and added 2 new examples | 17 | 18 | 19 | 20 | ____ 21 | 22 | [![License](https://img.shields.io/badge/license-Harmony%20license-orange.svg)](https://github.com/Microchip-MPLAB-Harmony/replaceme/blob/master/Microchip_SLA001.md) 23 | [![Commit activity](https://img.shields.io/github/commit-activity/y/Microchip-MPLAB-Harmony/replaceme.svg)](https://github.com/Microchip-MPLAB-Harmony/replaceme/graphs/commit-activity) 24 | [![Contributors](https://img.shields.io/github/contributors-anon/Microchip-MPLAB-Harmony/replaceme.svg)]() 25 | 26 | ____ 27 | [![Developer Help](https://img.shields.io/badge/Youtube-Developer%20Help-red.svg)](https://www.youtube.com/MicrochipDeveloperHelp) 28 | [![Developer Help](https://img.shields.io/badge/XWiki-Developer%20Help-torquiose.svg)](https://developerhelp.microchip.com/xwiki/bin/view/software-tools/harmony/) 29 | [![Follow us on Youtube](https://img.shields.io/badge/Youtube-Follow%20us%20on%20Youtube-red.svg)](https://www.youtube.com/user/MicrochipTechnology) 30 | [![Follow us on LinkedIn](https://img.shields.io/badge/LinkedIn-Follow%20us%20on%20LinkedIn-blue.svg)](https://www.linkedin.com/company/microchip-technology) 31 | [![Follow us on Facebook](https://img.shields.io/badge/Facebook-Follow%20us%20on%20Facebook-blue.svg)](https://www.facebook.com/microchiptechnology/) 32 | [![Follow us on Twitter](https://img.shields.io/twitter/follow/MicrochipTech.svg?style=social)](https://twitter.com/MicrochipTech) 33 | 34 | 35 | [![](https://img.shields.io/github/stars/Microchip-MPLAB-Harmony/replaceme.svg?style=social)]() 36 | [![](https://img.shields.io/github/watchers/Microchip-MPLAB-Harmony/replaceme.svg?style=social)]() 37 | 38 | 39 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microchip-MPLAB-Harmony/reference_apps/bfefd22308c873d54ebaff89b6f0355e8c531251/favicon.ico -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /package.yml: -------------------------------------------------------------------------------- 1 | package: 2 | format-version: "1.0.0" 3 | name: "reference_apps" 4 | version: "dev" 5 | type: "application" 6 | status: "production" 7 | required: false -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # MPLAB® Harmony 3 Reference Applications 2 | 3 | MPLAB® Harmony 3 is an extension of the MPLAB® ecosystem for creating embedded firmware solutions for Microchip 32-bit SAM and PIC® microcontroller unit(MCU) and microprocessor unit (MPU). Refer to the following links for more information. 4 | 5 | - [Microchip 32-bit MCUs](https://www.microchip.com/design-centers/32-bit) 6 | - [Microchip 32-bit MPUs](https://www.microchip.com/design-centers/32-bit-mpus) 7 | - [Microchip MPLAB X IDE](https://www.microchip.com/mplab/mplab-x-ide) 8 | - [Microchip MPLAB® Harmony](https://www.microchip.com/mplab/mplab-harmony) 9 | - [Microchip MPLAB® Harmony Pages](https://microchip-mplab-harmony.github.io/) 10 | 11 | # MPLAB® Harmony 3 Reference Applications 12 | 13 | **Reference Applications** are standalone applications that demonstrate specific features or capabilities of Microchip's 32-bit SAM and PIC® microcontroller (MCU) and microprocessor (MPU) devices. These applications are developed using Microchip's 32-bit SAM and PIC® MCU/MPU development boards and kits. 14 | 15 | The typical types of **Reference Applications** include: 16 | 17 | - **Feature-rich applications** that integrate multiple technologies such as USB, TCP/IP, Wireless, Security, Low Power, RTOS, etc. 18 | - **Applications demonstrating specific MCU/MPU capabilities**, such as Low Power applications. 19 | - **Applications showcasing the capabilities of Microchip's MCU/MPU development boards and kits** (e.g., Curiosity, Nano), which enable hardware expansion through mikroBUS Click or Xplained Pro extensions. 20 | - **Getting Started applications** designed to introduce users to MCU/MPU products. These applications demonstrate the use of the MPLAB Harmony 3 framework with the MCC UI, highlighting commonly used peripheral features. 21 | 22 | # Contents Summary 23 | 24 | | Folder | Description | 25 | | --- | --- | 26 | | apps | Example reference applications | 27 | 28 | 29 | 30 | ____ 31 | 32 | [![License](https://img.shields.io/badge/license-Harmony%20license-orange.svg)](https://github.com/MicrochipTech/MPLAB-Harmony-Reference-Apps/blob/master/mplab_harmony_license.md) 33 | [![Latest release](https://img.shields.io/github/release/MicrochipTech/MPLAB-Harmony-Reference-Apps.svg)](https://github.com/MicrochipTech/MPLAB-Harmony-Reference-Apps/releases/latest) 34 | [![Latest release date](https://img.shields.io/github/release-date/MicrochipTech/MPLAB-Harmony-Reference-Apps.svg)](https://github.com/MicrochipTech/MPLAB-Harmony-Reference-Apps/releases/latest) 35 | [![Commit activity](https://img.shields.io/github/commit-activity/y/MicrochipTech/MPLAB-Harmony-Reference-Apps.svg)](https://github.com/MicrochipTech/MPLAB-Harmony-Reference-Apps/graphs/commit-activity) 36 | [![Contributors](https://img.shields.io/github/contributors-anon/MicrochipTech/MPLAB-Harmony-Reference-Apps.svg)]() 37 | 38 | ____ 39 | 40 | [![Follow us on Youtube](https://img.shields.io/badge/Youtube-Follow%20us%20on%20Youtube-red.svg)](https://www.youtube.com/user/MicrochipTechnology) 41 | [![Follow us on LinkedIn](https://img.shields.io/badge/LinkedIn-Follow%20us%20on%20LinkedIn-blue.svg)](https://www.linkedin.com/company/microchip-technology) 42 | [![Follow us on Facebook](https://img.shields.io/badge/Facebook-Follow%20us%20on%20Facebook-blue.svg)](https://www.facebook.com/microchiptechnology/) 43 | [![Follow us on Twitter](https://img.shields.io/twitter/follow/MicrochipTech.svg?style=social)](https://twitter.com/MicrochipTech) 44 | 45 | [![](https://img.shields.io/github/stars/MicrochipTech/MPLAB-Harmony-Reference-Apps.svg?style=social)]() 46 | [![](https://img.shields.io/github/watchers/MicrochipTech/MPLAB-Harmony-Reference-Apps.svg?style=social)]() 47 | -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release notes 3 | nav_order: 99 4 | --- 5 | 6 | # Microchip MPLAB® Harmony 3 Release Notes 7 | 8 | --- 9 | 10 | ## Reference Applications Release v1.6.1 (March 2025) 11 | - Moved applications to the below product specific repositories 12 | - [reference_apps_pic32cm](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32cm) 13 | - [reference_apps_pic32ck](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32ck) 14 | - [reference_apps_pic32cx](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32cx) 15 | - [reference_apps_pic32cz](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32cz) 16 | - [reference_apps_pic32m](https://github.com/Microchip-MPLAB-Harmony/reference_apps_pic32m) 17 | - [reference_apps_sam_mcu](https://github.com/Microchip-MPLAB-Harmony/reference_apps_sam_mcu) 18 | - [reference_apps_sam_mpu](https://github.com/Microchip-MPLAB-Harmony/reference_apps_sam_mpu) 19 | 20 | ### Known Issues 21 | - NA 22 | 23 | ### Development Tools 24 | - NA 25 | 26 | 27 | ## Reference Applications Release v1.6.0 (September 2023) 28 | 29 | ### New Applications 30 | 31 | | Application | Description | MCU | Development Board/Kit | 32 | | --- | --- | --- | --- | 33 | | [pic32cm_ls60_cpro_secure_boot](./apps/pic32cm_ls60_curiosity_pro/pic32cm_ls60_cpro_secure_boot/readme.md) | Secure Boot Application | [PIC32CM LS](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/pic32-32-bit-mcus/pic32cmlx) | [PIC32CM LS60 Curiosity Pro Evaluation Kit](https://www.microchip.com/en-us/development-tool/EV76R77A)| 34 | | [pic32cm_ls60_aws_iot_core](./apps/pic32cm_ls60_curiosity_pro/pic32cm_ls60_aws_iot_core/readme.md) | AWS Cloud IoT Core Application | [PIC32CM LS](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/pic32-32-bit-mcus/pic32cmlx) | [PIC32CM LS60 Curiosity Pro Evaluation Kit](https://www.microchip.com/en-us/development-tool/EV76R77A)| 35 | | [pic32cm_ls60_secure_iot_gateway](./apps/pic32cm_ls60_curiosity_pro/pic32cm_ls60_secure_iot_gateway/readme.md) | Secure IoT Gateway Application | [PIC32CM LS](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/pic32-32-bit-mcus/pic32cmlx) | [PIC32CM LS60 Curiosity Pro Evaluation Kit](https://www.microchip.com/en-us/development-tool/EV76R77A)| 36 | | [pic32cm_ls60_cpro_tz_getting_started](./apps/pic32cm_ls60_curiosity_pro/pic32cm_ls60_cpro_tz_getting_started/readme.md) | TrustZone Getting Started Application | [PIC32CM LS](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/pic32-32-bit-mcus/pic32cmlx) | [PIC32CM LS60 Curiosity Pro Evaluation Kit](https://www.microchip.com/en-us/development-tool/EV76R77A)| 37 | | [pic32cm_ls60_rd_smart_lock](./apps/pic32cm_ls60_rd/pic32cm_ls60_rd_smart_lock/readme.md) | Smart Lock Application | [PIC32CM LS](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/pic32-32-bit-mcus/pic32cmlx) | [PIC32CM LS60 Smart Lock Reference Board](https://www.microchip.com/en-us/tools-resources/reference-designs/smart-home-lock-demonstration-application)| 38 | | [pic32cm_ls00_cpro_tz_getting_started](./apps/pic32cm_ls00_curiosity_pro/pic32cm_ls00_cpro_tz_getting_started/readme.md) | TrustZone Getting Started Application | [PIC32CM LS](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/pic32-32-bit-mcus/pic32cmlx) | [PIC32CM LS00 Curiosity Pro Evaluation Kit](https://www.microchip.com/en-us/development-tool/EV12U44A)| 39 | | [pic32cm_le00_cpro_getting_started_ext](./apps/pic32cm_le00_curiosity_pro/pic32cm_le00_cpro_getting_started_ext/readme.md) | Getting Started Extended Application | [PIC32CM LS](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/pic32-32-bit-mcus/pic32cmlx) | [ PIC32CM LE00 Curiosity Pro Evaluation Kit](https://www.microchip.com/en-us/development-tool/EV80P12A)| 40 | | [pic32cx_sg61_getting_started](./apps/pic32cx_sg61_cult/pic32cx_sg61_getting_started/readme.md) | Getting Started Application| [PIC32CX SG](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/pic32-32-bit-mcus/pic32cxsg) | [PIC32CX SG61 Curiosity Ultra Evaluation Board](https://www.microchip.com/en-us/development-tool/EV09H35A)| 41 | | [pic32cx_sg41_getting_started](./apps/pic32cx_sg41_cult/pic32cx_sg41_getting_started/readme.md) | Getting Started Application| [PIC32CX SG](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/pic32-32-bit-mcus/pic32cxsg) | [PIC32CX SG61 Curiosity Ultra Evaluation Board](https://www.microchip.com/en-us/development-tool/EV06X38A)| 42 | | [pic32cz_ca90_getting_started_ext](./apps/pic32cz_ca90_cult/pic32cz_ca90_getting_started_ext/readme.md) | Getting Started Extended Application| [PIC32CZ CA](https://ww1.microchip.com/downloads/aemDocuments/documents/MCU32/ProductDocuments/Errata/PIC32CZ-CA80-CA90-Family-Silicon-Errata-and-Data-Sheet-Clarifications-DS80001023.pdf) | [PIC32CZ CA90 Curiosity Ultra Development Board](https://www.microchip.com/en-us/development-tool/EA58X56A)| 43 | | [pic32cz_ca80_getting_started_ext](./apps/pic32cz_ca80_cult/pic32cz_ca80_getting_started_ext/readme.md) | Getting Started Extended Application| [PIC32CZ CA](https://ww1.microchip.com/downloads/aemDocuments/documents/MCU32/ProductDocuments/Errata/PIC32CZ-CA80-CA90-Family-Silicon-Errata-and-Data-Sheet-Clarifications-DS80001023.pdf) | [PIC32CZ CA80 Curiosity Ultra Development Board](https://www.microchip.com/en-us/development-tool/EA61X20A)| 44 | | [pic32cm_jh01_cpro_getting_started](./apps/pic32cm_jh01_curiosity_pro/pic32cm_jh01_cpro_getting_started/readme.md) | Getting Started Application| [PIC32CM JH](https://www.microchip.com/en-us/products/microcontrollers-and-microprocessors/32-bit-mcus/pic32-32-bit-mcus/pic32cm-jh) | [ PIC32CM JH01 Curiosity Pro Development Board](https://www.microchip.com/en-us/development-tool/EV81X90A)| 45 | | [mcp25625](./apps/sam_e51_cnano/same51n_mikroe_click/mcp25625/readme.md) | MikroElektronika MCP25625 Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 46 | | [eink_epaper_2_9_296_128](./apps/sam_e51_cnano/same51n_mikroe_click/eink_epaper_2_9_296_128/readme.md) | MikroElektronika Eink E-Paper display 2,9" 296x128 dots Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 47 | | [13dof](./apps/sam_e51_cnano/same51n_mikroe_click/13dof/readme.md) | MikroElektronika 13dof Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 48 | | [microsd](./apps/sam_e51_cnano/same51n_mikroe_click/microsd/readme.md) | MikroElektronika microsd Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 49 | | [pic32mzef_web_photo_frame](./apps/pic32mz_ef_curiosity_v2/pic32mzef_web_photo_frame/readme.md) | Web Photo Frame Application | [PIC32MZ](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| 50 | | [samiot2_aws_cloud_core](./apps/sam_d21_iot_v2/samiot2_aws_cloud_core/readme.md) | AWS Cloud IoT Core Application | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G18) | [SAM-IoT WX v2 Development Board](https://www.microchip.com/en-us/development-tool/EV62V87A)| 51 | | [samiot2_azure_cloud_core](./apps/sam_d21_iot_v2/samiot2_azure_cloud_core/readme.md) | Microsoft Azure Cloud IoT Core Application | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G18) | [SAM-IoT WX v2 Development Board](https://www.microchip.com/en-us/development-tool/EV62V87A)| 52 | | [pic32mzda_miwi_iot](./apps/pic32mz_da_curiosity/pic32mzda_miwi_iot/readme.md) | MiWi IoT gateway Application | [PIC32MZ DA](https://www.microchip.com/wwwproducts/en/PIC32MZ2064DAR176) | [PIC32MZ DA Radial Graphics Development Board](https://ww1.microchip.com/downloads/aemDocuments/documents/MCU32/ProductDocuments/UserGuides/PIC32MZ-DA-Radial-Graphics-Board-User-Guide-DS70005515.pdf)| 53 | | [same54_ftp_server](./apps/sam_e54_xpro/same54_ftp_server/readme.md) | File Transfer Protocol Server application | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/productdetails/atsame54-xpro)| 54 | | [same54_ftp_client](./apps/sam_e54_xpro/same54_ftp_client/readme.md) | File Transfer Protocol Client Application | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/productdetails/atsame54-xpro)| 55 | | [sam9x60_cu_graphics_getting_started](./apps_mpu/sam9x60_curiosity_dev_board/sam9x60_cu_graphics_getting_started/readme.md) | Graphics Getting Started Application | [SAM9X60](https://www.microchip.com/en-us/product/sam9x60) | [SAM9X60 Curiosity Development Board](https://www.microchip.com/en-us/development-tool/EV40E67A)| 56 | | [sam9x60_cu_snake_game](./apps_mpu/sam9x60_curiosity_dev_board/sam9x60_cu_snake_game/readme.md) | Snake Game Application | [SAM9X60](https://www.microchip.com/en-us/product/sam9x60) | [SAM9X60 Curiosity Development Board](https://www.microchip.com/en-us/development-tool/EV40E67A)| 57 | | [sam9x60_ek_blink_led_qspi_xip](./apps_mpu/sam9x60_ek/sam9x60_ek_blink_led_qspi_xip/readme.md) | Blink LED Application | [SAM9X60](https://www.microchip.com/en-us/product/sam9x60) | [SAM9X60 Evaluation Kit](https://www.microchip.com/en-us/development-tool/dt100126)| 58 | | [sam9x75_ea_usb_host_getting_started](./apps_mpu/sam9x75_early_access_eval_board/sam9x75_ea_usb_host_getting_started/readme.md) | USB Host Getting Started Application | [SAM9X75](https://www.microchip.com/en-us/product/sam9x75) | [SAM9X75 Early Access Evaluation Board](https://www.microchip.com/en-us/development-tool/EA14J50A)| 59 | | [sama7g54_ek_blink_led_qspi_xip](./apps_mpu/sama7g54_ek/sama7g54_ek_blink_led_qspi_xip/readme.md) | Blink LED Application | [SAMA7G54](https://www.microchip.com/en-us/product/sama7g54) | [SAMA7G54 Evaluation Kit](https://www.microchip.com/en-us/development-tool/EV21H18A)| 60 | | [sama7g54_ek_ethernet_web_server_getting_started](./apps_mpu/sama7g54_ek/sama7g54_ek_ethernet_web_server_getting_started/readme.md) | Ethernet Web Server Getting Started Application | [SAMA7G54](https://www.microchip.com/en-us/product/sama7g54) | [SAMA7G54 Evaluation Kit](https://www.microchip.com/en-us/development-tool/EV21H18A)| 61 | 62 | 63 | ### Updated Applications 64 | 65 | | Application | Description | MCU | Development Board/Kit | Comment | 66 | | --- | --- | --- | --- | --- | 67 | | [sdcard_player](./apps/pic32mz_ef_curiosity_v2/sdcard_player/readme.md) | SD Card Audio Player Application | [PIC32MZ](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| Added display capability | 68 | | [same54_can_usb_bridge](./apps/sam_e54_xpro/same54_can_usb_bridge/readme.md) | CAN to USB bridge and CAN based NVM bootloader Host Applicatio | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Xplained Pro](https://www.microchip.com/developmenttools/productdetails/atsame54-xpro)| Updated to add host bootlaoder | 69 | 70 | 71 | ### Deleted Applications 72 | 73 | | Application | Description | Comment | 74 | | --- | --- | --- | 75 | | google_cloud_iot_core | Google Cloud IoT Core | Removed as the Google has discontinued cloud services. Alternative cloud demo on [AWS Cloud IoT Core](./apps/sam_d21_iot_v2/samiot2_aws_cloud_core/readme.md) and [Microsoft Azure Cloud IoT Core](./apps/sam_d21_iot_v2/samiot2_azure_cloud_core/readme.md)) is available| 76 | | samiot2_google_cloud_core | Google Cloud IoT Core | Removed as the Google has discontinued cloud services. Alternative cloud demo on [AWS Cloud IoT Core](./apps/sam_d21_iot_v2/samiot2_aws_cloud_core/readme.md) and [Microsoft Azure Cloud IoT Core](./apps/sam_d21_iot_v2/samiot2_azure_cloud_core/readme.md)) is available| 77 | | same51n_google_cloud_iot_core | Google Cloud IoT Core | Removed as the Google has discontinued cloud services. Alternative cloud demo on [AWS Cloud IoT Core](./apps/sam_d21_iot_v2/samiot2_aws_cloud_core/readme.md) and [Microsoft Azure Cloud IoT Core](./apps/sam_d21_iot_v2/samiot2_azure_cloud_core/readme.md)) is available| 78 | | pic32cmmc_smart_tag_google_cloud_iot_core | Smart Tag Google Cloud IoT Core | Removed as the Google has discontinued cloud services. Alternative cloud demo on [AWS Cloud IoT Core](./apps/sam_d21_iot_v2/samiot2_aws_cloud_core/readme.md) and [Microsoft Azure Cloud IoT Core]((./apps/sam_d21_iot_v2/samiot2_azure_cloud_core/readme.md)) is available| 79 | | same54_sdcard_usb_audio_player | SD Card USB Audio Player | Removed the demo. This would be added in a subsequent release on the v2 version of SAM E54 Curiosity Ultra Development Board | 80 | 81 | 82 | 83 | ### Known Issues 84 | - If you regenerate and build the AWS IoT applications, you could encounter a build error "wdrv_winc_enterprise.h: No such file or directory". This can be overcome by commenting the line of code "//#include "wdrv_winc_enterprise.h" in driver/winc/include/wdrv_winc_client_api.h file. This patch is applied due to a known issue in "wireless_wifi" repo. The issue is expected to be fixed in a future release of "wireless_wifi" repository. 85 | 86 | 87 | ### Development Tools 88 | - [MPLAB® X IDE v6.15](https://www.microchip.com/mplab/mplab-x-ide) 89 | - [MPLAB® XC32 C/C++ Compiler v4.30](https://www.microchip.com/mplab/compilers) 90 | - [IAR EWARM v9.40](https://www.iar.com/iar-embedded-workbench/#!?architecture=Arm) 91 | - MPLAB® X IDE plug-ins: 92 | - MPLAB Code Configurator (MCC) v5.3.7 93 | 94 | 95 | --- 96 | 97 | 98 | 99 | ## Reference Applications Release v1.5.0 (June 2022) 100 | 101 | - Removed MHC plugin configuration for all demo applications 102 | 103 | ### New Applications 104 | 105 | | Application | Description | MCU | Development Board/Kit | 106 | | --- | --- | --- | --- | 107 | | [saml21_ble_fitness_tracker](./apps/sam_l21_xpro/saml21_ble_fitness_tracker/readme.md) | BLE Fitness Tracker Application | [SAM L21](https://www.microchip.com/wwwproducts/en/ATSAML21J18B) | [SAM L21 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsaml21-xpro-b)| 108 | | [ble2](./apps/sam_e51_cnano/same51n_mikroe_click/ble2/readme.md) | MikroElektronika BLE 2 Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 109 | | [lr](./apps/sam_e51_cnano/same51n_mikroe_click/lr/readme.md) | MikroElektronika LR Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 110 | | [grid_eye](./apps/sam_e51_cnano/same51n_mikroe_click/grid_eye/readme.md) | MikroElektronika GRID EYE Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 111 | | [usb_spi](./apps/sam_e51_cnano/same51n_mikroe_click/usb_spi/readme.md) | MikroElektronika USB SPI Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 112 | | [pic32mk_mcm_curiosity_getting_started_ext](./apps/pic32mk_mcm_curiosity_pro/pic32mk_mcm_curiosity_getting_started_ext/readme.md) | Getting Started Extended Application | [PIC32MK](https://www.microchip.com/wwwproducts/en/PIC32MK1024MCM100) | [PIC32MK MCM Curiosity Pro Development Board](https://www.microchip.com/en-us/development-tool/EV31E34A)| 113 | | [saml22_sdcard_usb_slcd_datalogger](./apps/sam_l22_xpro/saml22_sdcard_usb_slcd_datalogger/readme.md) | SD Card, USB Data Logger | [SAM L22](https://www.microchip.com/wwwproducts/en/ATSAML22N18A) | [SAM L22 Xplained Pro Evaluation Kit](https://www.microchip.com/en-us/development-tool/atsaml22-xpro-b)| 114 | | [same54_can_usb_bridge](./apps/sam_e54_xpro/same54_can_usb_bridge/readme.md) | CAN USB bridge Application | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Xplained Pro](https://www.microchip.com/developmenttools/productdetails/atsame54-xpro)| 115 | 116 | ### Updated Applications 117 | 118 | - Updated applications for documentation errors, broken images and links. 119 | 120 | 121 | ### Known Issues 122 | - None 123 | 124 | ### Development Tools 125 | - [MPLAB® X IDE v6.00](https://www.microchip.com/mplab/mplab-x-ide) 126 | - [MPLAB® XC32 C/C++ Compiler v4.00](https://www.microchip.com/mplab/compilers) 127 | - [IAR EWARM v8.50](https://www.iar.com/iar-embedded-workbench/#!?architecture=Arm) 128 | - MPLAB® X IDE plug-ins: 129 | - MPLAB Code Configurator (MCC) v5.1.4 130 | 131 | 132 | --- 133 | ## Reference Applications Release v1.4.1 (March 2022) 134 | 135 | ### New Applications 136 | - N/A 137 | 138 | ### Updated Applications 139 | - Fixed images and hyperlink in [pic32cmmc_smart_tag_google_cloud_iot_core](./apps/pic32cm_mc00_cnano/pic32cmmc_smart_tag_google_cloud_iot_core/readme.md) and [same51n_google_cloud_iot_core](./apps/sam_e51_cnano/same51n_google_cloud_iot_core/readme.md) demo documentation. 140 | 141 | ### Known Issues 142 | - Same as v1.4.0 143 | 144 | ### Development Tools 145 | - Same as v1.4.0 146 | 147 | --- 148 | 149 | ## Reference Applications Release v1.4.0 (December 2021) 150 | 151 | - Added MCC support for all demo applications 152 | 153 | ### New Applications 154 | 155 | | Application | Description | MCU | Development Board/Kit | 156 | | --- | --- | --- | --- | 157 | | [pic32mzef_thermal_camera_heat_map](./apps/pic32mz_ef_curiosity_v2/pic32mzef_thermal_camera_heat_map/readme.md) | Thermal Camera based Heat Map Application | [PIC32MZ](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| 158 | | [pic32cmmc_smart_tag_google_cloud_iot_core](./apps/pic32cm_mc00_cnano/pic32cmmc_smart_tag_google_cloud_iot_core/readme.md) | Smart Tag Google Cloud IoT Core Application | [PIC32CM MC00](https://www.microchip.com/wwwproducts/en/PIC32CM1216MC00032) | [PIC32CM MC00 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV10N93A)| 159 | | [samd21_low_power](./apps/sam_d21_xpro/samd21_low_power/readme.md) | Low Power | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21J18A) | [SAM D21 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamd21-xpro)| 160 | | [samd21_sdcard_usb_datalogger](./apps/sam_d21_xpro/samd21_sdcard_usb_datalogger/readme.md) | SD Card, USB Data Logger | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21J18A) | [SAM D21 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamd21-xpro)| 161 | | [wifi_7](./apps/sam_e51_cnano/same51n_mikroe_click/wifi_7/readme.md) | MikroElektronika WIFI 7 Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 162 | | [oled_c](./apps/sam_e51_cnano/same51n_mikroe_click/oled_c/readme.md) | MikroElektronika OLED C Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 163 | | [usb_i2c](./apps/sam_e51_cnano/same51n_mikroe_click/usb_i2c/readme.md) | MikroElektronika USB I2C Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 164 | | [rfid](./apps/sam_e51_cnano/same51n_mikroe_click/rfid/readme.md) | MikroElektronika RFID Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 165 | 166 | ### Updated Applications 167 | 168 | | Application | Description | MCU | Development Board/Kit | Comment | 169 | | --- | --- | --- | --- | --- | 170 | | [pic32cmmc_smart_appliance_control](./apps/pic32cm_mc00_cnano/pic32cmmc_smart_appliance_control/readme.md) | Smart Appliance Control Application | [PIC32CM MC00](https://www.microchip.com/wwwproducts/en/PIC32CM1216MC00032) | [PIC32CM MC00 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV10N93A)| Added display capability | 171 | | [same54_getting_started_freertos](./apps/sam_e54_xpro/same54_getting_started_freertos/readme.md) | Getting Started with Harmony Drivers using FreeRTOS | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/productdetails/atsame54-xpro)| Updated hardware setup image | 172 | | [usb_uart](./apps/sam_e51_cnano/same51n_mikroe_click/usb_uart/readme.md) | MikroElektronika USB UART Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| Updated click interface APIs | 173 | | [pic32cmmc_getting_started](./apps/pic32cm_mc00_cnano/pic32cmmc_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [PIC32CM MC00](https://www.microchip.com/wwwproducts/en/PIC32CM1216MC00032) | [PIC32CM MC00 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV10N93A)| Updated hardware setup image | 174 | | [getting_started_ext](./apps/pic32mz_ef_curiosity_v2/getting_started_ext/readme.md) | Getting Started Extended using Harmony v3 Peripheral Libraries | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| Extended functionality to toggle LED3 on SW3 press | 175 | | [google_cloud_iot_core](./apps/sam_d21_iot/google_cloud_iot_core/readme.md) | Google Cloud IoT Core | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G18) | [SAM-IoT WG Development Board](https://www.microchip.com/DevelopmentTools/ProductDetails/EV75S95A)| AP mode support added and fixed clound connectivity issue | 176 | | [ble_weather_station](./apps/sam_d21_cnano/ble_weather_station/readme.md) | BLE based Weather Station and Motion Sensor Application on SAM D21 Curiosity Nano and Nano Base for Click boards | [SAMD 21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to use click rotunes | 177 | | [location_sos](./apps/sam_d21_cnano/location_sos/readme.md) | Location Tagged SOS using Curiosity Nano Base for click boards and GSM-GPS click |[SAMD 21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to use click routines | 178 | 179 | ### Deleted Applications 180 | 181 | | Application | Description | Comment | 182 | | --- | --- | --- | 183 | | pic32cmmc_temp_based_fan_control_oled_c | Temperature based Fan Speed Control with OLED C click display | Removed as the same functionality is provided by [Smart Appliance Control](./apps/pic32cm_mc00_cnano/pic32cmmc_smart_appliance_control/readme.md) demo | 184 | | msd_multiple_luns | USB MSD with Multiple Drives Application | Removed as the same functionality is provided in [MPLAB Harmony v3 USB apps repository](https://github.com/Microchip-MPLAB-Harmony/usb_apps_device/tree/master/apps/msd_multiple_luns) | 185 | 186 | 187 | 188 | 189 | ### Known Issues 190 | - None 191 | 192 | ### Development Tools 193 | - [MPLAB® X IDE v5.50](https://www.microchip.com/mplab/mplab-x-ide) 194 | - [MPLAB® XC32 C/C++ Compiler v3.01](https://www.microchip.com/mplab/compilers) 195 | - [IAR EWARM v8.50](https://www.iar.com/iar-embedded-workbench/#!?architecture=Arm) 196 | - MPLAB® X IDE plug-ins: 197 | - MPLAB Harmony 3 Launcher v3.6.4 198 | - MPLAB Harmony Configurator (MCC) v5.0.3 199 | 200 | 201 | --- 202 | 203 | 204 | ## Reference Applications Release v1.3.0 (June 2021) 205 | ### New Applications 206 | 207 | | Application | Description | MCU | Development Board/Kit | 208 | | --- | --- | --- | --- | 209 | | [same51n_google_cloud_iot_core](./apps/sam_e51_cnano/same51n_google_cloud_iot_core/readme.md) | Google Cloud IoT Core Application | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 210 | | [same54c_motion_surveillance](./apps/sam_e54_cult/same54c_motion_surveillance/readme.md) | Motion Surveillance Application | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Curiosity Ultra Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320210)| 211 | | [pic32cmmc_smart_appliance_control](./apps/pic32cm_mc00_cnano/pic32cmmc_smart_appliance_control/readme.md) | Smart Appliance Control Application | [PIC32CM MC00](https://www.microchip.com/wwwproducts/en/PIC32CM1216MC00032) | [PIC32CM MC00 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV10N93A)| 212 | | [10dof](./apps/sam_e51_cnano/same51n_mikroe_click/10dof/readme.md) | MikroElektronika 10DOF Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 213 | | [eeprom4](./apps/sam_e51_cnano/same51n_mikroe_click/eeprom4/readme.md) | MikroElektronika EEPROM 4 Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 214 | | [leddriver3](./apps/sam_e51_cnano/same51n_mikroe_click/leddriver3/readme.md) | MikroElektronika LED DRIVER 3 Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 215 | | [gsm_gps](./apps/sam_e51_cnano/same51n_mikroe_click/gsm_gps/readme.md) | MikroElektronika GSM-GPS Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 216 | | [pir](./apps/sam_e51_cnano/same51n_mikroe_click/pir/readme.md) | MikroElektronika PIR Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 217 | | [thumbstick](./apps/sam_e51_cnano/same51n_mikroe_click/thumbstick/readme.md) | MikroElektronika Thumbstick Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 218 | | [usb_uart](./apps/sam_e51_cnano/same51n_mikroe_click/usb_uart/readme.md) | MikroElektronika USB UART Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 219 | | [xpro_adapter](./apps/sam_e51_cnano/same51n_mikroe_click/xpro_adapter/readme.md) | MikroElektronika XPRO Adapter Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 220 | | [eink_bundle](./apps/sam_e51_cnano/same51n_mikroe_click/eink_bundle/readme.md) | MikroElektronika EINK Bundle Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 221 | | [fan](./apps/sam_e51_cnano/same51n_mikroe_click/fan/readme.md) | MikroElektronika Fan Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 222 | | [heartrate9](./apps/sam_e51_cnano/same51n_mikroe_click/heartrate9/readme.md) | MikroElektronika Heart Rate 9 Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 223 | | [ir_thermo2](./apps/sam_e51_cnano/same51n_mikroe_click/ir_thermo2/readme.md) | MikroElektronika IrThermo 2 Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 224 | | [weather](./apps/sam_e51_cnano/same51n_mikroe_click/weather/readme.md) | MikroElektronika Weather Click Board example | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 225 | | [same54_getting_started_freertos](./apps/sam_e54_xpro/same54_getting_started_freertos/readme.md) | Getting Started with Harmony Drivers using FreeRTOS | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/productdetails/atsame54-xpro)| 226 | | [samc21_getting_started_freertos](./apps/sam_c21_xpro/samc21_getting_started_freertos/readme.md) | Getting Started with Harmony Drivers using FreeRTOS | [SAM C21](https://www.microchip.com/wwwproducts/en/ATSAMC21N18A) | [SAM C21 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/ATSAMC21-XPRO)| 227 | 228 | ### Updated Applications 229 | 230 | | Application | Description | MCU | Development Board/Kit | Comment | 231 | | --- | --- | --- | --- | --- | 232 | | [snake_game](./apps/pic32mz_ef_curiosity_v2/snake_game/readme.md) | Snake Game | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| Removed video reference in readme | 233 | | [ack_bootloader](./apps/sam_d21_cnano/samd21_amazon_ack/bootloader/readme.md) | Amazon Alexa Connect Kit (ACK) OTA Bootloader | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to support ACK SDK v4.0 | 234 | | [ack_helloworld](./apps/sam_d21_cnano/samd21_amazon_ack/applications/HelloWorld/readme.md) | Amazon Alexa Connect Kit (ACK) Hello World | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to support ACK SDK v4.0 | 235 | | [ack_microwave](./apps/sam_d21_cnano/samd21_amazon_ack/applications/Microwave/readme.md) | Amazon Alexa Connect Kit (ACK) Microwave | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to support ACK SDK v4.0 | 236 | | [ack_smartlight](./apps/sam_d21_cnano/samd21_amazon_ack/applications/SmartLight/readme.md) | Amazon Alexa Connect Kit (ACK) SmartLight | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to support ACK SDK v4.0 | 237 | | [ack_dashreplenishment](./apps/sam_d21_cnano/samd21_amazon_ack/applications/DashReplenishment/readme.md) | Amazon Alexa Connect Kit (ACK) DashReplenishment | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to support ACK SDK v4.0 | 238 | | [google_cloud_iot_core](./apps/sam_d21_iot/google_cloud_iot_core/readme.md) | Google Cloud IoT Core | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G18) | [SAM-IoT WG Development Board](https://www.microchip.com/DevelopmentTools/ProductDetails/EV75S95A)| Updated to integrate CryptAuthLib, Harmony System service and WINC driver | 239 | | [fitness_tracker](./apps/sam_d21_cnano/fitness_tracker/readme.md) | Fitness Tracker | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to replace Heart rate 3 click board with Heart rate 9 click board | 240 | | [ble_fitness_tracker](./apps/sam_e51_cnano/ble_fitness_tracker/readme.md) | BLE Fitness Tracker | [SAM E51](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| Updated to replace Heart rate 3 click board with Heart rate 9 click board | 241 | | [pic32mzda_sdcard_usb_audio_player](./apps/pic32mz_da_curiosity/pic32mzda_sdcard_usb_audio_player/readme.md) | SD Card USB Audio Player | [PIC32MZ DA](https://www.microchip.com/wwwproducts/en/ATSAME51N20A) | [PIC32MZ DA Curiosity Development Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV87D54A)| Updated to support multiple bit rates, fixed display refresh rate. Removed unused Audio decoders (Adpcm and mp3) files | 242 | 243 | 244 | ### Deleted Applications 245 | 246 | | Application | Description | Comment | 247 | | --- | --- | --- | 248 | | audio_player_lab1 | Audio-Tone using a Lookup Table | Removed MEB-II based audio demo as hardware is matured | 249 | | audio_player_lab2 | Audio-Tone Application by reading the tone from a text file stored in an SD card | Removed MEB-II based audio demo as hardware is matured | 250 | | audio_player_lab3 | SD Card Reader and Audio-Tone Application by reading the tone from a text file stored in an SD card | Removed MEB-II based audio demo as hardware is matured | 251 | | audio_player_lab4 | SD Card Reader ".wav" Audio player | Removed MEB-II based audio demo as hardware is matured | 252 | | audio_player_lab5 | SD Card Audio Player/Reader with Aria Graphics | Removed MEB-II based audio demo as hardware is matured | 253 | 254 | 255 | ### Known Issues 256 | - None 257 | 258 | ### Development Tools 259 | 260 | * Refer demo specific documentation in folder "docs" to know the tools and Harmony 3 packages used. 261 | 262 | --- 263 | 264 | ## Reference Applications Release v1.2.0 (January 2021) 265 | ### New Applications 266 | 267 | | Application | Description | MCU | Development Board/Kit | 268 | | --- | --- | --- | --- | 269 | | [pic32cm_mc_curiosity_getting_started](./apps/pic32cm_mc00_curiosity_pro/pic32cm_mc_curiosity_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [PIC32CM MC00](https://www.microchip.com/wwwproducts/en/PIC32CM1216MC00048) | [PIC32CM MC Curiosity Pro Development Board](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV15N46A)| 270 | | [pic32cmmc_getting_started](./apps/pic32cm_mc00_cnano/pic32cmmc_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [PIC32CM MC00](https://www.microchip.com/wwwproducts/en/PIC32CM1216MC00032) | [PIC32CM MC00 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV10N93A)| 271 | | [pic32cmmc_temp_based_fan_control_oled_c](./apps/pic32cm_mc00_cnano/pic32cmmc_temp_based_fan_control_oled_c/readme.md) | Temperature based Fan Speed Control with OLED C click display | [PIC32CM MC00](https://www.microchip.com/wwwproducts/en/PIC32CM1216MC00032) | [PIC32CM MC00 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV10N93A)| 272 | | [getting_started_drivers_middleware](./apps/sam_e70_xpld/getting_started_drivers_middleware/readme.md) | Getting Started with Drivers and Middleware | [SAM E70](https://www.microchip.com/wwwproducts/en/ATSAME70Q21B) | [SAM E70 Xplained Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/ATSAME70-XPLD)| 273 | | [same54c_getting_started](./apps/sam_e54_cult/same54c_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Curiosity Ultra Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320210)| 274 | | [samd21_getting_started_freertos](./apps/sam_d21_xpro/samd21_getting_started_freertos/readme.md) | Getting Started with Harmony v3 Drivers using FreeRTOS | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21J18A) | [SAM D21 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamd21-xpro)| 275 | | [same51n_low_power_with_oled_c_click](./apps/sam_e51_cnano/same51n_low_power_with_oled_c_click/readme.md) | Low Power Application with OLED C Click | [SAME 51](https://www.microchip.com/wwwproducts/en/ATSAME51G18A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 276 | 277 | ### Updated Applications 278 | 279 | | Application | Description | MCU | Development Board/Kit | Comment | 280 | | --- | --- | --- | --- | --- | 281 | | [snake_game](./apps/pic32mz_ef_curiosity_v2/snake_game/readme.md) | Snake Game | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| Fixed image view issue in documentation | 282 | | [ack_bootloader](./apps/sam_d21_cnano/samd21_amazon_ack/bootloader/readme.md) | Amazon Alexa Connect Kit (ACK) OTA Bootloader | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to support ACK SDK v3.2 | 283 | | [ack_helloworld](./apps/sam_d21_cnano/samd21_amazon_ack/applications/HelloWorld/readme.md) | Amazon Alexa Connect Kit (ACK) Hello World | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to support ACK SDK v3.2 | 284 | | [ack_microwave](./apps/sam_d21_cnano/samd21_amazon_ack/applications/Microwave/readme.md) | Amazon Alexa Connect Kit (ACK) Microwave | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to support ACK SDK v3.2 | 285 | | [ack_smartlight](./apps/sam_d21_cnano/samd21_amazon_ack/applications/SmartLight/readme.md) | Amazon Alexa Connect Kit (ACK) SmartLight | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to support ACK SDK v3.2 | 286 | | [ack_dashreplenishment](./apps/sam_d21_cnano/samd21_amazon_ack/applications/DashReplenishment/readme.md) | Amazon Alexa Connect Kit (ACK) DashReplenishment | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| Updated to support ACK SDK v3.2 | 287 | | [google_cloud_iot_core](./apps/sam_d21_iot/google_cloud_iot_core/readme.md) | Google Cloud IoT Core | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G18) | [SAM-IoT WG Development Board](https://www.microchip.com/DevelopmentTools/ProductDetails/EV75S95A)| Update demo to support 32 character length password and SSID to support single space character | 288 | | [snake_game](./apps/pic32mz_ef_curiosity_v2/snake_game/readme.md) | Snake Game | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| Fixed image view issue in documentation | 289 | | [sdadc_conversion_interrupt](./apps/sam_c21n_xpro/sdadc_conversion_interrupt/readme.md) | SDADC Conversion Interrupt Mode | [SAM C21N](https://www.microchip.com/wwwproducts/en/ATSAMC21N18A) | [SAM C21N Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamc21n-xpro)| Updated documentation with reference application note link | 290 | | [sdadc_conversion_polling](./apps/sam_c21n_xpro/sdadc_conversion_polling/readme.md) | SDADC Conversion Polling Mode | [SAM C21N](https://www.microchip.com/wwwproducts/en/ATSAMC21N18A) | [SAM C21N Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamc21n-xpro)| Updated documentation with reference application note link | 291 | 292 | 293 | 294 | 295 | 296 | ### Known Issues 297 | 1. The application “sam_d21_iot/google_cloud_iot_core" is developed by applying a patch (available in folder "google_cloud_iot_core/firmware/app_patch”) to MPLAB Harmony v3. If you need to reconfigure or regenerate this demo using MHC, please refer the “Notes.txt” file under “google_cloud_iot_core/firmware/app_patch” folder. 298 | The patch is applied due to a known issue in the application. This issue is expected to be fixed in a future release of "reference_apps" repository. 299 | 2. The application “pic32mz_ef_curiosity_v2/wifi_rgb_easy_configuration" is developed by applying a patch (available in folder "wifi_rgb_easy_configuration/firmware/wifi_repo_patch”) to MPLAB Harmony v3. If you need to reconfigure or regenerate this demo using MHC, please refer the “Notes.txt” file under “wifi_rgb_easy_configuration/firmware/wifi_repo_patch” folder. 300 | The patch is applied due to a known issue in "wireless" repo. This issue is expected to be fixed in a future release of "wireless" repo. 301 | 3. The application demo "pic32mz_ef_sk_meb2/audio_player/audio_player_lab5" is developed using Aria Graphics library. From gfx v3.9.0 onwards Aria Graphics support is deprecated and archived in a separate gfx_aria v3.7.1 repo. If you wish to regenerate this demo, follow the notes mentioned in "Software/Tools Used" section in [readme](./apps/pic32mz_ef_sk_meb2/audio_player/audio_player_lab5/readme.md) for audio_player_lab5. 302 | 303 | 304 | ### Development Tools 305 | 306 | * Refer demo specific documentation in folder "docs" to know the tools and Harmony 3 packages used. 307 | 308 | --- 309 | 310 | ## Reference Applications Release v1.1.0 (September 2020) 311 | ### New Applications 312 | 313 | | Application | Description | MCU | Development Board/Kit | 314 | | --- | --- | --- | --- | 315 | | [google_cloud_iot_core](./apps/sam_d21_iot/google_cloud_iot_core/readme.md) | Google Cloud IoT Core | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G18) | [SAM-IoT WG Development Board](https://www.microchip.com/DevelopmentTools/ProductDetails/EV75S95A)| 316 | | [same51n_getting_started](./apps/sam_e51_cnano/same51n_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [SAME 51](https://www.microchip.com/wwwproducts/en/ATSAME51G18A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 317 | | [ble_fitness_tracker](./apps/sam_e51_cnano/ble_fitness_tracker/readme.md) | BLE Fitness Tracker | [SAME 51](https://www.microchip.com/wwwproducts/en/ATSAME51G18A) | [SAM E51 Curiosity Nano Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/EV76S68A)| 318 | | [pic32mzda_getting_started](./apps/pic32mz_da_curiosity/pic32mzda_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [PIC32MZ DA](https://www.microchip.com/wwwproducts/en/PIC32MZ2064DAR176) | [Curiosity PIC32MZ DA Development Board]()| 319 | | [pic32mzda_sdcard_usb_audio_player](./apps/pic32mz_da_curiosity/pic32mzda_sdcard_usb_audio_player/readme.md) | SD Card USB Audio Player | [PIC32MZ DA](https://www.microchip.com/wwwproducts/en/PIC32MZ2064DAR176) | [Curiosity PIC32MZ DA Development Board]()| 320 | | [ack_bootloader](./apps/sam_d21_cnano/samd21_amazon_ack/bootloader/readme.md) | Amazon Alexa Connect Kit (ACK) OTA Bootloader | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 321 | | [ack_helloworld](./apps/sam_d21_cnano/samd21_amazon_ack/applications/HelloWorld/readme.md) | Amazon Alexa Connect Kit (ACK) Hello World | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 322 | | [ack_microwave](./apps/sam_d21_cnano/samd21_amazon_ack/applications/Microwave/readme.md) | Amazon Alexa Connect Kit (ACK) Microwave | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 323 | | [ack_smartlight](./apps/sam_d21_cnano/samd21_amazon_ack/applications/SmartLight/readme.md) | Amazon Alexa Connect Kit (ACK) SmartLight | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 324 | | [ack_dashreplenishment](./apps/sam_d21_cnano/samd21_amazon_ack/applications/DashReplenishment/readme.md) | Amazon Alexa Connect Kit (ACK) DashReplenishment | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 325 | | [pic18f_to_samd21_migration](./apps/sam_d21_cnano/pic18f_to_samd21_migration/readme.md) | Application migration from 8-bit PIC18F to 32-bit SAM D21 | [SAMD 21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 326 | | [atmega4809_to_samd21_migration](./apps/sam_d21_cnano/atmega4809_to_samd21_migration/readme.md) | Application migration from 8-bit PIC18F to 32-bit SAM D21 | [SAMD 21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 327 | | [wifi_rgb_easy_configuration](./apps/pic32mz_ef_curiosity_v2/wifi_rgb_easy_configuration/readme.md) | WiFi based RGB LED Control | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| 328 | | [snake_game](./apps/pic32mz_ef_curiosity_v2/snake_game/readme.md) | Snake Game | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| 329 | | [same54_vending_machine](./apps/sam_e54_xpro/same54_vending_machine/readme.md) | Vending Machine | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Xplained Pro Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/ATSAME54-XPRO)| 330 | | [same54_low_power](./apps/sam_e54_xpro/same54_low_power/readme.md) | Low Power | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Xplained Pro Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/ATSAME54-XPRO)| 331 | | [samd21_ac_sleepwalk_singleshot_gcc](./apps/sam_d21_xpro/samd21_ac_sleepwalk_singleshot_gcc/readme.md) | AC Sleepwalking Application built with GCC Toolchain | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21J18A) | [SAM D21 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamd21-xpro)| 332 | | [sdadc_conversion_interrupt](./apps/sam_c21n_xpro/sdadc_conversion_interrupt/readme.md) | SDADC Conversion Interrupt Mode | [SAM C21N](https://www.microchip.com/wwwproducts/en/ATSAMC21N18A) | [SAM C21N Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamc21n-xpro)| 333 | | [sdadc_conversion_polling](./apps/sam_c21n_xpro/sdadc_conversion_polling/readme.md) | SDADC Conversion Polling Mode | [SAM C21N](https://www.microchip.com/wwwproducts/en/ATSAMC21N18A) | [SAM C21N Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamc21n-xpro)| 334 | | [same54_sdcard_usb_audio_player](./apps/sam_e54_cult/same54_sdcard_usb_audio_player/readme.md) | SD Card USB Audio Player | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Curiosity Ultra Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320210)| 335 | | [same54_uart_live_update](./apps/sam_e54_cult/same54_uart_live_update/readme.md) | Live Update | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Curiosity Ultra Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320210)| 336 | | [saml11_trustzone_getting_started](./apps/sam_l11_xpro/saml11_trustzone_getting_started/readme.md) | TrustZone Getting Started | [SAM L11](https://www.microchip.com/wwwproducts/en/ATSAML11E16A) | [SAML11 Xplained Pro Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/dm320205)| 337 | 338 | ### Updated Applications 339 | - NA - 340 | 341 | ### Known Issues 342 | 1. The application “sam_d21_iot/google_cloud_iot_core" is developed by applying a patch (available in folder "google_cloud_iot_core/firmware/app_patch”) to MPLAB Harmony v3. If you need to reconfigure or regenerate this demo using MHC, please refer the “Notes.txt” file under “google_cloud_iot_core/firmware/app_patch” folder. 343 | The patch is applied due to a known issue in the application. This issue is expected to be fixed in a future release of "reference_apps" repository. 344 | 2. The application “sam_d21_cnano/ble_weather_station" is developed by applying a patch (available in folder "ble_weather_station/firmware/app_patch”) to MPLAB Harmony v3. If you need to reconfigure or regenerate this demo using MHC, please refer the “Notes.txt” file under “ble_weather_station/firmware/app_patch” folder. 345 | The patch is applied due to a known issue in "bt" repo and in the application. This issue is expected to be fixed in a future release of "reference_apps" repository and "bt" repository. 346 | 3. The application “sam_e51_cnano/ble_weather_station" is developed by applying a patch (available in folder "ble_fitness_tracker/firmware/app_patch”) to MPLAB Harmony v3. If you need to reconfigure or regenerate this demo using MHC, please refer the “Notes.txt” file under “ble_fitness_tracker/firmware/app_patch” folder. 347 | The patch is applied due to a known issue in "bt" repo and in the application. This issue is expected to be fixed in a future release of "reference_apps" repository and "bt" repository. 348 | 4. The application “pic32mz_ef_curiosity_v2/snake_game" is developed by applying a patch (available in folder "snake_game/firmware/gfx_ssd_driver_patch”) to MPLAB Harmony v3 “gfx” repository. If you need to reconfigure or regenerate this demo using MHC, please refer the “Notes.txt” file under “snake_game/firmware/gfx_ssd_driver_patch” folder. 349 | The patch is applied due to a known issue in "gfx" repo v3.7.0. This issue is expected to be fixed in a future release of "gfx” repository. 350 | 5. The application demos “pic32mz_ef_curiosity_v2/snake_game", "pic32mz_da_curiosity/pic32mzda_sdcard_usb_audio_player", "sam_e54_cult/same54_sdcard_usb_audio_player" and "pic32mz_ef_sk_meb2/audio_player/audio_player_lab5" having Graphics features are developed using Graphics library "gfx" v3.7.0. These demos could version incompatibility when regenerated with a higher version of "gfx" repo. This limitation is expected to be fixed in a future release of "reference_apps” repository. 351 | 352 | ### Development Tools 353 | 354 | * Refer demo specific documentation in folder "docs" to know the tools and Harmony 3 packages used. 355 | 356 | --- 357 | 358 | ## Reference Applications Release v1.0.0 (June 2020) 359 | ### New Applications 360 | 361 | The following table provides the list of new applications: 362 | 363 | | Application | Description | MCU | Development Board/Kit | 364 | | --- | --- | --- | --- | 365 | | [samd21n_getting_started](./apps/sam_d21_cnano/samd21n_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [SAMD 21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 366 | | [fitness_tracker](./apps/sam_d21_cnano/fitness_tracker/readme.md) | Fitness Tracker using Curiosity Nano Base for click boards, Heart Rate 3 click and EINK CLICK BUNDLE | [SAMD 21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 367 | | [location_sos](./apps/sam_d21_cnano/location_sos/readme.md) | Location Tagged SOS using Curiosity Nano Base for click boards and GSM-GPS click |[SAMD 21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 368 | | [ble_weather_station](./apps/sam_d21_cnano/ble_weather_station/readme.md) | BLE based Weather Station and Motion Sensor Application on SAM D21 Curiosity Nano and Nano Base for Click boards | [SAMD 21](https://www.microchip.com/wwwproducts/en/ATSAMD21G17) | [SAM D21 Curiosity Nano Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320119)| 369 | | [pic32mzef_getting_started](./apps/pic32mz_ef_curiosity_v2/pic32mzef_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| 370 | | [getting_started_ext](./apps/pic32mz_ef_curiosity_v2/getting_started_ext/readme.md) | Getting Started Extended using Harmony v3 Peripheral Libraries | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| 371 | | [getting_started_middleware](./apps/pic32mz_ef_curiosity_v2/getting_started_middleware/readme.md) | Getting Started Application using Harmony v3 Drivers, System Services, Middleware and FreeRTOS | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| 372 | | [msd_multiple_luns](./apps/pic32mz_ef_curiosity_v2/msd_multiple_luns/readme.md) | USB MSD with Multiple Drives | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| 373 | | [sdcard_player](./apps/pic32mz_ef_curiosity_v2/sdcard_player/readme.md) | SD Card Audio Player | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [Curiosity PIC32MZ EF 2.0 Development Board](https://www.microchip.com/Developmenttools/ProductDetails/DM320209)| 374 | | [saml10_getting_started](./apps/sam_l10_xpro/saml10_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [SAM L10](https://www.microchip.com/wwwproducts/en/ATSAML10E16A) | [SAM L10 Xplained Pro Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320204)| 375 | | [saml10_low_power](./apps/sam_l10_xpro/saml10_low_power/readme.md) | Low Power | [SAM L10](https://www.microchip.com/wwwproducts/en/ATSAML10E16A) | [SAM L10 Xplained Pro Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/dm320204)| 376 | | [saml21_low_power](./apps/sam_l21_xpro/saml21_low_power/readme.md) | Low Power | [SAM L21](https://www.microchip.com/wwwproducts/en/ATSAML21J18B) | [SAM L21 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsaml21-xpro-b)| 377 | | [samc21_low_power](./apps/sam_c21_xpro/samc21_low_power/readme.md) | Low Power | [SAM C21](https://www.microchip.com/wwwproducts/en/ATSAMC21J18A) | [SAM C21 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamc21-xpro)| 378 | | [same70_getting_started](./apps/sam_e70_xult/same70_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [SAM E70](https://www.microchip.com/wwwproducts/en/ATSAME70Q21B) | [SAM E70 Xplained Ultra Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320113)| 379 | | [getting_started_drv](./apps/sam_e70_xult/getting_started_drv/readme.md) | Getting Started using Harmony v3 Drivers | [SAM E70](https://www.microchip.com/wwwproducts/en/ATSAME70Q21B) | [SAM E70 Xplained Ultra Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320113)| 380 | | [getting_started_freertos](./apps/sam_e70_xult/getting_started_freertos/readme.md) | Getting Started using Harmony v3 Drivers and FreeRTOS | [SAM E70](https://www.microchip.com/wwwproducts/en/ATSAME70Q21B) | [SAM E70 Xplained Ultra Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320113)| 381 | | [qspi_xdmac_read_write](./apps/sam_e70_xult/qspi_xdmac_read_write/readme.md) | XDMAC with QSPI | [SAM E70](https://www.microchip.com/wwwproducts/en/ATSAME70Q21B) | [SAM E70 Xplained Ultra Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320113)| 382 | | [ftp_bootloader](./apps/sam_e70_xult/ftp_bootloader/readme.md) | Ethernet bootloader - File Transfer Protocol | [SAM E70](https://www.microchip.com/wwwproducts/en/ATSAME70Q21B) | [SAM E70 Xplained Ultra Evaluation Kit](https://www.microchip.com/Developmenttools/ProductDetails/DM320113)| 383 | | [same54_getting_started](./apps/sam_e54_xpro/same54_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Xplained Pro Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/ATSAME54-XPRO)| 384 | | [sleepwalking](./apps/sam_e54_xpro/sleepwalking/readme.md) | SleepWalking | [SAM E54](https://www.microchip.com/wwwproducts/en/ATSAME54P20A) | [SAM E54 Xplained Pro Evaluation Kit](https://www.microchip.com/DevelopmentTools/ProductDetails/ATSAME54-XPRO)| 385 | | [samd21_getting_started](./apps/sam_d21_xpro/samd21_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [SAM D21](https://www.microchip.com/wwwproducts/en/ATSAMD21J18A) | [SAM D21 Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamd21-xpro)| 386 | | [samc21n_getting_started](./apps/sam_c21n_xpro/samc21n_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [SAM C21N](https://www.microchip.com/wwwproducts/en/ATSAMC21N18A) | [SAM C21N Xplained Pro Evaluation Kit](https://www.microchip.com/developmenttools/ProductDetails/atsamc21n-xpro)| 387 | | [pic32mk_getting_started](./apps/pic32mk_gp_db/pic32mk_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [PIC32MK](https://www.microchip.com/wwwproducts/en/PIC32MK1024GPE100) | [PIC32MK General Purpose (GP) Development Board](http://www.microchip.com/DevelopmentTools/ProductDetails.aspx?PartNO=DM320106)| 388 | | [pic32mx470_getting_started](./apps/pic32mx470_curiosity/pic32mx470_getting_started/readme.md) | Getting Started using Harmony v3 Peripheral Libraries | [PIC32MX](https://www.microchip.com/wwwproducts/en/PIC32MX470F512H) | [Curiosity PIC32MX470 Development Board](http://www.microchip.com/DevelopmentTools/ProductDetails.aspx?PartNO=DM320103)| 389 | | [audio_player_lab1](./apps/pic32mz_ef_sk_meb2/audio_player/audio_player_lab1/readme.md) | Audio-Tone using a Lookup Table | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [PIC32MZ Embedded Connectivity with FPU Starter Kit](http://www.microchip.com/Developmenttools/ProductDetails.aspx?PartNO=DM320007) + [Multimedia Expansion Board II](https://www.microchip.com/DevelopmentTools/ProductDetails/DM320005-5)| 390 | | [audio_player_lab2](./apps/pic32mz_ef_sk_meb2/audio_player/audio_player_lab2/readme.md) | Audio-Tone Application by reading the tone from a text file stored in an SD card | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [PIC32MZ Embedded Connectivity with FPU Starter Kit](http://www.microchip.com/Developmenttools/ProductDetails.aspx?PartNO=DM320007) + [Multimedia Expansion Board II](https://www.microchip.com/DevelopmentTools/ProductDetails/DM320005-5)| 391 | | [audio_player_lab3](./apps/pic32mz_ef_sk_meb2/audio_player/audio_player_lab3/readme.md) | SD Card Reader and Audio-Tone Application by reading the tone from a text file stored in an SD card | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [PIC32MZ Embedded Connectivity with FPU Starter Kit](http://www.microchip.com/Developmenttools/ProductDetails.aspx?PartNO=DM320007) + [Multimedia Expansion Board II](https://www.microchip.com/DevelopmentTools/ProductDetails/DM320005-5)| 392 | | [audio_player_lab4](./apps/pic32mz_ef_sk_meb2/audio_player/audio_player_lab4/readme.md) | SD Card Reader ".wav" Audio player | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [PIC32MZ Embedded Connectivity with FPU Starter Kit](http://www.microchip.com/Developmenttools/ProductDetails.aspx?PartNO=DM320007) + [Multimedia Expansion Board II](https://www.microchip.com/DevelopmentTools/ProductDetails/DM320005-5)| 393 | | [audio_player_lab5](./apps/pic32mz_ef_sk_meb2/audio_player/audio_player_lab5/readme.md) | SD Card Audio Player/Reader with Aria Graphics | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [PIC32MZ Embedded Connectivity with FPU Starter Kit](http://www.microchip.com/Developmenttools/ProductDetails.aspx?PartNO=DM320007) + [Multimedia Expansion Board II](https://www.microchip.com/DevelopmentTools/ProductDetails/DM320005-5)| 394 | | [pic32mz_uart_live_update](./apps/pic32mz_ef_sk/pic32mz_uart_live_update/readme.md) | Live update on PIC32MZ | [PIC32MZ EF](https://www.microchip.com/wwwproducts/en/PIC32MZ2048EFM144) | [PIC32MZ Embedded Connectivity with FPU Starter Kit](http://www.microchip.com/Developmenttools/ProductDetails.aspx?PartNO=DM320007)| 395 | 396 | ### Updated Applications 397 | - NA - 398 | 399 | ### Known Issues 400 | 1. The demo “pic32mz_ef_sk_meb2/audio_player/audio_player_lab5” is developed by applying a patch (available in folder “audio_player_lab5/firmware/gfx_repo_patch”) to the MPLAB Harmony v3 “gfx” repository. If you need to reconfigure or regenerate this demo using the MHC, please refer the “Notes.txt” file under audio_player_lab5/firmware/gfx_repo_patch” folder. 401 | The patch is applied due to a known issue with MHC v3.5.0 for Aria GAC Code Generation. This issue is expected to be fixed in gfx release v3.7.0. 402 | 2. The application “pic32mz_ef_curiosity_v2/msd_multiple_luns” is developed by by applying a patch (available in folder “msd_multiple_luns/firmware/usb_repo_patch”) to MPLAB Harmony v3 “usb” repository. If you need to reconfigure or regenerate this demo using MHC, please refer the “Notes.txt” file under “msd_multiple_luns/firmware/usb_repo_patch” folder. 403 | The patch is applied due to a known issue with MHC v3.5.0 for USB Code Generation for this demo application. 404 | This issue is expected to be fixed in a future release of "usb” repository. 405 | 406 | 407 | ### Development Tools 408 | 409 | * Refer demo specific documentation in folder "docs" to know the tools and Harmony 3 packages used. 410 | --------------------------------------------------------------------------------