mirror of
https://github.com/espressif/esp-idf
synced 2025-03-27 18:00:09 -04:00
# Conflicts: # components/bt/bluedroid/profiles/core/bt_prf_sys_main.c # components/bt/bluedroid/profiles/core/bt_prf_task.c # components/bt/bluedroid/profiles/core/include/bt_prf_sys.h # components/bt/bluedroid/profiles/core/include/bt_prf_task.h # components/bt/bluedroid/profiles/esp/include/wx_airsync_prf.h # components/bt/bluedroid/profiles/esp/wechat_AirSync/wx_airsync_prf.c # components/bt/bluedroid/stack/btm/btm_sec.c
32 lines
1017 B
C
32 lines
1017 B
C
#ifndef __BT_APP_COMMON_H__
|
|
#define __BT_APP_COMMON_H__
|
|
|
|
#include <stdint.h>
|
|
#include "osi.h"
|
|
#include "bt_common_types.h"
|
|
#include "bt_defs.h"
|
|
|
|
/* BT APP Events */
|
|
#define BT_EVT_APP (0xB000)
|
|
#define BT_EVT_APP_CONTEXT_SWITCH (0x0001 | BT_EVT_APP)
|
|
|
|
typedef void (tBTAPP_CBACK) (uint16_t event, char *p_param);
|
|
typedef void (tBTAPP_COPY_CBACK) (uint16_t event, char *p_dest, char *p_src);
|
|
|
|
typedef struct
|
|
{
|
|
BT_HDR hdr;
|
|
tBTAPP_CBACK* p_cb; /* context switch callback */
|
|
|
|
/* parameters passed to callback */
|
|
UINT16 event; /* message event id */
|
|
char p_param[0]; /* parameter area needs to be last */
|
|
} tBTAPP_CONTEXT_SWITCH_CBACK;
|
|
|
|
bt_status_t bt_app_transfer_context (tBTAPP_CBACK *p_cback, UINT16 event, char* p_params, int param_len, tBTAPP_COPY_CBACK *p_copy_cback);
|
|
|
|
void bt_app_init_ok(UNUSED_ATTR uint16_t event, UNUSED_ATTR char *p_param);
|
|
|
|
void bt_app_task_start_up(void);
|
|
#endif /* __BT_APP_COMMON_H__ */
|