adada3f67e
1. add the L1 include path with a prefix, such like osi/list.h, stack/a2d_api.h and etc. 2. modify component, only bluedroid/api/include/api is export to another component and application, other include path just for bluedroid used 3. put bluedroid/include into common/include/common, so the root directory of bluedroid have no include path. 4. modify doxygen to use esp_bt.h and redirect to component/bt/bluedroid/api/include/api/ fix compile
16 lines
237 B
C
16 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_*/
|