From fcf2331ada5d09140393f35bbd2d634803407320 Mon Sep 17 00:00:00 2001 From: Ravi kumar Veeramally Date: Wed, 13 Nov 2013 11:25:26 +0200 Subject: [PATCH] android/pan: Add notify method to PAN notifications --- android/hal-pan.c | 6 ++++++ android/hal.h | 1 + 2 files changed, 7 insertions(+) diff --git a/android/hal-pan.c b/android/hal-pan.c index bec179fb2..851c5d2ab 100644 --- a/android/hal-pan.c +++ b/android/hal-pan.c @@ -31,6 +31,12 @@ static bool interface_ready(void) return cbs != NULL; } +void bt_notify_pan(uint8_t opcode, void *buf, uint16_t len) +{ + if (!interface_ready()) + return; +} + static bt_status_t pan_enable(int local_role) { struct hal_cmd_pan_enable cmd; diff --git a/android/hal.h b/android/hal.h index baa47548b..72090fe57 100644 --- a/android/hal.h +++ b/android/hal.h @@ -31,3 +31,4 @@ void bt_thread_associate(void); void bt_thread_disassociate(void); void bt_notify_hidhost(uint8_t opcode, void *buf, uint16_t len); void bt_notify_a2dp(uint8_t opcode, void *buf, uint16_t len); +void bt_notify_pan(uint8_t opcode, void *buf, uint16_t len); -- 2.47.3