mpflash 1.24.6__py3-none-any.whl → 1.24.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. mpflash/ask_input.py +7 -7
  2. mpflash/basicgit.py +23 -57
  3. mpflash/bootloader/__init__.py +0 -2
  4. mpflash/bootloader/activate.py +1 -1
  5. mpflash/bootloader/detect.py +1 -2
  6. mpflash/bootloader/manual.py +0 -1
  7. mpflash/bootloader/touch1200.py +2 -2
  8. mpflash/cli_flash.py +28 -5
  9. mpflash/cli_group.py +1 -0
  10. mpflash/cli_list.py +2 -2
  11. mpflash/cli_main.py +1 -1
  12. mpflash/common.py +6 -14
  13. mpflash/config.py +26 -7
  14. mpflash/connected.py +6 -14
  15. mpflash/download.py +56 -23
  16. mpflash/downloaded.py +1 -5
  17. mpflash/flash/__init__.py +33 -18
  18. mpflash/flash/esp.py +40 -9
  19. mpflash/flash/uf2/__init__.py +18 -2
  20. mpflash/flash/uf2/linux.py +4 -9
  21. mpflash/flash/uf2/macos.py +1 -1
  22. mpflash/flash/uf2/windows.py +1 -1
  23. mpflash/flash/worklist.py +7 -2
  24. mpflash/list.py +17 -6
  25. mpflash/logger.py +1 -3
  26. mpflash/mpboard_id/__init__.py +6 -87
  27. mpflash/mpboard_id/add_boards.py +6 -8
  28. mpflash/mpboard_id/board_id.py +7 -6
  29. mpflash/mpboard_id/board_info.json +30974 -0
  30. mpflash/mpboard_id/board_info.zip +0 -0
  31. mpflash/mpboard_id/known.py +94 -0
  32. mpflash/mpboard_id/store.py +0 -2
  33. mpflash/mpremoteboard/__init__.py +13 -9
  34. mpflash/mpremoteboard/mpy_fw_info.py +14 -17
  35. mpflash/py.typed +0 -0
  36. mpflash/vendor/click_aliases.py +64 -0
  37. mpflash/vendor/dfu.py +2 -8
  38. mpflash/vendor/pico-universal-flash-nuke/LICENSE.txt +21 -0
  39. mpflash/vendor/pico-universal-flash-nuke/universal_flash_nuke.uf2 +0 -0
  40. mpflash/vendor/pydfu.py +3 -14
  41. mpflash/vendor/readme.md +2 -0
  42. mpflash/versions.py +9 -6
  43. {mpflash-1.24.6.dist-info → mpflash-1.24.8.dist-info}/METADATA +71 -13
  44. mpflash-1.24.8.dist-info/RECORD +59 -0
  45. {mpflash-1.24.6.dist-info → mpflash-1.24.8.dist-info}/WHEEL +1 -1
  46. mpflash-1.24.6.dist-info/RECORD +0 -54
  47. {mpflash-1.24.6.dist-info → mpflash-1.24.8.dist-info}/LICENSE +0 -0
  48. {mpflash-1.24.6.dist-info → mpflash-1.24.8.dist-info}/entry_points.txt +0 -0
@@ -1,17 +1,15 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mpflash
3
- Version: 1.24.6
3
+ Version: 1.24.8
4
4
  Summary: Flash and download tool for MicroPython firmwares
5
5
  License: MIT
6
6
  Keywords: MicroPython,firmware,flash,download,UF2,esptool
7
7
  Author: Jos Verlinde
8
8
  Author-email: jos_verlinde@hotmail.com
9
- Requires-Python: >=3.9,<4.0
9
+ Requires-Python: >=3.9, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, !=3.8.*
10
10
  Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.9
13
12
  Classifier: Programming Language :: Python :: 3.10
14
- Classifier: Programming Language :: Python :: 3.11
15
13
  Classifier: Programming Language :: Python :: 3.12
16
14
  Classifier: Programming Language :: Python :: 3.13
17
15
  Classifier: Programming Language :: Python :: Implementation :: CPython
@@ -32,14 +30,15 @@ Requires-Dist: mpremote (>=1.22.0,<2.0.0)
32
30
  Requires-Dist: packaging (>=24.2,<25.0)
