24c0b4eba73943a93f56e6fb497076c061946f6e
[apps/agl-service-unicens.git] / ucs2-afb / ucs_binding.h
1 /*
2  * AlsaLibMapping -- provide low level interface with AUDIO lib (extracted from alsa-json-gateway code)
3  * Copyright (C) 2015,2016,2017, Fulup Ar Foll fulup@iot.bzh
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #ifndef UCS2BINDING_H
19 #define UCS2BINDING_H
20
21 // Use Version of AGL Application Framework API
22 #define AFB_BINDING_VERSION 2
23
24 #ifndef PUBLIC
25   #define PUBLIC
26 #endif
27 #define STATIC static
28
29 #include <json-c/json.h>
30 #include <afb/afb-binding.h>
31
32 #include "ucs_interface.h"
33
34 #ifndef CONTROL_CDEV_TX
35 #error FATAL: CONTROL_CDEV_TX missing (check ./etc/config.cmake + rerun cmake)
36 #endif
37 #ifndef CONTROL_CDEV_RX
38 #error FATAL: CONTROL_CDEV_RX missing (check ./etc/config.cmake + rerun cmake)
39 #endif
40
41 // import from AlsaAfbBinding
42 extern const struct afb_binding_interface *afbIface;
43 extern struct afb_service afbSrv;
44
45 // API verbs prototype
46 PUBLIC void ucs2_configure (struct afb_req request);
47 PUBLIC void ucs2_subscribe (struct afb_req request);
48 PUBLIC void ucs2_writei2c  (struct afb_req request);
49 PUBLIC void ucs2_volume    (struct afb_req request);
50
51 #endif /* UCS2BINDING_H */
52