Remove unnecessary setting
[platform/core/connectivity/nfc-manager-neard.git] / tests / net_nfc_test_util.c
1 /*
2  * Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *                               http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 #include "net_nfc_test_util.h"
19
20
21 void print_received_data(data_s *data)
22 {
23         guint8 *buffer = NULL;
24         gint i;
25         gint len = 0;
26
27         buffer = (guint8 *)net_nfc_get_data_buffer(data);
28         if (buffer == NULL)
29         {
30                 g_print("Payload: Empty\n");
31                 return;
32         }
33
34         len = net_nfc_get_data_length(data);
35
36         g_print ("Payload:\n");
37
38         for (i = 0; i < len; i++)
39         {
40                 g_print("%02x", buffer[i]);
41                 if ((i + 1) % 16 == 0)
42                         g_print("\n");
43                 else
44                         g_print(" ");
45         }
46
47         g_print("\n");
48 }
49