Sat, 15 Apr 2023 18:22:09 +0200
MicroPython
- Added a package installer for devices lacking network connectivity and the `mip` package manager.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>ConvertToUF2Dialog</class> <widget class="QDialog" name="ConvertToUF2Dialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>600</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>Convert To UF2</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Firmware File:</string> </property> </widget> </item> <item row="0" column="1" colspan="2"> <widget class="EricPathPicker" name="firmwarePicker" native="true"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="focusPolicy"> <enum>Qt::WheelFocus</enum> </property> <property name="toolTip"> <string>Enter the path of the MicroPython firmware file to be converted.</string> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Chip Family:</string> </property> </widget> </item> <item row="1" column="1" colspan="2"> <widget class="QComboBox" name="familiesComboBox"> <property name="toolTip"> <string>Select the chip family of the firmware file.</string> </property> </widget> </item> <item row="2" column="0"> <widget class="QLabel" name="label_3"> <property name="text"> <string>Base Address:</string> </property> </widget> </item> <item row="2" column="1"> <widget class="QLineEdit" name="addressEdit"> <property name="toolTip"> <string>Enter the base address for .bin firmware files or leave empty to use the default (0x2000).</string> </property> <property name="maxLength"> <number>4</number> </property> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> <item row="2" column="2"> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>338</width> <height>20</height> </size> </property> </spacer> </item> <item row="3" column="0" colspan="3"> <widget class="QPushButton" name="convertButton"> <property name="toolTip"> <string>Press to start the conversion process.</string> </property> <property name="text"> <string>Convert</string> </property> </widget> </item> </layout> </item> <item> <widget class="QTextEdit" name="outputEdit"> <property name="readOnly"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </widget> <customwidgets> <customwidget> <class>EricPathPicker</class> <extends>QWidget</extends> <header>eric7/EricWidgets/EricPathPicker.h</header> <container>1</container> </customwidget> </customwidgets> <tabstops> <tabstop>firmwarePicker</tabstop> <tabstop>familiesComboBox</tabstop> <tabstop>addressEdit</tabstop> <tabstop>convertButton</tabstop> <tabstop>outputEdit</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>ConvertToUF2Dialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>ConvertToUF2Dialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>