From 5f40771c1e096fd0217bc27afe5b0d22ba46c606 Mon Sep 17 00:00:00 2001 From: Anton Maklakov Date: Mon, 19 Nov 2018 20:54:03 +0800 Subject: [PATCH] modbus: Fix a typo in the docs * Original commit: espressif/esp-idf@9dde91ce2b325902a52600226bb11d29f64726cf --- docs/en/api-reference/protocols/modbus.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/api-reference/protocols/modbus.rst b/docs/en/api-reference/protocols/modbus.rst index 3c93bae..d4945d1 100644 --- a/docs/en/api-reference/protocols/modbus.rst +++ b/docs/en/api-reference/protocols/modbus.rst @@ -18,7 +18,7 @@ Modbus slave interface API overview ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -ISP-IDF supports Modbus slave protocol and provides modbus_controller interface API to interact with user application. The interface API functions below are used to setup and use Modbus slave stack from application and could be executed in next order: +ESP-IDF supports Modbus slave protocol and provides modbus_controller interface API to interact with user application. The interface API functions below are used to setup and use Modbus slave stack from application and could be executed in next order: The files deviceparams.c/h contain the user structures which represent Modbus parameters accessed by stack. These parameters should be prepared by user and be assigned to the modbus_controller interface using :cpp:func:`mbcontroller_set_descriptor()` API call before start of communication.