Low Power Application on SAM L10 Using MPLAB® Harmony v3 Peripheral Libraries: Step 2
Configure Real-Time Clock (RTC) Peripheral Library
Under the bottom left Device Resources tab, expand Harmony > Peripherals > RTC.
Double-click or drag and drop RTC to add the RTC Peripheral Library (PLIB) to the project graph.
In Clock Easy View, verify the RTC clock is set to run at 1 kHz internal ultra-low-power clock.
When a module is added to the project graph, MPLAB® Harmony Configurator (MHC) automatically enables the clock to the module. The default RTC clock source is an internal 1 kHz ultra-low-power clock (OSCULP1K).
Go back to the project graph and configure the RTC PLIB to generate a compare interrupt every 500 milliseconds.
Configure I²C Peripheral Library, I²C Pins, and Verify I²C Clock
Under the Device Resources tab, expand Harmpony > Peripherals > SERCOM.
Double-click on SERCOM1 to add the SERCOM instance 1 to the project.
Select the SERCOM 1 Peripheral Library and configure it for the I²C protocol.
Open the Pin Configuration tab by clicking MHC > Tools > Pin Configuration.
Select the Pin Settings tab and sort the entries by Ports names.
Now, select the Pin Table tab and then scroll down to the SERCOM1 module as follows:
- Enable I²C Clock (TWI_SCL)(SERCOM1_PAD1) on PA17 (Pin #18)
- Enable I²C Data (TWI_SDA)(SERCOM1_PAD0) on PA16 (Pin #17)
In Clock Easy View, open the Peripheral Clock Configuration by clicking on the button Peripheral Clock Configuration.
Once the window is opened, scroll down to the SERCOM1_CORE peripheral and select GCLK0 (12 MHz) as the source clock to generate the peripheral clock frequency.
Configure Universal Synchronous Asynchronous Receiver Transmitter (USART) Peripheral Library, USART Pins, and Verify USART Clock
Under the tab Device Resources tab, expand Harmony > Peripherals > SERCOM.
Double-click on SERCOM0 to add the SERCOM instance 0 to the project.
Associate STDIO tool with SERCOM instance 0 (USART) peripheral by right-clicking on the yellow diamond.
Select the SERCOM0 Peripheral Library in the Project Graph, verify default SERCOM Operation Mode configuration is set as USART, and configure it.
Verify the default baud rate is set to 115200 Hz.
Select the Pin Table tab and then scroll down to the SERCOM0 module as follows.
- Enable USART_TX (SERCOM0_PAD2) on PA24 (Pin #23)
- Enable USART_RX (SERCOM0_PAD3) on PA25 (Pin #24)
In Clock Easy View, open the Peripheral Clock Configuration by clicking on the button Peripheral Clock Configuration.
Once the window is opened, scroll down to the SERCOM0_CORE peripheral and select GCLK0 (12 MHz) as the source clock to generate the peripheral clock frequency.
Configure DMA Peripheral Library
Launch DMA Configurator by going to the MHC tab in MPLAB X IDE and then selecting Tools > DMA Configuration.
Click on the DMA Settings tab. Configure DMA Channel 0 to transfer the application buffer to the USART TX register. The DMA transfers one byte from the user buffer to the USART transmit buffer on each trigger.
Based on the trigger source, the DMA channel configuration is automatically set by MCC.
- Trigger Action: Action taken by DMA on receiving a trigger.
- One beat transfer: Generally used during a memory-to-peripheral or peripheral-to-memory transfer.
- One block transfer: Generally used during the memory-to-memory transfer on a software trigger.
- Source Address Mode, Destination Address Mode: Select whether to increment Source/Destination Address after every transfer. Automatically set by MCC based on the trigger type. For example:
- If the trigger source is USART transmit, then the Source Address is incremented, and the Destination Address is fixed.
- If the trigger source is USART receive, then the Source Address is fixed, and the Destination Address is incremented.
- Beat Size: Size of one beat. The default value is 8-bits. For example:
- If the Serial Peripheral Interface (SPI) peripheral is configured for 16-bit/32-bit mode, then the beat size must be set to 16-bits/32-bits respectively.
Click on Add Channel to add the DMA channel and configure the DMA channel.