33
31
  Requires-Dist: platformdirs (>=4.2.0,<5.0.0)
34
32
  Requires-Dist: poetry (>=2.0.1,<3.0.0)
35
- Requires-Dist: psutil (>=5.9.8,<6.0.0)
33
+ Requires-Dist: psutil (>=5.9.8,<8.0.0)
36
34
  Requires-Dist: pygithub (>=2.1.1,<3.0.0)
37
35
  Requires-Dist: pyusb (>=1.2.1,<2.0.0)
36
+ Requires-Dist: pywin32 (>=310,<311) ; sys_platform == "win32"
38
37
  Requires-Dist: requests (>=2.31.0,<3.0.0)
39
38
  Requires-Dist: rich-click (>=1.8.1,<2.0.0)
40
- Requires-Dist: tenacity (==8.2.3)
41
- Project-URL: Homepage, https://github.com/Josverl/micropython-stubber/blob/main/src/mpflash/README.md
42
- Project-URL: Repository, https://github.com/Josverl/micropython-stubber
39
+ Requires-Dist: tenacity (==9.0.0)
40
+ Project-URL: Homepage, https://github.com/Josverl/mpflash/blob/main/README.md
41
+ Project-URL: Repository, https://github.com/Josverl/mpflash
43
42
  Description-Content-Type: text/markdown
44
43
 
45
44
  # MPFLASH
