From 4c2386b10151964a98ab1a7e4bf20efe8c19c869 Mon Sep 17 00:00:00 2001 From: Aleksander Drewnicki Date: Thu, 9 Oct 2014 14:45:13 +0200 Subject: [PATCH] android/client: Add code for mce method This patch adds implementation of mce method to haltest. --- android/client/if-mce.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/android/client/if-mce.c b/android/client/if-mce.c index c671fb262..76c9f73af 100644 --- a/android/client/if-mce.c +++ b/android/client/if-mce.c @@ -58,6 +58,12 @@ static void init_p(int argc, const char **argv) static void get_remote_mas_instances_p(int argc, const char **argv) { + bt_bdaddr_t addr; + + RETURN_IF_NULL(if_mce); + VERIFY_ADDR_ARG(2, &addr); + + EXEC(if_mce->get_remote_mas_instances, &addr); } static struct method methods[] = { -- 2.47.3