Migrating ASF SAM C21 Application to MPLAB® Harmony v3 PIC32CM MC: Step 2

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

Procedure

Configure I²C Peripheral Library and I²C Pins

Click on the Resource Management [MCC] tab, In the Device Resources, expand Peripherals > SERCOM.

Double-click on SERCOM2 to add the SERCOM instance 2 to the project.

sercom selection

Select the SERCOM 2 Peripheral Library and configure it for the I²C protocol.

sercom setup

  • The SERCOM2 (as I²C) retains the default 100 kHz speed because the temperature sensor chip on the I/O1 Xplained Pro Extension Kit can operate at 100 kHz I²C speed.
  • The SERCOM2 (as I²C) retains the default 50-100 nanoseconds hold time for Serial Data (SDA) Hold Time because it aligns with the minimum (50 nanoseconds) start hold time in the specification of the temperature sensor chip (AT30TSE758).
  • The SERCOM2 (as I²C) retains the default 100 nanoseconds for I2C Trise time because it aligns with the maximum (300 nanoseconds) input rise time in the specification of the temperature sensor chip (AT30TSE758).

Open the Pin Configuration tab by clicking Project Graph > Plugins > Pin Configuration.

open pin configuration

Select the MPLAB Code Configurator (MCC) Pin Settings tab and sort the entries by Ports.

Pin Settings window

Now, select the MCC Pin Table tab and then scroll down to the SERCOM2 module as follows.

  • Enable I²C Clock (I2C_SCK)(SERCOM2_PAD1) on Pin #22 (PA13)

  • Enable I²C Data (I2C_SDA)(SERCOM2_PAD0) on Pin #21 (PA12)

sercom pins setup

When a peripheral is added to the project, the peripheral clock is automatically fed by the GCLK0.

This completes the configuration of the I²C peripheral library. The application code will use the I²C PLIB Application Programming Interfaces (APIs) to read the temperature from the temperature sensor.


Configure Universal Synchronous Asynchronous Receiver Transmitter (USART) Peripheral Library, USART Pins, and link STDIO Library

Click on the Resource Management [MCC] tab, In the Device Resources, expand Peripherals > SERCOM.

Double-click on SERCOM0 to add the SERCOM instance 0 to the project.

sercom selection for uart

Associate STDIO tool with SERCOM instance 0 (USART) peripheral by right-clicking on the yellow diamond.

stdio selection

stdio linked

Select the SERCOM0 Peripheral Library in the Project Graph, verify default SERCOM Operation Mode configuration is set as USART and configure it.

uart sercom setup

Select the Pin Table tab and then scroll down to the SERCOM0 module as follows.

  • Enable USART_TX (SERCOM0_PAD2) on Pin #11 (PA06)

  • Enable USART_RX (SERCOM0_PAD3) on Pin #12 (PA07)

uart sercom pins setup

Back to Top