blob: 5212da5229ce52215fa81634213f4da8f0ae15b6 [file] [log] [blame]
b.liu4e243dc2023-11-27 11:20:00 +08001#include "lynq_qser_network.h"
b.liu5fa9e772023-11-23 18:00:55 +08002
3int qser_nw_client_init(nw_client_handle_type *ph_nw)
4{
5 UNUSED(ph_nw);
6
7 return 0;
8}
9
10int qser_nw_client_deinit(nw_client_handle_type h_nw)
11{
12 UNUSED(h_nw);
13
14 return 0;
15}
16
17int qser_nw_set_config(nw_client_handle_type h_nw,QSER_NW_CONFIG_INFO_T *pt_info)
18{
19 UNUSED(h_nw);
20 UNUSED(pt_info);
21
22 return 0;
23}
24
25int qser_nw_get_operator_name(nw_client_handle_type h_nw, QSER_NW_OPERATOR_NAME_INFO_T *pt_info)
26{
27 UNUSED(h_nw);
28 UNUSED(pt_info);
29
30 return 0;
31}
32
33int qser_nw_get_reg_status(nw_client_handle_type h_nw, QSER_NW_REG_STATUS_INFO_T *pt_info)
34{
35 UNUSED(h_nw);
36 UNUSED(pt_info);
37
38 return 0;
39}
40
41int qser_nw_get_signal_strength(nw_client_handle_type h_nw,QSER_NW_SIGNAL_STRENGTH_INFO_T *pt_info)
42{
43 UNUSED(h_nw);
44 UNUSED(pt_info);
45
46 return 0;
47}
48
b.liu4e243dc2023-11-27 11:20:00 +080049int qser_nw_add_rx_msg_handler (nw_client_handle_type h_nw, QSER_NW_RxMsgHandlerFunc_t handlerPtr, void* contextPtr)
b.liu5fa9e772023-11-23 18:00:55 +080050{
51 UNUSED(h_nw);
52 UNUSED(handlerPtr);
b.liu4e243dc2023-11-27 11:20:00 +080053 UNUSED(contextPtr);
b.liu5fa9e772023-11-23 18:00:55 +080054
55 return 0;
56}
57
58int qser_nw_set_oos_config (nw_client_handle_type h_nw, QSER_NW_OOS_CONFIG_INFO_T *pt_info)
59{
60 UNUSED(h_nw);
61 UNUSED(pt_info);
62
63 return 0;
64}
65
66int qser_nw_get_oos_config (nw_client_handle_type h_nw, QSER_NW_OOS_CONFIG_INFO_T *pt_info)
67{
68 UNUSED(h_nw);
69 UNUSED(pt_info);
70
71 return 0;
72}