@@ -48,7 +47,7 @@ Description-Content-Type: text/markdown
48
47
  [![Downloads](https://static.pepy.tech/badge/mpflash)](https://pepy.tech/project/mpflash)
49
48
 
50
49
 
51
- `mpflash` is a command-line tool for working with MicroPython firmware. It provides features to help you flash and update Micropython on one or more .
50
+ `mpflash` is a command-line tool for working with MicroPython firmware. It provides features to help you flash and update Micropython on one or more attached microcontrollers.
52
51
 
53
52
  This tool was initially created to be used in a CI/CD pipeline to automate the process of downloading and flashing MicroPython firmware to multiple boards, but it has been extend with a TUI to be used for manual downloadig, flashing and development.
54
53
 
@@ -69,7 +68,10 @@ Not yet implemented: `nrf`, `cc3200`, `mimxrt`, `renesas`
69
68
  3. Flash one or all connected MicroPython boards with a specific firmware or version.
70
69
 
71
70
  ## Installation
72
- To install mpflash, you can use: `pipx install mpflash` or `pip install mpflash`
71
+ To install mpflash, you can use either of the following commands:
72
+ - `uv tool install mpflash`
73
+ - `pipx install mpflash`
74
+ - `pip install mpflash`
73
75
 
74
76
  ## Basic usage
75
77
  You can use mpflash to perform various operations on your MicroPython boards. Here is an example of basic usage:
@@ -102,6 +104,7 @@ description = "Blue Norwegian actuator"
102
104
 
103
105
  If you want the board to be ignored by mpflash, you can add the following to the board_info.toml file:
104
106
  ```toml
107
+ description = "Blue Norwegian feeder"
105
108
  [mpflash]
106
109
  ignore = true
107
110
  ```
@@ -110,8 +113,13 @@ ignore = true
110
113
  ## Linux permissions to access usb devices
111
114
  In order to flash the firmware to the board, you need to have the correct permissions to access the USB devices.
112
115
  On Windows this will not be an issue, but on Linux you can use udev rules to give non-root users access to the USB devices.
113
- [See the stm32_permissions documentation](./stm32_udev_rules.md) for more information.
116
+ [See the stm32_permissions documentation](docs/stm32_udev_rules.md) for more information.
114
117
 
118
+ ## Use MPFlash in your own project
119
+
120
+ MPFlash can be used as a library in your own project. mpflash is used in [micropython-stubber]() to download and flash the firmware to the connected boards.
121
+
122
+ The interface is not well documented other than the code itself, but you can use the following example to get started: - docs/mpflash_api_example.ipynb
115
123
 
116
124
  ## Detailed usage
117
125
  You can list the connected boards using the following command:
@@ -257,9 +265,59 @@ Note that if no matching firmware can be found for a board, it will be skipped.
257
265
  (For example, the PYBV11 and ESP32_GENERIC_S3 boards in the example above.)
258
266
 
259
267
  ## Issues and bug reports
260
- mpflash is currently co-located in the [micropython-stubber](https://github.com/Josverl/micropython-stubber) repository.
261
- Please report any issues or bugs in the [issue tracker](https://github.com/Josverl/micropython-stubber/issues) using the MPflash feedback template.
268
+ Please report any issues or bugs in the [issue tracker](https://github.com/Josverl/mpflash/issues).
262
269
 
263
270
  ## License
264
271
  mpflash is licensed under the MIT license. See the LICENSE file for more details.
265
272
 
273
+ # Contributions
274
+ <!-- spell-checker: disable -->
275
+ <!--
276
+ To add via the cli run the following command:
277
+ npx all-contributors-cli add user things
278
+
279
+ - bug
280
+ - tool
281
+ - stubs
282
+ - test
283
+ - doc
284
+ - code
285
+ - research
286
+ - ideas
287
+ - content
288
+ - mpflash
289
+ -->
290
+
291
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
292
+ <!-- prettier-ignore-start -->
293
+ <!-- markdownlint-disable -->
294
+ <table>
295
+ <tbody>
296
+ <tr>
297
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/Josverl"><img src="https://avatars2.githubusercontent.com/u/981654?v=4?s=100" width="100px;" alt="Jos Verlinde"/><br /><sub><b>Jos Verlinde</b></sub></a><br /><a href="https://github.com/Josverl/mpflash/commits?author=josverl" title="Code">💻</a> <a href="#research-josverl" title="Research">🔬</a> <a href="#ideas-josverl" title="Ideas, Planning, & Feedback">🤔</a> <a href="#content-josverl" title="Content">🖋</a> <a href="#test-josverl" title="Test">✅</a> <a href="#mpflash-josverl" title="mpflash">💥</a></td>
298
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/shariltumin"><img src="https://avatars.githubusercontent.com/u/186120?v=4?s=100" width="100px;" alt="shariltumin"/><br /><sub><b>shariltumin</b></sub></a><br /><a href="#mpflash-shariltumin" title="mpflash">💥</a> <a href="#test-shariltumin" title="Test">✅</a></td>
299
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/mattytrentini"><img src="https://avatars.githubusercontent.com/u/194201?v=4?s=100" width="100px;" alt="Matt Trentini"/><br /><sub><b>Matt Trentini</b></sub></a><br /><a href="#mpflash-mattytrentini" title="mpflash">💥</a> <a href="#test-mattytrentini" title="Test">✅</a></td>
300
+ <td align="center" valign="top" width="14.28%"><a href="http://scruss.com/blog/"><img src="https://avatars.githubusercontent.com/u/425706?v=4?s=100" width="100px;" alt="Stewart Russell"/><br /><sub><b>Stewart Russell</b></sub></a><br /><a href="#mpflash-scruss" title="mpflash">💥</a> <a href="#test-scruss" title="Test">✅</a></td>
301
+ <td align="center" valign="top" width="14.28%"><a href="https://www.gitlab.com/alelec"><img src="https://avatars.githubusercontent.com/u/3318786?v=4?s=100" width="100px;" alt="Andrew Leech"/><br /><sub><b>Andrew Leech</b></sub></a><br /><a href="#mpflash-andrewleech" title="mpflash">💥</a> <a href="#test-andrewleech" title="Test">✅</a></td>
302
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/wovo"><img src="https://avatars.githubusercontent.com/u/9039468?v=4?s=100" width="100px;" alt="Wouter van Ooijen"/><br /><sub><b>Wouter van Ooijen</b></sub></a><br /><a href="#mpflash-wovo" title="mpflash">💥</a> <a href="#test-wovo" title="Test">✅</a></td>
303
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/shaneapowell"><img src="https://avatars.githubusercontent.com/u/12113620?v=4?s=100" width="100px;" alt="Shane Powell"/><br /><sub><b>Shane Powell</b></sub></a><br /><a href="#mpflash-shaneapowell" title="mpflash">💥</a> <a href="#test-shaneapowell" title="Test">✅</a></td>
304
+ </tr>
305
+ <tr>
306
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/robert-hh"><img src="https://avatars.githubusercontent.com/u/12476868?v=4?s=100" width="100px;" alt="Robert Hammelrath"/><br /><sub><b>Robert Hammelrath</b></sub></a><br /><a href="#mpflash-robert-hh" title="mpflash">💥</a> <a href="#test-robert-hh" title="Test">✅</a></td>
307
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/beetlegigg"><img src="https://avatars.githubusercontent.com/u/34552737?v=4?s=100" width="100px;" alt="Bg"/><br /><sub><b>Bg</b></sub></a><br /><a href="#mpflash-beetlegigg" title="mpflash">💥</a> <a href="#test-beetlegigg" title="Test">✅</a></td>
308
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/rkompass"><img src="https://avatars.githubusercontent.com/u/90282516?v=4?s=100" width="100px;" alt="Raul Kompaß"/><br /><sub><b>Raul Kompaß</b></sub></a><br /><a href="#mpflash-rkompass" title="mpflash">💥</a> <a href="#test-rkompass" title="Test">✅</a></td>
309
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/garryp4"><img src="https://avatars.githubusercontent.com/u/96994876?v=4?s=100" width="100px;" alt="garryp4"/><br /><sub><b>garryp4</b></sub></a><br /><a href="#mpflash-garryp4" title="mpflash">💥</a> <a href="#test-garryp4" title="Test">✅</a></td>
310
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/shanepowell-ast"><img src="https://avatars.githubusercontent.com/u/102747617?v=4?s=100" width="100px;" alt="Shane Powell"/><br /><sub><b>Shane Powell</b></sub></a><br /><a href="#mpflash-shanepowell-ast" title="mpflash">💥</a> <a href="#test-shanepowell-ast" title="Test">✅</a></td>
311
+ <td align="center" valign="top" width="14.28%"><a href="https://andypiper.org/"><img src="https://avatars.githubusercontent.com/u/552452?v=4?s=100" width="100px;" alt="Andy Piper"/><br /><sub><b>Andy Piper</b></sub></a><br /><a href="#mpflash-andypiper" title="mpflash">💥</a> <a href="#test-andypiper" title="Test">✅</a></td>
312
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/DavesCodeMusings"><img src="https://avatars.githubusercontent.com/u/61114342?v=4?s=100" width="100px;" alt="David Horton"/><br /><sub><b>David Horton</b></sub></a><br /><a href="#mpflash-DavesCodeMusings" title="mpflash">💥</a> <a href="#test-DavesCodeMusings" title="Test">✅</a></td>
313
+ </tr>
314
+ </tbody>
315
+ </table>
316
+
317
+ <!-- markdownlint-restore -->
318
+ <!-- prettier-ignore-end -->
319
+
320
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
321
+
322
+ This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
323
+
@@ -0,0 +1,59 @@
1
+ mpflash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ mpflash/add_firmware.py,sha256=1h0HsA-EVi3HXLmoEvzwY_a-GuWYzPwulTYHHBB8THg,3428
3
+ mpflash/ask_input.py,sha256=piwMuW7QlYsIvDdJFN1lVCkCGsmsSyyMaUOtvf_S330,8885
4
+ mpflash/basicgit.py,sha256=K2pf8p59-tnQgbmP94yveCKHLm7sOLGdF4OLPI6vvKg,9599
5
+ mpflash/bootloader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ mpflash/bootloader/activate.py,sha256=orQOw4XTkXVZI-rMInRb0T5Wp3qA_BlzbJUA2gyBToU,2361
7
+ mpflash/bootloader/detect.py,sha256=OagP2QVWeLLWkZt2paqEF6r4_x3QDcBGNCPOWfMy9NQ,2686
8
+ mpflash/bootloader/manual.py,sha256=C3PVLW3lwz66zG2mOekAJdwXD8PZcIyI3VuLEkusMpI,3168
9
+ mpflash/bootloader/micropython.py,sha256=v_kZkvg0uWZDbMrT78gmiYHbD83QLdnrctvEClI8iRg,529
10
+ mpflash/bootloader/touch1200.py,sha256=VND7_YniS9Vx6WEaAxjI72RZZ6WBOwmBTsKJkbuaAHk,1105
11
+ mpflash/cli_download.py,sha256=6p83u0Iqyq-V6zS_zQbngSgnCnE0thNPR02r_12_d_Y,3660
12
+ mpflash/cli_flash.py,sha256=2D4OYkuJbq6hSQ7sP2r33ILLahtwAvmnNKqjsZ6-8nY,8316
13
+ mpflash/cli_group.py,sha256=_Wj4EvRkmPri6wyJWT8cQ0WRMwrj9xtCDLaxFJs7ssM,2617
14
+ mpflash/cli_list.py,sha256=jwnfHN-RE-8x37YhPrnQs10SHfD1kVwESkJsXyqLBIo,2411
15
+ mpflash/cli_main.py,sha256=3zUiWBRCdOHTXZ7BPuBcafsOW7GClUvGBH1OhIs76js,1128
16
+ mpflash/common.py,sha256=1mEsilJd3HpL7wFPsJ0EScYoJj7JqGFWDjSFEKJdjeU,7488
17
+ mpflash/config.py,sha256=X7nufiMA3rKTFBiZkJY_WHtRv8U_x19QrAb49xsszRM,2024
18
+ mpflash/connected.py,sha256=oxZdk1o-AfNPhJsSxr3KrMH_gdYfrjqc_IpT6J8Ng9k,3496
19
+ mpflash/download.py,sha256=IFPK3lj5BZpL9ylwjiLFn1ZNQ3mCibAYRq836hnquD0,15550
20
+ mpflash/downloaded.py,sha256=5kmbap2SumCpxYvI8QVZm87u9Ns3dIsZ7Mds2quiuQk,5110
21
+ mpflash/errors.py,sha256=IAidY3qkZsXy6Pm1rdmVFmGyg81ywHhse3itaPctA2w,247
22
+ mpflash/flash/__init__.py,sha256=V--YRwDGtCCLVfCe9p9SGV1Cbi0FNd9zenKlIb-HFw0,2820
23
+ mpflash/flash/esp.py,sha256=N71fPMYhYexEF3YeJGJ74B3GtceXa-FdGqiBpa2qboI,3225
24
+ mpflash/flash/stm32.py,sha256=dqp9BZ4Vr-6GlQcF12TSmRf-5TXkov9qvCpMgeUJc7Y,574
25
+ mpflash/flash/stm32_dfu.py,sha256=W-3JsRQyf3DduoIRXDmGZ35RogqtjQgcJnk-GOtQoLE,3090
26
+ mpflash/flash/uf2/__init__.py,sha256=haL84hP2p1ZjKF6dXJJHAB_NTf7jT91MuZvmvg9SpIA,3617
27
+ mpflash/flash/uf2/boardid.py,sha256=U5wGM8VA3wEpUxQCMtuXpMZZomdVH8J_Zd5_GekUMuU,423
28
+ mpflash/flash/uf2/linux.py,sha256=uTgqyS7C7xfQ25RrTcSUkt-m2u2Ks_o7bPLzIecPoC8,4355
29
+ mpflash/flash/uf2/macos.py,sha256=JTaIpqnR_0k4oSEvzs9amhmK-PMxUJyZLnZ_wZwxa-0,1228
30
+ mpflash/flash/uf2/uf2disk.py,sha256=4_P2l-kedM7VSliA2u706LQLxvu3xWSod1-lj-xjZis,298
31
+ mpflash/flash/uf2/windows.py,sha256=S---sVjVrC00ZcnpOewtJIBfSCj2cr7FGQwEm_ZEDnY,1334
32
+ mpflash/flash/worklist.py,sha256=lNCzi_Hyr4xNWmCsUMcH4T589nIfN00Xcpoa56mDNOE,6087
33
+ mpflash/list.py,sha256=AjsVTWWTcfUhoT2lYJf2KvcOgMen9MgXY6fDYJvd0Mc,4014
34
+ mpflash/logger.py,sha256=D6S-KDhXTLl7bYMKfu71iVO1YlpGSd0BcHvkVFOCW5c,1080
35
+ mpflash/mpboard_id/__init__.py,sha256=i-HxDi4UPvQu2zFhWK5HENr_HmTdsnaqkLfNyxjOelg,515
36
+ mpflash/mpboard_id/add_boards.py,sha256=XCSyZC9v-B5gzW4dIWdqQVIiE8JviKx0GpyGEQ64dm8,9949
37
+ mpflash/mpboard_id/board.py,sha256=JKb4T67HmK7widW-4c1PgilvywMbZYToLk9Fyokm-6Q,1163
38
+ mpflash/mpboard_id/board_id.py,sha256=8MDExMMDL8mR1kioXMgRQzJ02GMxzYUQarLsKtY6DAw,3372
39
+ mpflash/mpboard_id/board_info.json,sha256=A3ZIt38KvAy2NMB5srHorSBd3Q3wOZIXufWiIs3XLrs,1019745
40
+ mpflash/mpboard_id/board_info.zip,sha256=0rQkVLOBRg5dwvkLmJtRdCXwKiA9arkWYVH7N8dYuNw,21720
41
+ mpflash/mpboard_id/known.py,sha256=7aJ0_RPsNipGQGKk3Y7FN5J4Stu33yOxc7j9hXHNd98,3852
42
+ mpflash/mpboard_id/store.py,sha256=oxk84RI8y1AMXtVz_lW9iY5wWJBN_71mo8VUp6vOGBE,1663
43
+ mpflash/mpremoteboard/__init__.py,sha256=h7AgDt9IVHn31cM5a_Ux7vB2P91Mz__u1-32dlayu8Y,9936
44
+ mpflash/mpremoteboard/mpy_fw_info.py,sha256=gGuEYLJJbIix7sXM8PNnT4rY4TMyEFcIh_nkZ3K_JjU,4943
45
+ mpflash/mpremoteboard/runner.py,sha256=-PgzAeBGbyXaAUlwyiw4mcINsP2U1XRRjP1_QdBrxpg,4786
46
+ mpflash/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
+ mpflash/vendor/board_database.py,sha256=QE3oXj96oTAsx94gNfHMYWu_RgBTHW1v9Wp5dq_Dt-Q,5253
48
+ mpflash/vendor/click_aliases.py,sha256=adLhqLxNpJEPjSCIRSTkR-QzSgavGFKT0cwRbjxpzRU,5395
49
+ mpflash/vendor/dfu.py,sha256=6rqGCBS8mTxxaLtkdzJ8O6nc74kFk8jrkmKvxw-x-u8,5693
50
+ mpflash/vendor/pico-universal-flash-nuke/LICENSE.txt,sha256=Zkc2iTNbib2NCMwtLjMEz0vFCPglgvaw6Mj7QiWldpQ,1484
51
+ mpflash/vendor/pico-universal-flash-nuke/universal_flash_nuke.uf2,sha256=QuPMppqHMVOt3vDVU0bikHRLsTiDRQYNUcGQ_OLRFGI,28160
52
+ mpflash/vendor/pydfu.py,sha256=uD0esm1iPHap7T93M_fli1LlXwn8RxKDFRnt8inxJu8,20389
53
+ mpflash/vendor/readme.md,sha256=BQ7Uxf8joeYMjTUuSLLBG49ob6a9MgFPIEwuc72-Mfw,415
54
+ mpflash/versions.py,sha256=ax7DBbBwqmJTdm1fkrQVe9zi3cdU3jv_-mwEz0-SydI,4584
55
+ mpflash-1.24.8.dist-info/entry_points.txt,sha256=Jk_visOhYOsZIcSP2Ms9hKqfKy1iorR-6dYltSoWCpY,52
56
+ mpflash-1.24.8.dist-info/LICENSE,sha256=mWpNhsIxWzetYNnTpr4eb3HtgsxGIC8KcYWxXEcxQvE,1077
57
+ mpflash-1.24.8.dist-info/METADATA,sha256=ZEWCmCHX7tawk9vvh6SyOA-NVZOIf6q-Vv5a69HBKjM,23930
58
+ mpflash-1.24.8.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
59
+ mpflash-1.24.8.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.0.1
2
+ Generator: poetry-core 2.1.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,54 +0,0 @@
1
- mpflash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- mpflash/add_firmware.py,sha256=1h0HsA-EVi3HXLmoEvzwY_a-GuWYzPwulTYHHBB8THg,3428
3
- mpflash/ask_input.py,sha256=RJHGGrhYniSu-bdoKnKptE3DtpiCREJGRTZmFazvG-E,8946
4
- mpflash/basicgit.py,sha256=NO27JTPUsnMWQ2bKI_zsIFsFTfCZO3QKbvQ23kIehxU,10734
5
- mpflash/bootloader/__init__.py,sha256=Qy3E6tETPnzMga9LgD5UgOvJ0zZIBEqhtEVb4v8CTWQ,107
6
- mpflash/bootloader/activate.py,sha256=FlO4XQlKyoOuvmDdj_0u_mjNPhjGwB_K17jQ-8nSXRA,2361
7
- mpflash/bootloader/detect.py,sha256=fBrILi7-ICRaregqms3PYqwiQVAJC0rXVhpyzDkoPQI,2690
8
- mpflash/bootloader/manual.py,sha256=2IfxrTFRso78FezVMTOrXMEojamFDDTXrAM9g1SbjNA,3170
9
- mpflash/bootloader/micropython.py,sha256=v_kZkvg0uWZDbMrT78gmiYHbD83QLdnrctvEClI8iRg,529
10
- mpflash/bootloader/touch1200.py,sha256=hQ2Ng2zkvnCnQ4A7Sir4SuW3nlSu1ojUfHCLbIiDjrE,1119
11
- mpflash/cli_download.py,sha256=6p83u0Iqyq-V6zS_zQbngSgnCnE0thNPR02r_12_d_Y,3660
12
- mpflash/cli_flash.py,sha256=pVqEsDocDT3KmIMTpXdym-ZlzThLSIp6oVtYib65dys,7595
13
- mpflash/cli_group.py,sha256=VWwYHiPVV19sQEr5lL8LlcPyZ-A6Gs79eMDJy8LLt90,2615
14
- mpflash/cli_list.py,sha256=ja21AZ4yghGTtOHkEtV1EOmT6EYxOiU2gzJc-mZaDto,2427
15
- mpflash/cli_main.py,sha256=5EkvzsqOUDXvNaW814oSUcPWeNhnwh78Sg0MteDv_fk,1133
16
- mpflash/common.py,sha256=umTouKs5Wb7Q2zOaaoO9nqmlpHIaiDBRIGYIkZMBVO8,7558
17
- mpflash/config.py,sha256=tdpvAvAlpco1GfeG2evn5tAKYluLEanqwrrvkir7QcQ,1073
18
- mpflash/connected.py,sha256=woYhuXoWpfzRMDUpBLVQZbVTGtMsKWNd5z1rsR1ELXA,3578
19
- mpflash/download.py,sha256=wE4uBSFFMAKOBH4jwHweL0wVYh4vi74t1673ku_IeoA,14305
20
- mpflash/downloaded.py,sha256=nxTWU4lvhcthqvVmzpYHnXCnjD8wJv0KFq2KtaoTO1A,5160
21
- mpflash/errors.py,sha256=IAidY3qkZsXy6Pm1rdmVFmGyg81ywHhse3itaPctA2w,247
22
- mpflash/flash/__init__.py,sha256=g4Fp8MiquaDZXIvRJwYRkkll1MMyRud7x6qmwCk9Lgo,2096
23
- mpflash/flash/esp.py,sha256=_VfbyYIEaUgAjsD66tjbdgYL6ElkSAfpIMKz6q4QKig,2287
24
- mpflash/flash/stm32.py,sha256=dqp9BZ4Vr-6GlQcF12TSmRf-5TXkov9qvCpMgeUJc7Y,574
25
- mpflash/flash/stm32_dfu.py,sha256=W-3JsRQyf3DduoIRXDmGZ35RogqtjQgcJnk-GOtQoLE,3090
26
- mpflash/flash/uf2/__init__.py,sha256=ucTg1pg7TruwPjecCPWYRpCwWPz-rngv7UYaQ_bMzww,2854
27
- mpflash/flash/uf2/boardid.py,sha256=U5wGM8VA3wEpUxQCMtuXpMZZomdVH8J_Zd5_GekUMuU,423
28
- mpflash/flash/uf2/linux.py,sha256=UgoF_GhJdxA2NvfcFNV69YuDg3v4ueLM0epsDzmfKK0,4440
29
- mpflash/flash/uf2/macos.py,sha256=TGGijlnMJy3RDhdPS3WsPOE2lWFOQbqC3xn4cxLu8GA,1229
30
- mpflash/flash/uf2/uf2disk.py,sha256=4_P2l-kedM7VSliA2u706LQLxvu3xWSod1-lj-xjZis,298
31
- mpflash/flash/uf2/windows.py,sha256=v89eXA3QwZxilCazi3Z--yY8UNtZ94trNEJ6U7XUuXA,1333
32
- mpflash/flash/worklist.py,sha256=owS3xJbWC-SzbK9z6jQER0Kat3OIV09IxnV-f-tjGlY,5998
33
- mpflash/list.py,sha256=lP_S5xbC0Men9HsXcIxOsP0bFRlCYh5CynMLFJx8cEE,3607
34
- mpflash/logger.py,sha256=dI_H_a7EOdQJyvoeRHQuYeZuTKYVUS3DUPTLhE9rkdM,1098
35
- mpflash/mpboard_id/__init__.py,sha256=b9PJiKFqmfyYgfi0-pbWGp2mrljdgvO6DNy0ABS8izU,3898
36
- mpflash/mpboard_id/add_boards.py,sha256=Bc83FctlVl4u4j0xeKTfEkuQj0WWIqxtdUF1P5RTAvY,9900
37
- mpflash/mpboard_id/board.py,sha256=JKb4T67HmK7widW-4c1PgilvywMbZYToLk9Fyokm-6Q,1163
38
- mpflash/mpboard_id/board_id.py,sha256=MnDWPqp0OqCkWD3E1Mhg-g20qASgPVHdROOCdr5TpOU,3249
39
- mpflash/mpboard_id/board_info.zip,sha256=DC_yHwL8A8IC0YsA2ZXjlRLZkLKiw03k4FR2HSTfBXw,21328
40
- mpflash/mpboard_id/store.py,sha256=n85vnUAxGKv1C23wkm22ZFAFGK6AZZiCFvc1lGJJjis,1703
41
- mpflash/mpremoteboard/__init__.py,sha256=Vydc7jZai32lrGTUjwylZT9U8yulsgLIk39mnuI_k9I,9666
42
- mpflash/mpremoteboard/mpy_fw_info.py,sha256=eRjhqN7MpmYE9TiS4iukquZZs3QE_lD5zv_vOPSjNrk,4821
43
- mpflash/mpremoteboard/runner.py,sha256=-PgzAeBGbyXaAUlwyiw4mcINsP2U1XRRjP1_QdBrxpg,4786
44
- mpflash/vendor/board_database.py,sha256=QE3oXj96oTAsx94gNfHMYWu_RgBTHW1v9Wp5dq_Dt-Q,5253
45
- mpflash/vendor/click_aliases.py,sha256=c853EHSlkE2DvFqeFvFpwXKuJj3_jsXDP7iotVOKaAw,3156
46
- mpflash/vendor/dfu.py,sha256=ZXMcE6aH4-43Wh4tbQT4U-q-BU3RUiL3JAxmP_QAK2s,5755
47
- mpflash/vendor/pydfu.py,sha256=_MdBRo1EeNeKDqFPSTB5tNL1jGSBJgsVeVjE5e7Pb8s,20542
48
- mpflash/vendor/readme.md,sha256=KcCbOVb_-9V6Cwwd0J01Avx4LuZphe9UJ40Gs-Hocf4,327
49
- mpflash/versions.py,sha256=qGkE2LTzQ1QDyHc9-wzsHsRrN7PWK69xt0Vq3EVojms,4452
50
- mpflash-1.24.6.dist-info/entry_points.txt,sha256=Jk_visOhYOsZIcSP2Ms9hKqfKy1iorR-6dYltSoWCpY,52
51
- mpflash-1.24.6.dist-info/LICENSE,sha256=mWpNhsIxWzetYNnTpr4eb3HtgsxGIC8KcYWxXEcxQvE,1077
52
- mpflash-1.24.6.dist-info/METADATA,sha256=H5PkYQyib3lTOeIc2HPGJjP6PTNxUUVb02UP2GoY8TM,17757
53
- mpflash-1.24.6.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
54
- mpflash-1.24.6.dist-info/RECORD,,