src/eric7/MicroPython/BluetoothDialogs/BluetoothAdvertisement.py

branch
eric7
changeset 10089
5fe9bfafbc7c
parent 10065
de4ae767b0e3
child 10090
8be7dd9460c5
equal deleted inserted replaced
10088:f7cc01653810 10089:5fe9bfafbc7c
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

eric ide

mercurial