@@ -94,7 +94,7 @@ typedef struct {
94
94
mpx_class_t mpx_data_base ; /**< MPX data be including USER API Class and user call backs */
95
95
llc_message_list_t llc_message_list ; /**< Active Message list */
96
96
llc_ie_params_t ie_params ; /**< LLC IE header and Payload data configuration */
97
- ws_asynch_ind * acynch_ind ; /**< LLC Asynch data indication call back configured by user */
97
+ ws_asynch_ind * asynch_ind ; /**< LLC Asynch data indication call back configured by user */
98
98
ws_asynch_confirm * asynch_confirm ; /**< LLC Asynch data confirmation call back configured by user */
99
99
protocol_interface_info_entry_t * interface_ptr ; /**< List link entry */
100
100
ns_list_link_t link ; /**< List link entry */
@@ -460,7 +460,7 @@ static void ws_llc_mac_indication_cb(const mac_api_t* api, const mcps_data_ind_t
460
460
}
461
461
462
462
//Asynch Message
463
- if (ws_utt .message_type < WS_FT_DATA && base -> acynch_ind ) {
463
+ if (ws_utt .message_type < WS_FT_DATA && base -> asynch_ind ) {
464
464
mac_payload_IE_t ws_wp_nested ;
465
465
466
466
ws_wp_nested .id = WS_WP_NESTED_IE ;
@@ -474,7 +474,7 @@ static void ws_llc_mac_indication_cb(const mac_api_t* api, const mcps_data_ind_t
474
474
asynch_ie_list .headerIeListLength = ie_ext -> headerIeListLength ;
475
475
asynch_ie_list .payloadIeList = ws_wp_nested .content_ptr ;
476
476
asynch_ie_list .payloadIeListLength = ws_wp_nested .length ;
477
- base -> acynch_ind (interface ,data , & asynch_ie_list , ws_utt .message_type );
477
+ base -> asynch_ind (interface ,data , & asynch_ie_list , ws_utt .message_type );
478
478
}
479
479
480
480
}
@@ -678,7 +678,7 @@ int8_t ws_llc_create(struct protocol_interface_info_entry *interface, ws_asynch_
678
678
}
679
679
680
680
base -> interface_ptr = interface ;
681
- base -> acynch_ind = asynch_ind_cb ;
681
+ base -> asynch_ind = asynch_ind_cb ;
682
682
base -> asynch_confirm = asynch_cnf_cb ;
683
683
//Register MAC Extensions
684
684
base -> interface_ptr -> mac_api -> mac_mcps_extension_enable (base -> interface_ptr -> mac_api , & ws_llc_mac_indication_cb , & ws_llc_mac_confirm_cb );
0 commit comments