From 2e5d25cd91520502efc942239d0a565c4b90a2f9 Mon Sep 17 00:00:00 2001 From: nopnop2002 Date: Tue, 10 Sep 2024 20:55:39 +0900 Subject: [PATCH] Update README.md --- DeviceAddDemo/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DeviceAddDemo/README.md b/DeviceAddDemo/README.md index 5d34f9b..66e913e 100644 --- a/DeviceAddDemo/README.md +++ b/DeviceAddDemo/README.md @@ -51,7 +51,7 @@ No other code is required to use i2c. ``` This project uses the following functions to install the i2c driver. -This function determines which i2c port to use inside the function. +This function determines which I2C port to use within the function according to the config value. ``` i2c_master_init(&dev, CONFIG_SDA_GPIO, CONFIG_SCL_GPIO, CONFIG_RESET_GPIO); ``` @@ -122,7 +122,7 @@ We need to run this code on the second device. ``` This project uses the following functions to install the i2c driver. -This function determines which i2c port to use inside the function. +This function determines which I2C port to use within the function according to the config value. ``` i2c_master_init(&dev, CONFIG_SDA_GPIO, CONFIG_SCL_GPIO, CONFIG_RESET_GPIO); ```