OVMS3-idf/examples/peripherals/can/can_alert_and_recovery
Darian Leung 1d2727f4c8 CAN Driver
The following commit contains the first version of the ESP32 CAN Driver.

closes #544
2018-07-04 14:01:57 +08:00
..
main CAN Driver 2018-07-04 14:01:57 +08:00
example_test.py CAN Driver 2018-07-04 14:01:57 +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 Alert and Recovery Example

Overview

The CAN Alert and Recovery Example demonstrates the usage of alerts and bus recovery in the CAN driver. This example requires only a single ESP32 module to run.

The CAN Alert and Recovery Example will do the following...

  1. Initialize and start the CAN driver on the ESP32 module
  2. Repeatedly transmit messages (no acknowledgement required)
  3. Reconfigure alerts to detect bus-off state
  4. Purposely trigger errors on transmissions
  5. Detect Bus Off condition
  6. Initiate bus recovery
  7. Deinitialize CAN driver on ESP32 module

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 Alert and Recovery Example utilizes the following default pin assignments

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