File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 26
26
#include "MAC/IEEE802_15_4/mac_defines.h"
27
27
#include "MAC/IEEE802_15_4/mac_mcps_sap.h"
28
28
#include "MAC/IEEE802_15_4/mac_header_helper_functions.h"
29
- #define TRACE_GROUP "mHe"
30
29
31
30
static uint8_t * mcps_mac_security_aux_header_start_pointer_get (const mac_pre_parsed_frame_t * buffer );
32
31
static uint8_t * mac_header_information_elements_write (const mac_pre_build_frame_t * buffer , uint8_t * ptr );
@@ -650,12 +649,10 @@ bool mac_payload_information_elements_parse(mac_pre_parsed_frame_t *buffer)
650
649
while (buffer -> mac_payload_length >= 2 ) {
651
650
652
651
if (!mac_parse_payload_ie (& payload_ie , ptr )) {
653
- tr_debug ("Not supported type" );
654
652
return false;
655
653
}
656
654
buffer -> mac_payload_length -= 2 ;
657
655
if (payload_ie .length > buffer -> mac_payload_length ) {
658
- tr_debug ("Length too big %u, > %u" , payload_ie .length , buffer -> mac_payload_length );
659
656
return false;
660
657
}
661
658
buffer -> mac_payload_length -= payload_ie .length ;
You can’t perform that action at this time.
0 commit comments