TWIHS EEPROM read write
This example shows how to use the TWIHS peripheral to write and read from the I2C serial EEPROM memory.
Description
This example uses the TWIHS peripheral library to write an array of values to the I2C Serial EEPROM and verify the value written by reading the values back and comparing it to the value written.
Downloading and building the application
To clone or download this application from Github, go to the main page of this repository and then click Clone button to clone this repository or download as zip file. This content can also be downloaded using content manager by following these instructions.
Path of the application within the repository is apps/twihs/master/twihs_eeprom/firmware .
To build the application, refer to the following table and open the project using its IDE.
Project Name | Description |
---|---|
sam_e70_xult.X | MPLABX or IAR Project for SAM E70 Xplained Ultra board |
sam_v71_xult.X | MPLABX Project for SAM V71 Xplained Ultra board |
Setting up the hardware
The following table shows the target hardware for the application projects.
Project Name | Board |
---|---|
sam_e70_xult.X | SAM E70 Xplained Ultra board |
sam_v71_xult.X | SAM V71 Xplained Ultra board |
Setting up SAM E70 Xplained Ultra board
- Connect the Debug USB port on the board to the computer using a micro USB cable
- If this application is used for communicating with apps/twihs/slave/i2c_eeprom_emulation application, then connect TWIHS SDA line on Pin 11 (PA03) of EXT1 connector and TWIHS SCL line on Pin 12 (PA04) of EXT1 connector with the corresponding SDA and SCL lines of the TWIHS slave
Setting up SAM V71 Xplained Ultra board
- Connect the Debug USB port on the board to the computer using a micro USB cable
- If this application is used for communicating with apps/twihs/slave/i2c_eeprom_emulation application, then connect TWIHS SDA line on Pin 11 (PA03) of EXT1 connector and TWIHS SCL line on Pin 12 (PA04) of EXT1 connector with the corresponding SDA and SCL lines of the TWIHS slave
Running the Application
-
Open the main.c file and make sure the following macro is defined to true when communicating with on-board EEPROM and to false when communicating with the apps/twihs/slave/i2c_eeprom_emulation application.
When communicating with on-board EEPROM:
#define I2C_SLAVE_IS_ONBOARD_EEPROM true
When communicating with apps/twihs/slave/i2c_eeprom_emulation application
#define I2C_SLAVE_IS_ONBOARD_EEPROM false
- Build and Program the application using its IDE
- The LED indicates the success or failure:
- The LED is turned ON when the value read from the EEPROM matched with the written value
- The LED is turned OFF when the value read from the EEPROM did not match with the written value
Board | LED name |
---|---|
SAM E70 Xplained Ultra board | LED1 |
SAM V71 Xplained Ultra board | LED0 |