src/eric7/MicroPython/Devices/EspDevices.py

branch
eric7
changeset 10019
e56089d00750
parent 9989
286c2a21f36f
child 10022
a95800b414b7
--- a/src/eric7/MicroPython/Devices/EspDevices.py	Thu May 04 17:58:52 2023 +0200
+++ b/src/eric7/MicroPython/Devices/EspDevices.py	Fri May 05 18:16:57 2023 +0200
@@ -1180,7 +1180,6 @@
         'mac': ubinascii.hexlify(ble.config('mac')[1], ':').decode(),
         'addr_type': ble.config('mac')[0],
         'name': ble.config('gap_name'),
-        'rxbuf': ble.config('rxbuf'),
         'mtu': ble.config('mtu'),
     }
 
@@ -1207,9 +1206,6 @@
                 self.tr("Public") if bleStatus == 0 else self.tr("Random"),
             )
         )
-        status.append(
-            (self.tr("Rx-Buffer"), self.tr("{0} Bytes").format(bleStatus["rxbuf"]))
-        )
         status.append((self.tr("MTU"), self.tr("{0} Bytes").format(bleStatus["mtu"])))
 
         return status

eric ide

mercurial