Low Power Application on PIC32CM LE00 Using MPLAB® Harmony v3 Peripheral Libraries: Step 2
Configure RTC Peripheral Library
Click on the Resource Management [MCC] tab, In the Device Resources, expand Peripherals > RTC.
Double-click, or drag and drop, RTC to add the RTC peripheral library (PLIB) to the project graph.
Verify that the RTC clock is set to run at 1 kHz using the 1 kHz Ultra Low Power Internal Oscillator (OSCULP1K).
Go back to the project graph and configure the RTC PLIB to generate a compare interrupt every 500 milliseconds.
{{top/}}
Configure I²C Peripheral Library, I²C Pins, and Verify I²C Clock
Configure I²C Peripheral
Click on the Resource Management [MCC] tab, In the Device Resources, expand Peripherals > SERCOM.
Double-click on SERCOM5, or drag and drop, to add the SERCOM instance 5 to the project.
Select the SERCOM 5 peripheral library and configure it for the I²C protocol:
Configure I²C Pins
Open the Pin Configuration tab by clicking Project Graph > Plugins > Pin Configuration.
Once the MCC Pin Settings window is opened, find the Order drop-down list, and select Pins to sort the entries by port names.
Now, select the MCC Pin Table tab and then scroll down to the SERCOM5 module as shown:
- Enable I²C data (I2C_SDA) on PB30 (pin #95)
- Enable I²C clock (I2C_SCL) on PB31 (pin #96)
Go back to the Pin Settings table and customize the PB30 and PB31 pins names as listed:
- Pin ID: PB30
- Custom Name: I2C_SDA
- Pin ID: PB31
- Custom Name: I2C_SCL
Verify I²C Clock
Open the Clock Configuration tab by clicking Project Graph > Plugins > Clock Configuration.
Open the Peripheral Clock Configuration tab by clicking on the button in the Peripheral Clock Selection.
Once the window is opened, scroll down to the SERCOM5_CORE peripheral and select GCLK1 (1 MHz) as the source clock to generate the peripheral clock frequency.
Configure USART Peripheral Library, USART Pins, and Verify USART Clock
Configure USART Peripheral
Under the left tab Resource Management (MCC), go to Device Resources and expand Libraries > Harmony > Peripherals > SERCOM.
Double-click on SERCOM3, or drag and drop, to add SERCOM instance 3 to the project.
Under the Resource Management (MCC) tab, go to Device Resources, expand Libraries > Harmony > Tools, and double-click on STDIO, or drag and drop, to add the STDIO tool to the project.
Connect the SERCOM3 USART output to the STDIO USART input.
Select the SERCOM 3 peripheral library in the Project Graph and configure it for USART protocol.
Configure USART Pins
Open the Pin Configuration tab by clicking Project Graph > Plugins > Pin Configuration.
Now, select the MCC Pin Table tab and then scroll down to the SERCOM3 module as listed:
- Enable USART Transmit (SERCOM3_TX) on PB20 (pin #68)
- Enable USART Receive (SERCOM3_RX) on PB21 (pin #69)
Go back to the Pin Settings table and customize the PB20 and PB21 pins names as indicated:
- Pin ID: PB20
- Custom Name: SERCOM3_TX
- Pin ID: PB21
- Custom Name: SERCOM3_RX
Verify USART Clock
Open the Clock Configuration tab by clicking Project Graph > Plugins > Clock Configuration.
Open the Peripheral Clock Configuration tab by clicking on the button in the Peripheral Clock Selection.
Once the window is opened, scroll down to the SERCOM3_CORE peripheral and select GCLK1 (1 MHz) as the source clock to generate the peripheral clock frequency.
Configure DMA Peripheral Library
Open the DMA Configuration tabs by clicking Project Graph > Plugins > 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 the 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 SPI peripheral is configured for 16-bit/32-bit mode, then the beat size must be set to 16/32 bits respectively.
- Enable Interrupts: In this Tab, SERCOM3 (as USART) Interrupt is enabled.