Skip to content

Commit

Permalink
Merge branch 'contrib/github_pr_10087' into 'master'
Browse files Browse the repository at this point in the history
fixed url to console component (GitHub PR)

Closes IDFGH-8642

See merge request espressif/esp-idf!20896
  • Loading branch information
suda-morris committed Nov 2, 2022
2 parents b027332 + 8d637ec commit 84be4db
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
9 changes: 5 additions & 4 deletions docs/page_redirects.txt
Expand Up @@ -57,10 +57,11 @@ get-started-cmake/get-started-pico-kit-v3 hw-reference/esp32/get-started-p
api-guides/build-system-cmake api-guides/build-system
api-guides/ulp-cmake api-guides/ulp
api-guides/unit-tests-cmake api-guides/unit-tests
api-guides/ulp_instruction_set.rst api-reference/system/ulp_instruction_set.rst
api-guides/ulps2_instruction_set.rst api-reference/system/ulp_instruction_set.rst
api-guides/ulp_macros.rst api-reference/system/ulp_macros.rst
api-guides/ulp-risc-v.rst api-reference/system/ulp-risc-v.rst
api-guides/ulp_instruction_set api-reference/system/ulp_instruction_set
api-guides/ulps2_instruction_set api-reference/system/ulp_instruction_set
api-guides/ulp_macros api-reference/system/ulp_macros
api-guides/ulp-risc-v api-reference/system/ulp-risc-v
api-guides/console api-reference/system/console

api-reference/network/tcpip_adapter migration-guides/tcpip-adapter
api-reference/system/system api-reference/system/misc_system_api
Expand Down
2 changes: 1 addition & 1 deletion examples/ethernet/iperf/README.md
Expand Up @@ -9,7 +9,7 @@

This example demonstrates basic usage of [iperf](https://iperf.fr/) protocol to measure the throughout/bandwidth of Ethernet.

The cli environment in the example is based on the [console component](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/console.html).
The cli environment in the example is based on the [console component](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/console.html).

## How to use example

Expand Down
2 changes: 1 addition & 1 deletion examples/peripherals/i2c/i2c_tools/README.md
Expand Up @@ -7,7 +7,7 @@

## Overview

[I2C Tools](https://i2c.wiki.kernel.org/index.php/I2C_Tools) is a simple but very useful tool for developing I2C related applications, which is also famous in Linux platform. This example just implements some of basic features of [I2C Tools](https://i2c.wiki.kernel.org/index.php/I2C_Tools) based on [esp32 console component](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/console.html). As follows, this example supports five command-line tools:
[I2C Tools](https://i2c.wiki.kernel.org/index.php/I2C_Tools) is a simple but very useful tool for developing I2C related applications, which is also famous in Linux platform. This example just implements some of basic features of [I2C Tools](https://i2c.wiki.kernel.org/index.php/I2C_Tools) based on [esp32 console component](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/console.html). As follows, this example supports five command-line tools:

1. `i2cconfig`: It will configure the I2C bus with specific GPIO number, port number and frequency.
2. `i2cdetect`: It will scan an I2C bus for devices and output a table with the list of detected devices on the bus.
Expand Down
2 changes: 1 addition & 1 deletion examples/protocols/icmp_echo/README.md
Expand Up @@ -9,7 +9,7 @@ Ping is a useful network utility used to test if a remote host is reachable on t

Ping operates by sending Internet Control Message Protocol (ICMP) echo request packets to the target host and waiting for an ICMP echo reply.

This example implements a simple ping command line util based on the [console component](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/console.html).
This example implements a simple ping command line util based on the [console component](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/console.html).

**Notes:** Currently this example only supports IPv4.

Expand Down
4 changes: 2 additions & 2 deletions examples/system/console/README.md
Expand Up @@ -2,7 +2,7 @@

(See the README.md file in the upper level 'examples' directory for more information about examples.)

Examples in this directory illustrate the usage of the [Console Component](https://docs.espressif.com/projects/esp-idf/en/stable/api-guides/console.html#console) to create an interactive shell on the ESP chip.
Examples in this directory illustrate the usage of the [Console Component](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/console.html#console) to create an interactive shell on the ESP chip.

## basic example

Expand All @@ -14,7 +14,7 @@ It is the recommended starting point when getting familiar with console componen

## advanced example

This example illustrates lower-level APIs for line editing and autocompletion (`linenoise`), argument parsing (`argparse3`) and command registration (`esp_console`).
This example illustrates lower-level APIs for line editing and autocompletion (`linenoise`), argument parsing (`argparse3`) and command registration (`esp_console`).

These APIs allow for a lot of flexibility when building a console application, but require more code to be written.

Expand Down
2 changes: 1 addition & 1 deletion examples/system/console/advanced/README.md
Expand Up @@ -5,7 +5,7 @@

(See the README.md file in the upper level 'examples' directory for more information about examples.)

This example illustrates the usage of the [Console Component](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/console.html#console) to create an interactive shell on the ESP32. The interactive shell running on the ESP32 can then be controlled/interacted with over a serial port (UART).
This example illustrates the usage of the [Console Component](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/console.html#console) to create an interactive shell on the ESP32. The interactive shell running on the ESP32 can then be controlled/interacted with over a serial port (UART).

The interactive shell implemented in this example contains a wide variety of commands, and can act as a basis for applications that require a command-line interface (CLI).

Expand Down
2 changes: 1 addition & 1 deletion examples/system/console/advanced_usb_cdc/README.md
Expand Up @@ -6,7 +6,7 @@
(See the README.md file in the upper level 'examples' directory for more information about examples.)

This example is similar to the [advanced console example](../advanced/README.md), but instead of the UART it uses the USB CDC port provided by USB_OTG peripheral for console output.
The example uses the [Console Component](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/console.html#console) to create an interactive shell.
The example uses the [Console Component](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/console.html#console) to create an interactive shell.

The interactive shell implemented in this example contains a wide variety of commands, and can act as a basis for applications that require a command-line interface (CLI).

Expand Down
2 changes: 1 addition & 1 deletion examples/system/console/basic/README.md
Expand Up @@ -5,7 +5,7 @@

(See the README.md file in the upper level 'examples' directory for more information about examples.)

This example illustrates the usage of the REPL (Read-Eval-Print Loop) APIs of the [Console Component](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/console.html#console) to create an interactive shell on the ESP chip. The interactive shell running on the ESP chip can then be controlled/interacted with over a serial interface. This example supports UART and USB interfaces.
This example illustrates the usage of the REPL (Read-Eval-Print Loop) APIs of the [Console Component](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/console.html#console) to create an interactive shell on the ESP chip. The interactive shell running on the ESP chip can then be controlled/interacted with over a serial interface. This example supports UART and USB interfaces.

The interactive shell implemented in this example contains a wide variety of commands, and can act as a basis for applications that require a command-line interface (CLI).

Expand Down

0 comments on commit 84be4db

Please sign in to comment.