diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-05 18:31:41 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-05 18:31:41 +0200 |
commit | 692376f019562e48ddef074b427f2397cae25087 (patch) | |
tree | 7c5ba2532b021c9b822676af19dd28a63b7691ab /CAN-binder/low-can-binding/binding/low-can-hat.hpp | |
parent | e49eed2b1fffced9f5f8d2b997bb6b987cf208f3 (diff) |
Separation between hat and callback binding parts
As well as handling reading signals BCM socket using systemd event loop.
Change-Id: I1e121635ec5db489b2bcb88a3101e716bf8883d5
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/low-can-binding/binding/low-can-hat.hpp')
-rw-r--r-- | CAN-binder/low-can-binding/binding/low-can-hat.hpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/CAN-binder/low-can-binding/binding/low-can-hat.hpp b/CAN-binder/low-can-binding/binding/low-can-hat.hpp new file mode 100644 index 00000000..7df4663c --- /dev/null +++ b/CAN-binder/low-can-binding/binding/low-can-hat.hpp @@ -0,0 +1,36 @@ +/* + * Copyright (C) 2015, 2016 "IoT.bzh" + * Author "Romain Forlot" <romain.forlot@iot.bzh> + * Author "Loic Collignon" <loic.collignon@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. + */ + +#pragma once + +#include <cstddef> +#include <string> + +extern "C" +{ + #include <afb/afb-binding.h> +}; + +extern "C" struct afb_binding_interface; + +extern const struct afb_binding_interface *binder_interface; + +void on_no_clients(std::string message); + +void subscribe(struct afb_req request); +void unsubscribe(struct afb_req request);
\ No newline at end of file |