btstack_tlv: log_info for setter

This commit is contained in:
Matthias Ringwald 2017-10-30 15:23:58 +01:00
parent 01ac20081a
commit 924838cd48

View File

@ -29,6 +29,8 @@
*
*/
#define __BTSTACK_FILE__ "btstack_tlv.c"
/*
* btstack_tlv.c
*
@ -36,11 +38,14 @@
*/
#include "btstack_tlv.h"
#include "btstack_debug.h"
static const btstack_tlv_t * btstack_tlv_singleton_impl;
static void * btstack_tlv_singleton_context;
void btstack_tlv_set_instance(const btstack_tlv_t * tlv_impl, void * tlv_context){
log_info("TLV Instance %p", tlv_impl);
btstack_tlv_singleton_impl = tlv_impl;
btstack_tlv_singleton_context = tlv_context;
}