From de0840e5c42e29fe2f1fc41be7cf96081a4f0c15 Mon Sep 17 00:00:00 2001 From: IFX-Anusha Date: Wed, 27 Sep 2023 17:52:09 +0530 Subject: [PATCH] docs/psco6: Fix i2c Documentation. Signed-off-by: IFX-Anusha ports/psoc6: Fix i2c Documentation. Signed-off-by: IFX-Anusha --- docs/psoc6/quickref.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/psoc6/quickref.rst b/docs/psoc6/quickref.rst index f0a1662e8b5d..8e8542d9c795 100644 --- a/docs/psoc6/quickref.rst +++ b/docs/psoc6/quickref.rst @@ -186,12 +186,12 @@ The constructor ^^^^^^^^^^^^^^^ An instance of the :mod:`machine.I2C` class can be created by invoking the constructor with all the necessary parameters to fully configure the ``I2C``. By invoking the constructor, I2C peripheral is -initialized and configured to work in master mode. +initialized and configured to work in master mode. The maximum supported frequency is 1 MHz. :: from machine import I2C - i2c = I2C(0,scl='P6_0',sda='P6_1',freq=4000000) + i2c = I2C(0,scl='P6_0',sda='P6_1',freq=400000) Here, ``id=0`` should be passed mandatorily which selects the ``master`` mode operation. @@ -203,7 +203,7 @@ Here, ``id=0`` should be passed mandatorily which selects the ``master`` mode op :: from machine import I2C - i2c = I2C(0,scl='P9_0',sda='P9_1',freq=4000000) #I2C is initialised & configured with given scl,sda pins & frequency + i2c = I2C(0,scl='P9_0',sda='P9_1',freq=400000) #I2C is initialised & configured with given scl,sda pins & frequency Methods ^^^^^^^