OVMS3-idf/examples/peripherals/can/can_self_test
Darian Leung 81ddd9e291 CAN: Reenable example tests
This commit updates the CAN example tests and updates the job
and environment labels in the target-test.yml
2019-10-29 17:25:49 +08:00
..
main tools: Mass fixing of empty prototypes (for -Wstrict-prototypes) 2019-08-01 16:28:56 +07:00
CMakeLists.txt ci: support to build esp32s2beta simple examples 2019-07-08 09:16:06 +08:00
example_test.py CAN: Reenable example tests 2019-10-29 17:25:49 +08:00
Makefile CAN Driver 2018-07-04 14:01:57 +08:00
README.md CAN Driver 2018-07-04 14:01:57 +08:00

CAN Self Test Example

Overview

The CAN Self Test Example demonstrates the self testing capabilities of the ESP32 CAN peripheral and only requires a single ESP32 module to run. The Self Test Example can be used to verify that the wiring between the ESP32 and an external transceiver operates correctly.

The CAN Self Test Example will do the following over multiple iterations:

  1. Start the CAN driver
  2. Simultaneously transmit and receive messages using the self reception request.
  3. Stop the CAN driver

External Transceiver and Pin Assignment

The CAN controller in the ESP32 does not contain an internal transceiver. Therefore users are responsible for providing an external transceiver compatible with the physical layer specifications of their target ISO standard (such as SN65HVD23X transceivers for ISO 11898-2 compatibility)

The CAN controller in the ESP32 represents dominant bits to the transceiver as logic low, and recessive bits as logic high. The Self Test Example utilizes the following default pin assignments

  • TX Pin is routed to GPIO21
  • RX Pin is routed to GPIO22

Note

If the Self Test Example does not receive any messages, it is likely that the wiring between the ESP32 and the external transceiver is incorrect. To verify that the CAN controller in the ESP32 is operating correctly, users can bypass the external transceiver by connecting the TX Pin directly to the RX Pin when running the Self Test Example.