OVMS3-idf/components/bt/common/osi/include/osi/osi.h
2020-02-13 12:33:23 +05:30

17 lines
237 B
C

#ifndef _OSI_H_
#define _OSI_H_
#include <stdbool.h>
#include <stdint.h>
#define UNUSED_ATTR __attribute__((unused))
#define CONCAT(a, b) a##b
#define COMPILE_ASSERT(x)
int osi_init(void);
void osi_deinit(void);
#endif /*_OSI_H_*/