OVMS3-idf/examples/peripherals/can/can_alert_and_recovery
He Yin Ling 6e05a79536 test: update example and unit tests with new import roles:
tiny_test_fw is a python package now. import it using normal way.
2019-12-11 15:57:49 +11:00
..
main examples: use new component registration api 2019-06-21 19:53:29 +08:00
CMakeLists.txt cmake: make main a component again 2018-09-11 09:44:12 +08:00
example_test.py test: update example and unit tests with new import roles: 2019-12-11 15:57:49 +11: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