Files
arduino-esp32/tools/sdk/include/bt/osi/osi.h

17 lines
237 B
C
Raw Normal View History

2020-01-25 14:51:58 +00:00
#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_*/