99 @yield requested fields |
99 @yield requested fields |
100 @ytype bytes |
100 @ytype bytes |
101 """ |
101 """ |
102 # Advertising payloads are repeated packets of the following form: |
102 # Advertising payloads are repeated packets of the following form: |
103 # 1 byte data length (N + 1) |
103 # 1 byte data length (N + 1) |
104 # 1 byte type (see constants below) |
104 # 1 byte type (see constants at top) |
105 # N bytes type-specific data |
105 # N bytes type-specific data |
106 for payload in (self.__advData, self.__respData): |
106 for payload in (self.__advData, self.__respData): |
107 if not payload: |
107 if not payload: |
108 continue |
108 continue |
109 |
109 |