1193 """ |
1193 """ |
1194 from .BoardDataDialog import BoardDataDialog |
1194 from .BoardDataDialog import BoardDataDialog |
1195 |
1195 |
1196 try: |
1196 try: |
1197 boardInfo = self.__device.getBoardInformation() |
1197 boardInfo = self.__device.getBoardInformation() |
|
1198 boardInfo.update( |
|
1199 self.__device.getDeviceData( |
|
1200 ["wifi", "bluetooth", "ethernet", "ntp", "mip", "upip", "local_mip"] |
|
1201 ) |
|
1202 ) |
1198 |
1203 |
1199 dlg = BoardDataDialog(boardInfo) |
1204 dlg = BoardDataDialog(boardInfo) |
1200 dlg.exec() |
1205 dlg.exec() |
1201 except Exception as exc: |
1206 except Exception as exc: |
1202 self.showError("getBoardInformation()", str(exc)) |
1207 self.showError("getBoardInformation()", str(exc)) |