arduino-esp32/tools/sdk/include/bluedroid/osi.h
2017-09-12 09:40:52 +03:00

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_*/