#endif
#define LOG_TAG "TIZEN_N_RADIO"
+#ifdef LOGI
+#undef LOGI
+#endif
+#define LOGI(format, arg...) \
+ printf(format, ##arg) //LCOV_EXCL_LINE
+#ifdef LOGE
+#undef LOGE
+#endif
+#define LOGE(format, arg...) \
+ printf(format, ##arg) //LCOV_EXCL_LINE
+#ifdef LOGW
+#undef LOGW
+#endif
+#define LOGW(format, arg...) \
+ printf(format, ##arg) //LCOV_EXCL_LINE
+
/*
* Internal Macros
*/
__unset_callback(_RADIO_EVENT_TYPE_SEEK_FINISH, (radio_h)handle);
break;
case MM_MESSAGE_STATE_INTERRUPTED:
+ // LCOV_EXCL_START
if (msg->union_type == MM_MSG_UNION_STATE) {
handle->state = __convert_radio_state(msg->state.current);
if (handle->user_cb[_RADIO_EVENT_TYPE_INTERRUPT])
((radio_interrupted_cb)handle->user_cb[_RADIO_EVENT_TYPE_INTERRUPT])(RADIO_INTERRUPTED_BY_RESOURCE_CONFLICT, handle->user_data[_RADIO_EVENT_TYPE_INTERRUPT]);
}
break;
+ // LCOV_EXCL_STOP
case MM_MESSAGE_ERROR:
__convert_error_code(msg->code, (char *)__FUNCTION__);
break;