From 8669985f9ab8821053bdaeadc08250c8c1e71d29 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Thu, 9 Feb 2017 18:05:48 +0000 Subject: Re-implementation in C++ and separate threads to read, decode and pushing on the event loop. Old code has been moved into obsolete directory. Change-Id: Ia389ab84a1dc566c48e0269f2466843de0e51158 Signed-off-by: Romain Forlot --- can_event_push.cpp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 can_event_push.cpp (limited to 'can_event_push.cpp') diff --git a/can_event_push.cpp b/can_event_push.cpp new file mode 100644 index 00000000..c8a3b6da --- /dev/null +++ b/can_event_push.cpp @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2015, 2016 "IoT.bzh" + * Author "Romain Forlot" + * Author "Loic Collignon" + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include +#include +#include + +#include + +void can_event_push(afb_binding_interface *interface, std::queue & can_message_queue) +{ + while(true) + { + if(! can_message_queue.empty()) + { + can_message = can_message_queue.front(); + can_message_queue.pop(); + } + } +} -- cgit 1.2.3-korg