From b61187a4a1804622ef413715918705e6c9a9a576 Mon Sep 17 00:00:00 2001 From: enriquezgarc Date: Mon, 5 Feb 2024 15:14:02 +0100 Subject: [PATCH] docs/psoc6/quickref.rst: I2c quick correction. Signed-off-by: enriquezgarc --- docs/psoc6/quickref.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/psoc6/quickref.rst b/docs/psoc6/quickref.rst index 6d221718a463d..4f59eaab02772 100644 --- a/docs/psoc6/quickref.rst +++ b/docs/psoc6/quickref.rst @@ -215,7 +215,7 @@ initialized and configured to work in master mode. The maximum supported frequen from machine import I2C i2c = I2C(scl='P6_0', sda='P6_1', freq=400000) -The ``scl`` and ``sda`` pins are the only mandatory arguments. The frequency is option, by default, and if not passed will be set to 400KHz by default. +The ``scl`` and ``sda`` pins are the only mandatory arguments. The frequency is optional, and if not passed will be set to 400KHz by default. .. note:: The ``timeout`` option is currently not implemented in this port.