CAN FD 3 Click Board
CAN FD 3 Click Board
The CAN FD 3 Click Board™ is an add-on board based on TLE9251V CAN network transceiver, designed for HS CAN network up to 5 Mbit/s in automotive and industrial applications. As an interface between the physical bus layer and the CAN protocol controller, the TLE9251V drives the signals to the bus and protects the microcontroller against interferences generated within the network. Given all the features its components offer, the CAN FD Click is best used for infotainment applications, gateway modules, body control modules (BCM) or engine control units (ECUs).
The CAN FD 3 Click Board™ is supported by a mikroSDK compliant library, which includes functions that simplify software development. This Click Board™ comes as a fully tested product, ready to be used on a system equipped with the mikroBUS™ socket.
How Does The CAN FD 3 Click Board™ Work?
The CAN FD 3 Click Board™ features TLE9251V, a High-Speed CAN transceiver operating as an interface between the CAN controller and the physical bus medium, from Infenion. A HS CAN network is a two wire, differential network which allows data transmission rates up to 5 MBit/s. The characteristic for a HS CAN network are the two signal states on the CAN bus: dominant and recessive. The CANH and CANL pins are the interface to the CAN bus and operate as an input and output. The RxD and TxD pins are the interface to the microcontroller. The TxD pin is the serial data input from the CAN controller. The RxD pin is the serial data output to the CAN controller. The HS CAN transceiver TLE9251V includes a receiver and a transmitter unit, allowing the transceiver to send data to the bus medium and monitors the data from the bus medium at the same time.
The HS CAN transceiver TLE9251V converts the serial data stream which is available on the transmit data input TxD, into a differential output signal on the CAN bus, provided by the CANH and CANL pins. The receiver stage of the TLE9251V monitors the data on the CAN bus and converts it to a serial, single-ended signal on the RxD output pin. A logical "low" signal on the TxD pin creates a dominant signal on the CAN bus, followed by a logical "low" signal on the RxD pin. The feature, broadcasting data to the CAN bus and listening to the data traffic on the CAN bus simultaneously is essential to support the bit-to-bit arbitration within CAN networks.
The CAN FD 3 Click Board™ after powering up, enters one out of three operating modes .
Depending on the condition of the transmitter supply voltage VCC and the mode selection pin STB the device can enter every mode of operation after the power-up:
- VCC is available and STB input is set to "low" - Normal-operating mode
- VCC is disabled and the STB input is set to "low" - Forced-receive-only mode
- STB input is set to "high" - Stand-by mode
Based on the high symmetry of the CANH and CANL output signals, the TLE9251V provides a very low level of electromagnetic emission (EME) within a wide frequency range. The TLE9251V fulfills even stringent EMC test limits without additional external circuit, like a common mode choke for example.
In Power On Reset all functions of the TLE9251V are disabled and the device is switched off.
The TLE9251V has an integrated overtemperature detection to protect the TLE9251V against thermal overstress of the transmitter. The overtemperature protection is active in Normal-operating Mode and is disabled in all other Modes. The temperature sensor provides one temperature threshold: TJSD.When the temperature exceeds the threshold TJSD the transmitter is disabled. This overtemperature event will be signaled as logical "low" on the ERR output pin in Normal-operating Mode. After the device has cooled down, the transmitter is re-enabled and NERR returns to logical "high". A hysteresis is implemented within the temperature sensor.
Given all the features its components offer, the CAN FD 3 Click Board™ is best used for for infotainment applications, cluster modules, radar applications and HVAC. The onboard SMD jumper labeled as the VIO SEL is used to select which voltage rail will be used as the logic voltage level. It offers voltage selection between 3.3V and 5V so that the Click board™ can be interfaced with both the 3.3V and 5V capable MCUs. The two UART wires (RX and TX) can also be connected directly through two pins on the left edge of the board.
SPECIFICATIONS
Type | CAN,CAN FD |
Applications | The CAN FD 3 Click Board™ is best used for for infotainment applications, gateway modules, body control modules (BCM) or engine control units (ECUs). |
On-board modules | On-board modules TLE9251V, a transceiver designed for HS CAN networks up to 5 Mbit/s in automotive and industrial applications from Infineon |
Key Features | Key Features Very low electromagnetic emission (EME) for chokeless usage, Dual Power Supply Solution |
Interface | UART |
Compatibility | mikroBUS |
Click board size | L (57.15 x 25.4 mm) |
Input Voltage | 3.3V or 5V |
PINOUT DIAGRAM
This table shows how the pinout for the CAN FD 3 Click Board™ corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).
Notes | Pin | Pin | Notes | ||||
---|---|---|---|---|---|---|---|
NC | 1 | AN | PWM | 16 | NC | ||
NC | 2 | RST | INT | 15 | NC | ||
Chip Select | CS | 3 | CS | RX | 14 | TX | UART Transmit |
NC | 4 | SCK | TX | 13 | RX | UART Transmit | |
NC | 5 | MISO | SCL | 12 | NC | I2C Clock | |
NC | 6 | MOSI | SDA | 11 | NC | I2C Data | |
Power Supply | 3.3V | 7 | 3.3V | 5V | 10 | 5V | Power Supply |
Ground | GND | 8 | GND | GND | 9 | GND | Ground |
ONBOARD SETTINGS AND INDICATORS
Label | Name | Default | Description |
---|---|---|---|
LD1 | PWR | - | Power LED Indicator |
J1 | - | - | CAN lines solder pads |
J2 | - | - | UART lines solder pads |
JP1 | VIO SEL | Left | VIO Voltage select |
Software Support
We provide a library for the CAN FD 3 Click Board™ on our LibStock page, as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
Library Description
Library provides functions for communication via the UART module, and a function for controlling CS pin, which sets device mode.
Key Functions
void canfd3_write_byte ( uint8_t input )
- Writes single byte of datauint8_t canfd3_read_byte( )
- Reads single byte of datauint8_t canfd3_byte_ready ( )
- Checks if new data ic receivedvoid canfd3_set_cs_pin ( uint8_t mode )
- Sets state of the CS pin
Example Description
The application is composed of three sections :
- System Initialization - Intializes UART module
- Application Initialization - Driver intialization
- Application Task - Choose one mode (read or write) of task. If you reading it checks if data is ready to be read and then reads one byte and if you are wiriting send data via UART.
void application_task ( ) { float read_data; char txt_out[ 30 ]; read_data = thermo17_read_temp( THERMO17_TEMPERATURE_LOCAL ); FloatToStr( read_data, txt_out ); mikrobus_logWrite( " - LOCAL: ", _LOG_TEXT ); mikrobus_logWrite( txt_out, _LOG_LINE ); Delay_ms( 100 ); read_data = thermo17_read_temp( THERMO17_TEMPERATURE_REMOTE ); FloatToStr( read_data, txt_out ); mikrobus_logWrite( " - REMOTE: ", _LOG_TEXT ); mikrobus_logWrite( txt_out, _LOG_LINE ); Delay_ms( 100 ); mikrobus_logWrite( " ******************** ", _LOG_LINE ); Delay_ms( 1000 ); }
The full application code, and ready to use projects can be found on our LibStock page.
Other mikroE Libraries used in the example:
- UART
Additional Notes and Information
Depending on the development board you are using, you may need a USB UART Click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.
MIKROSDK
The CAN FD 3 Click Board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
Software Support
We provide a library for the CAN FD 3 Click Board™ on our LibStock page, as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
Library Description
Library provides functions for communication via the UART module, and a function for controlling CS pin, which sets device mode.
Key Functions
void canfd3_write_byte ( uint8_t input )
- Writes single byte of datauint8_t canfd3_read_byte( )
- Reads single byte of datauint8_t canfd3_byte_ready ( )
- Checks if new data ic receivedvoid canfd3_set_cs_pin ( uint8_t mode )
- Sets state of the CS pin
Example Description
The application is composed of three sections :
- System Initialization - Intializes UART module
- Application Initialization - Driver intialization
- Application Task - Choose one mode (read or write) of task. If you reading it checks if data is ready to be read and then reads one byte and if you are wiriting send data via UART.
void application_task ( ) { float read_data; char txt_out[ 30 ]; read_data = thermo17_read_temp( THERMO17_TEMPERATURE_LOCAL ); FloatToStr( read_data, txt_out ); mikrobus_logWrite( " - LOCAL: ", _LOG_TEXT ); mikrobus_logWrite( txt_out, _LOG_LINE ); Delay_ms( 100 ); read_data = thermo17_read_temp( THERMO17_TEMPERATURE_REMOTE ); FloatToStr( read_data, txt_out ); mikrobus_logWrite( " - REMOTE: ", _LOG_TEXT ); mikrobus_logWrite( txt_out, _LOG_LINE ); Delay_ms( 100 ); mikrobus_logWrite( " ******************** ", _LOG_LINE ); Delay_ms( 1000 ); }
The full application code, and ready to use projects can be found on our LibStock page.
Other mikroE Libraries used in the example:
- UART
Additional Notes and Information
Depending on the development board you are using, you may need a USB UART Click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.
MIKROSDK
The CAN FD 3 Click Board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
CAN FD 3 Click Board
Frequently Asked Questions
Have a Question?
Be the first to ask a question about this.