1203 Private slot to show all available information about a board. |
1203 Private slot to show all available information about a board. |
1204 """ |
1204 """ |
1205 from .BoardDataDialog import BoardDataDialog |
1205 from .BoardDataDialog import BoardDataDialog |
1206 |
1206 |
1207 try: |
1207 try: |
1208 boardInfo = self.__device.getBoardInformation() |
1208 with EricOverrideCursor(): |
1209 boardInfo.update( |
1209 boardInfo = self.__device.getBoardInformation() |
1210 self.__device.getDeviceData( |
1210 boardInfo.update( |
1211 ["wifi", "bluetooth", "ethernet", "ntp", "mip", "upip", "local_mip"] |
1211 self.__device.getDeviceData( |
1212 ) |
1212 [ |
1213 ) |
1213 "wifi", |
|
1214 "bluetooth", |
|
1215 "ethernet", |
|
1216 "ntp", |
|
1217 "mip", |
|
1218 "upip", |
|
1219 "local_mip", |
|
1220 ] |
|
1221 ) |
|
1222 ) |
1214 |
1223 |
1215 dlg = BoardDataDialog(boardInfo) |
1224 dlg = BoardDataDialog(boardInfo) |
1216 dlg.exec() |
1225 dlg.exec() |
1217 except Exception as exc: |
1226 except Exception as exc: |
1218 self.showError("getBoardInformation()", str(exc)) |
1227 self.showError("getBoardInformation()", str(exc)) |