diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-27 00:59:40 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-27 01:03:34 +0200 |
commit | 454e4f65caca85395a5ca79814d6ca333dd5ae6b (patch) | |
tree | 456e7e8a152a3202109c250a247be245e5335f67 /CAN-binder/low-can-binding/utils/socketcan.cpp | |
parent | 512336b68da052f167bdfb8f2b9a9992ed3f1688 (diff) |
Fix: write bcm message to socket.
Just allowing message with 1 frame avoiding to handle dynamic sized array...
This close the door for multiplexed msg for now... Let's see later and move on
Change-Id: I3626d4b6634b3f119826603e64713d63e994918e
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/low-can-binding/utils/socketcan.cpp')
-rw-r--r-- | CAN-binder/low-can-binding/utils/socketcan.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/CAN-binder/low-can-binding/utils/socketcan.cpp b/CAN-binder/low-can-binding/utils/socketcan.cpp index 486c34f6..53631e9d 100644 --- a/CAN-binder/low-can-binding/utils/socketcan.cpp +++ b/CAN-binder/low-can-binding/utils/socketcan.cpp @@ -161,18 +161,4 @@ namespace utils return s; } - - socketcan_t& operator<<(socketcan_t& s, const struct basic_bcm_msg<struct can_frame>& obj) - { - s << obj.msg_head; - s << obj.frames; - return s; - } - - socketcan_t& operator<<(socketcan_t& s, const struct canfd_bcm_msg& obj) - { - s << obj.msg_head; - s << obj.frames; - return s; - } }
\ No newline at end of file |