mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
66b31b89ac
# Conflicts: # examples/07_blufi/components/bluedroid_demos/app_project/SampleClientProject.c # examples/07_blufi/components/bluedroid_demos/app_project/SampleServerProject.c # examples/07_blufi/components/bluedroid_demos/include/bt_app_common.h
19 lines
371 B
C
19 lines
371 B
C
#ifndef __BT_APP_COMMON_H__
|
|
#define __BT_APP_COMMON_H__
|
|
|
|
#include <stdint.h>
|
|
#include "osi.h"
|
|
#include "bt_common_types.h"
|
|
|
|
enum BLUFI_SIG {
|
|
BLUFI_SIG_SWITCH_CONTEXT = 0,
|
|
BLUFI_SIG_ENABLE,
|
|
BLUFI_SIG_DISABLE,
|
|
};
|
|
|
|
void blufi_init(void);
|
|
bt_status_t blufi_enable(void *arg);
|
|
bt_status_t blufi_transfer_context(BtTaskCb_t cb, void *arg);
|
|
|
|
#endif /* __BT_APP_COMMON_H__ */
|