18#ifndef CELLULAR_LOG_H_
19#define CELLULAR_LOG_H_
21#if defined(HAVE_DEBUG) && !defined(FEA_TRACE_SUPPORT)
22#define FEA_TRACE_SUPPORT
25#include "mbed-trace/mbed_trace.h"
27#define TRACE_GROUP "CELL"
35void mutex_wait_function_set(
void (*mutex_wait_f)(
void));
36void mutex_release_function_set(
void (*mutex_release_f)(
void));
Set mutex wait/release functions for 'tr_' macros, implementation here is modified from that found fr...