File tree Expand file tree Collapse file tree 2 files changed +0
-20
lines changed
features/FEATURE_BLE/targets/TARGET_CORDIO Expand file tree Collapse file tree 2 files changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ void CordioAttClient::att_client_handler(const attEvt_t* event)
35
35
static const event_handler_t handlers[] = {
36
36
&timeout_event_handler,
37
37
&event_handler<ErrorResponseConverter>,
38
- // &event_handler<ExchangeMtuResponseConverter>,
39
38
&event_handler<FindInformationResponseConverter>,
40
39
&event_handler<FindByTypeValueResponseConverter>,
41
40
&event_handler<ReadByTypeResponseConverter>,
Original file line number Diff line number Diff line change @@ -400,25 +400,6 @@ class CordioAttClient : public ::ble::pal::AttClient {
400
400
}
401
401
};
402
402
403
- /* *
404
- * Converter for an AttExchangeMTUResponse.
405
- */
406
- struct ExchangeMtuResponseConverter {
407
- static bool can_convert (const attEvt_t* event)
408
- {
409
- if (event->hdr .status == ATT_SUCCESS &&
410
- event->hdr .event == ATT_MTU_UPDATE_IND) {
411
- return true ;
412
- }
413
- return false ;
414
- }
415
-
416
- static AttExchangeMTUResponse convert (const attEvt_t* event)
417
- {
418
- return AttExchangeMTUResponse (event->mtu );
419
- }
420
- };
421
-
422
403
/* *
423
404
* Converter for a SimpleAttFindInformationResponse.
424
405
*/
You can’t perform that action at this time.
0 commit comments