MPLAB® Harmony v3 Peripheral Libraries on SAMC2x: Step 3

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

Configure Pins for Switch and LED

Configure the switch button pin with EIC

In the Plugins, select the Pin Settings tab and then scroll down to 67 in the Pin Number column and configure the PORT pin PB19 as an external interrupt pin for switch functionality as shown in the accompanying image. The internal pull-up is enabled to avoid false edge detection as there is no external pull-up on the SAMC21N Xplained Pro Evaluation Kit.

Pin Settings tab

Select the Project Graph tab.

Add the External Interrupt Controller (EIC) to the project.
Under the left side tab, Resource Management (MCC), go to Device Resources and expand Libraries > Harmony > Peripherals > EIC.
Select and double-click on EIC to add the EIC module to the project.

EIC Peripheral

Configure the EIC block to generate an interrupt every time the user presses the switch SW0 as shown in the accompanying image, and enable debounce functionality to avoid debouncing on the switch pin.

Configuration Options pane

Back to Top


Configure LED Pin

Select the MPLAB® Code Configurator (MCC) Pin Settings tab and then scroll down to 21 in the Pin Number column and configure the PORT pin PC05 as an output pin for LED functionality as shown in the accompanying image.

Pin Settings tab

Note: The LED on the SAMC21N Xplained Pro board is active low. Configure the LED in default OFF state by configuring the latch value to logic High.

Back to Top


Rename the default main file

Under the Project Graph tab, click on System and configure as shown to give a name of your liking to the default template main file generated by MCC.

Project Graph tab System

Note: The name of the default main.c is changed to main_c21n.c to indicate that the referred main.c is for the SAM C2x getting started training module.

Back to Top