summaryrefslogtreecommitdiffstats
path: root/obsolete/ll-can-binding.h
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-03-01 09:20:46 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2017-03-01 09:20:46 +0100
commitaec4c67e6d927183e0c29f2f5fccb269cdaff932 (patch)
tree0258f13521f4a66fbd24cec0d52f88ecba2b95a6 /obsolete/ll-can-binding.h
parent65d08bdea23d81c5d639ab9fac428ccd87673c8d (diff)
Delete for good obsolete code
Change-Id: Ic56fadcc7e6265072e4e3413f914b735b56e903d Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'obsolete/ll-can-binding.h')
-rw-r--r--obsolete/ll-can-binding.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/obsolete/ll-can-binding.h b/obsolete/ll-can-binding.h
deleted file mode 100644
index b2fec03..0000000
--- a/obsolete/ll-can-binding.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2015, 2016 "IoT.bzh"
- * Author "Romain Forlot" <romain.forlot@iot.bzh>
- *
- * 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.
- */
-
-/*
- * Interface between the daemon and the binding
- */
-static const struct afb_binding_interface *interface;
-
-/* CAN variable initialization */
-struct canfd_frame canfd_frame;
-
-/*
- * each generated event
- */
-typedef struct _event event;
-struct _event {
- event *next; /* link for the next event */
- const char *name; /* name of the event */
- struct afb_event afb_event; /* the event for the binder */
- openxc_CanMessage can_message; /* value for the can_message */
-};
-
-/*
- * each can event, will browse by the id
- */
-typedef struct _can_event can_event;
-struct _can_event {
- can_event *next; /* Link to the next other can message */
- event *events; /* events for the can message */
- uint32_t id; /* id of the event for unsubscribe */
- enum type type; /* the type of data expected */
-};
-
-can_event *can_events_list;