blob: 431c7e92b454b5f50531d27a5ab76a9d12cf5f6e [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
#ifndef ADAPTOR_H
#define ADAPTOR_H
#ifdef __cplusplus
extern "C" {
#endif
#define OC_ADATOR_EVENT_IP (OS_EVENT_T_PERUSER + 0)
#define OC_ADATOR_EVENT_SERIAL (OS_EVENT_T_PERUSER + 1)
#define OC_ADATOR_EVENT_GATT (OS_EVENT_T_PERUSER + 2)
extern struct os_eventq oc_event_q;
#ifdef OC_TRANSPORT_IP
int oc_connectivity_init_ip(void);
void oc_connectivity_shutdown_ip(void);
void oc_send_buffer_ip(oc_message_t *message);
void oc_send_buffer_ip_mcast(oc_message_t *message);
oc_message_t *oc_attempt_rx_ip(void);
#endif
#ifdef OC_TRANSPORT_GATT
int oc_connectivity_init_gatt(void);
void oc_connectivity_shutdown_gatt(void);
void oc_send_buffer_gatt(oc_message_t *message);
oc_message_t *oc_attempt_rx_gatt(void);
#endif
#ifdef OC_TRANSPORT_SERIAL
int oc_connectivity_init_serial(void);
void oc_connectivity_shutdown_serial(void);
void oc_send_buffer_serial(oc_message_t *message);
oc_message_t *oc_attempt_rx_serial(void);
#endif
#ifdef __cplusplus
}
#endif
#endif /* ADAPTOR_H */