Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/canopen/can_bridge_example/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# USB <-> CAN Bridge Example

Turns an ESP32-S3 into a **WebUSB / Web Serial CAN interface**: the hosted
[CAN console web app](https://esp-cpp.github.io/espp/apps/can_console.html)
[CAN bridge console web app](https://esp-cpp.github.io/espp/apps/can_bridge_console.html)
connects over the native USB and can

- **send** CAN frames as a normal, ACK-ing bus participant ("master"), and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ extern "C" void app_main(void) {
espp::UsbDevice::VendorFunction vendor;
vendor.interface_name = "espp CAN Bridge (WebUSB)";
vendor.webusb = true;
vendor.landing_page_url = "esp-cpp.github.io/espp/apps/can_console.html";
vendor.landing_page_url = "esp-cpp.github.io/espp/apps/can_bridge_console.html";
usb_cfg.vendor = vendor;
// The CDC interface carries the SAME framed protocol as the vendor interface,
// so the web app can connect over Web Serial as well as WebUSB. (The system
Expand Down
2 changes: 1 addition & 1 deletion doc/en/buses/canopen.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The ``can_bridge_example`` (``components/canopen/can_bridge_example``) turns an
ESP32-S3 into a WebUSB / Web Serial CAN interface: it bridges the ``Twai``
(CAN 2.0) controller to the host over USB using the ``stream_frame`` framing and
an :doc:`../dispatcher/index` (module id 5), so the hosted
`CAN console <https://esp-cpp.github.io/espp/apps/can_console.html>`_ web app can
`CAN bridge console <https://esp-cpp.github.io/espp/apps/can_bridge_console.html>`_ web app can
send frames (as a bus master) and inspect the bus (streaming every received
frame, optionally in passive listen-only mode) directly from a Chromium browser.

Expand Down
Loading