truck-code
|
#include <can_man.h>
Public Member Functions | |
virtual void | init (unsigned int base_address, unsigned int bit_speed, BYTE extended_frame) |
virtual int | interrupt (CircularBuffer *in_buff, CircularBuffer *out_buff, can_filter_t filter) |
virtual void | send (CircularBuffer *out_buff) |
virtual can_msg_t | read (CircularBuffer *in_buff) |
virtual int | write (CircularBuffer *out_buff, can_msg_t *pmsg) |
virtual can_err_count_t | clear_errs () |
virtual can_err_count_t | get_errs () |
virtual void | tx_process_interrupt (CircularBuffer *out_buff) |
virtual void | rx_process_interrupt (CircularBuffer *in_buff, can_filter_t filter) |
virtual | ~CANDeviceManager () |
Public Attributes | |
int | can_timeout_count = 0 |
int | tx_buffer_flush = 0 |
int | can_notify_client_err = 0 |
int | mask_count_non_zero = 0 |
CAN Device Manager class.
This object is responsible for initializing and interacting with the CAN card. CAN messages are received through the SJA1000 chip, a blank.
|
virtual |
Virtual destructor.
|
virtual |
Clear the error counts and return the old counts.
|
virtual |
Return the current error count.
|
virtual |
Initialize the Phillips SJA1000 chip to support the CAN.
base_address | memory-mapped base address of the CAN registers. Used by the CANin and CANout macros to access registers. |
bit_speed | CAN bit speed, in Kb/s |
extended_frame | specifies whether the CAN is using the standard or extended frame format |
Set up variables used to set up timing and acceptance.
|
virtual |
Interrupt Request, ISR
Called by can_handle_interrupt.
in_buff | circular buffer for the input messages |
out_buff | circular buffer for the output messages |
filter | used to set filtering of CAN messages |
|
virtual |
Read the latest element in the buffer.
This will also remove the element from the buffer.
in_buff | circular buffer for the input messages |
|
virtual |
Read message from chip and queue for the resource manager.
in_buff | circular buffer for the input messages |
filter | used to set filtering of CAN messages |
|
virtual |
Send a message to the bus.
Single CAN frames or the very first Message are copied into the CAN controller using this function. After that an transmission request is set in the CAN controllers command register. After a successful transmission, an interrupt will be generated, which will be handled in the CAN ISR CAN_Interrupt().
pattr | pointer to information per device manager |
|
virtual |
Send a new message after notification of transmission of old one.
out_buff | circular buffer for the output messages |
|
virtual |
Write a new message to the CAN card.
This method is responsible for performing the following tasks.
out_buff | circular buffer that stores output messages |
pmsg | pointer to the CAN message that should be written |
int CANDeviceManager::can_notify_client_err = 0 |
TODO
int CANDeviceManager::can_timeout_count = 0 |
Number of times a heartbeat was not received from the CAN for over 1 consecutive second.
int CANDeviceManager::mask_count_non_zero = 0 |
TODO
int CANDeviceManager::tx_buffer_flush = 0 |
Number of messages that were flushed from the output buffer without ever being sent.