Skip to content
Snippets Groups Projects
Commit ad12fef2 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Made some attributes of the CCan class protected to be used in any inherited class.

parent 1379426a
No related branches found
No related tags found
No related merge requests found
......@@ -37,13 +37,13 @@ class CCAN : protected CComm
std::string frame_error_event_id;// public event
std::string data_requested_event_id;// public event
std::string finish_can_thread_event_id;// private event
// internal received frame buffer
std::queue<struct can_frame> rx_frames;
// reception can_id filters
struct can_filter *rx_filters;
int num_filters;
CMutex can_access;
protected:
// internal received frame buffer
std::queue<struct can_frame> rx_frames;
CMutex can_access;
/**
* \brief Function to actually open the device
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment