b.liu | 5fa9e77 | 2023-11-23 18:00:55 +0800 | [diff] [blame^] | 1 | #include "qser/qser_network.h" |
| 2 | |
| 3 | int qser_nw_client_init(nw_client_handle_type *ph_nw) |
| 4 | { |
| 5 | UNUSED(ph_nw); |
| 6 | |
| 7 | return 0; |
| 8 | } |
| 9 | |
| 10 | int qser_nw_client_deinit(nw_client_handle_type h_nw) |
| 11 | { |
| 12 | UNUSED(h_nw); |
| 13 | |
| 14 | return 0; |
| 15 | } |
| 16 | |
| 17 | int 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 | |
| 25 | int 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 | |
| 33 | int 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 | |
| 41 | int 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 | |
| 49 | int qser_nw_add_rx_msg_handler (nw_client_handle_type h_nw, QSER_NW_RxMsgHandlerFunc_t handlerPtr) |
| 50 | { |
| 51 | UNUSED(h_nw); |
| 52 | UNUSED(handlerPtr); |
| 53 | |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | int qser_nw_set_oos_config (nw_client_handle_type h_nw, QSER_NW_OOS_CONFIG_INFO_T *pt_info) |
| 58 | { |
| 59 | UNUSED(h_nw); |
| 60 | UNUSED(pt_info); |
| 61 | |
| 62 | return 0; |
| 63 | } |
| 64 | |
| 65 | int qser_nw_get_oos_config (nw_client_handle_type h_nw, QSER_NW_OOS_CONFIG_INFO_T *pt_info) |
| 66 | { |
| 67 | UNUSED(h_nw); |
| 68 | UNUSED(pt_info); |
| 69 | |
| 70 | return 0; |
| 71 | } |