NabuCasa / sl-web-tools

Open source tools to allow working with USB-sticks containing SL chips in the browser
48 stars 6 forks source link

Thread support #7

Closed puddly closed 1 year ago

puddly commented 1 year ago

Leverages https://github.com/NabuCasa/universal-silabs-flasher/pull/13 (via universal-silabs-flasher==0.0.10) to provide support for flashing OpenThread firmware.

This PR introduces a backwards-incompatible change to the manifest.json file (should it?): baudrates are now specified in an object.

-   "bootloader_baudrate": 115200,
-   "cpc_baudrate": 115200,
-   "ezsp_baudrate": 115200,
+   "baudrates": {
+       "bootloader": 115200,
+       "cpc": 115200,
+       "ezsp": 115200,
+       "spinel": 460800,
+   },

Demo:

image