micropython-stubber 1.16.2__py3-none-any.whl → 1.17.0__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.
- {micropython_stubber-1.16.2.dist-info → micropython_stubber-1.17.0.dist-info}/METADATA +2 -1
- {micropython_stubber-1.16.2.dist-info → micropython_stubber-1.17.0.dist-info}/RECORD +54 -54
- stubber/__init__.py +1 -1
- stubber/basicgit.py +27 -33
- stubber/board/board_info.csv +137 -103
- stubber/board/createstubs.py +222 -189
- stubber/board/createstubs_db.py +284 -214
- stubber/board/createstubs_db_min.py +286 -265
- stubber/board/createstubs_db_mpy.mpy +0 -0
- stubber/board/createstubs_lvgl.py +171 -113
- stubber/board/createstubs_lvgl_min.py +738 -275
- stubber/board/createstubs_lvgl_mpy.mpy +0 -0
- stubber/board/createstubs_mem.py +237 -174
- stubber/board/createstubs_mem_min.py +263 -247
- stubber/board/createstubs_mem_mpy.mpy +0 -0
- stubber/board/createstubs_min.py +242 -227
- stubber/board/createstubs_mpy.mpy +0 -0
- stubber/board/fw_info.py +135 -0
- stubber/board/modulelist.txt +1 -2
- stubber/codemod/_partials/__init__.py +1 -1
- stubber/codemod/_partials/db_main.py +90 -72
- stubber/codemod/_partials/modules_reader.py +29 -17
- stubber/codemod/board.py +2 -4
- stubber/codemod/enrich.py +1 -1
- stubber/commands/build_cmd.py +6 -4
- stubber/commands/get_docstubs_cmd.py +6 -11
- stubber/commands/get_frozen_cmd.py +6 -11
- stubber/commands/switch_cmd.py +6 -4
- stubber/data/board_info.csv +134 -101
- stubber/data/board_info.json +1357 -901
- stubber/freeze/freeze_manifest_2.py +2 -1
- stubber/freeze/get_frozen.py +28 -13
- stubber/minify.py +56 -43
- stubber/publish/candidates.py +15 -23
- stubber/publish/defaults.py +2 -2
- stubber/publish/merge_docstubs.py +5 -7
- stubber/publish/missing_class_methods.py +2 -2
- stubber/publish/pathnames.py +2 -2
- stubber/publish/publish.py +2 -1
- stubber/publish/stubpackage.py +20 -40
- stubber/rst/lookup.py +9 -7
- stubber/rst/reader.py +2 -1
- stubber/stubber.py +5 -6
- stubber/update_fallback.py +3 -1
- stubber/update_module_list.py +1 -1
- stubber/utils/__init__.py +1 -1
- stubber/utils/config.py +7 -9
- stubber/utils/post.py +1 -1
- stubber/utils/repos.py +10 -7
- stubber/utils/versions.py +48 -7
- stubber/variants.py +3 -3
- stubber/board/logging.py +0 -99
- {micropython_stubber-1.16.2.dist-info → micropython_stubber-1.17.0.dist-info}/LICENSE +0 -0
- {micropython_stubber-1.16.2.dist-info → micropython_stubber-1.17.0.dist-info}/WHEEL +0 -0
- {micropython_stubber-1.16.2.dist-info → micropython_stubber-1.17.0.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: micropython-stubber
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.17.0
|
4
4
|
Summary: Tooling to create and maintain stubs for MicroPython
|
5
5
|
Home-page: https://github.com/Josverl/micropython-stubber#readme
|
6
6
|
License: MIT
|
@@ -38,6 +38,7 @@ Requires-Dist: pyserial (>=3.5,<4.0)
|
|
38
38
|
Requires-Dist: pysondb-v2 (>=2.1.0,<3.0.0)
|
39
39
|
Requires-Dist: python-minifier (>=2.7.0,<3.0.0)
|
40
40
|
Requires-Dist: requests (>=2.28.0,<3.0.0)
|
41
|
+
Requires-Dist: rich-click (>=1.7.3,<2.0.0)
|
41
42
|
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
|
42
43
|
Requires-Dist: tenacity (>=8.2.2,<9.0.0)
|
43
44
|
Requires-Dist: tomli (>=2.0.1,<3.0.0) ; python_version < "3.11"
|
@@ -1,57 +1,57 @@
|
|
1
|
-
stubber/__init__.py,sha256=
|
2
|
-
stubber/basicgit.py,sha256=
|
3
|
-
stubber/board/board_info.csv,sha256=
|
1
|
+
stubber/__init__.py,sha256=4lEzgn3yporXm1wTBvBjkHifnOZVmko4yEiRWPe6LL0,51
|
2
|
+
stubber/basicgit.py,sha256=5y7eIxmZXfGHwgGrdHtFWTB-tYdgAc7A-0b299wHMYc,9543
|
3
|
+
stubber/board/board_info.csv,sha256=K2VSmfR013fN-oJWkQUmiQ19w09dVwJHDquPy6QmMhY,8627
|
4
4
|
stubber/board/boot.py,sha256=XjWlKErU5nI1HJSugXIP_3hlwgRQboE6sJrpcbSygnk,1120
|
5
|
-
stubber/board/createstubs.py,sha256=
|
6
|
-
stubber/board/createstubs_db.py,sha256=
|
7
|
-
stubber/board/createstubs_db_min.py,sha256=
|
8
|
-
stubber/board/createstubs_db_mpy.mpy,sha256=
|
9
|
-
stubber/board/createstubs_lvgl.py,sha256=
|
10
|
-
stubber/board/createstubs_lvgl_min.py,sha256=
|
11
|
-
stubber/board/createstubs_lvgl_mpy.mpy,sha256=
|
12
|
-
stubber/board/createstubs_mem.py,sha256=
|
13
|
-
stubber/board/createstubs_mem_min.py,sha256=
|
14
|
-
stubber/board/createstubs_mem_mpy.mpy,sha256=
|
15
|
-
stubber/board/createstubs_min.py,sha256=
|
16
|
-
stubber/board/createstubs_mpy.mpy,sha256=
|
5
|
+
stubber/board/createstubs.py,sha256=ouxzbsQ4ENflgrvjV9NAnTIzFZFhuQlL3nGITjgLA5k,32312
|
6
|
+
stubber/board/createstubs_db.py,sha256=ZoGRFzdZWwWwAq1fMKegGuhhphH9RS5RSrlBClfXd2A,30024
|
7
|
+
stubber/board/createstubs_db_min.py,sha256=Vp6M1V2BexGktuE5m24laEVH9SZtRqhu3hP8T_SLm7s,11323
|
8
|
+
stubber/board/createstubs_db_mpy.mpy,sha256=tcCeLwAeGY5GfladqcZGSKjIBB5owJIb7vIVvXKCAEo,9427
|
9
|
+
stubber/board/createstubs_lvgl.py,sha256=CTe7eq1ACRK_JJxavaqDD8znn29nSWJiHHTZ_ps6EhM,27217
|
10
|
+
stubber/board/createstubs_lvgl_min.py,sha256=jLkWYmeboI2A8feMC7pT7cYWttLejQTuX7WAEZCylhw,27207
|
11
|
+
stubber/board/createstubs_lvgl_mpy.mpy,sha256=ex-nlq2V5e8anQBJvRWEEc-FzU7nlwg5NSrZ8vOadIA,9267
|
12
|
+
stubber/board/createstubs_mem.py,sha256=TA9ZaiJnG9WN7avaQrMWhv2LhL1pFV_DhTaO5pSJ4Fs,28358
|
13
|
+
stubber/board/createstubs_mem_min.py,sha256=R4EmIZy_S2O20PlmF6AgiH_dOAHB2GaS4LCPTcmtJUc,10869
|
14
|
+
stubber/board/createstubs_mem_mpy.mpy,sha256=tgrIEjfLCdBC9k3nLnjaIAY8j1oSvSulAS2t1ljQQ04,9009
|
15
|
+
stubber/board/createstubs_min.py,sha256=YY2HEaqpdN4VDUSZfIBPcCNgGuY_UXV6BeU4gqhPPJ4,13408
|
16
|
+
stubber/board/createstubs_mpy.mpy,sha256=4SjMXX59-g42MpgazS0nNP_sqqKfuLjUeN23kagLiFc,12111
|
17
|
+
stubber/board/fw_info.py,sha256=p5Szrqmp-DW1ieASEHL5rM7VN3gsLia21MB34lCX86g,4335
|
17
18
|
stubber/board/info.py,sha256=b7SOPZHVsVhaayKCwVkFZlYu0BW-UFI7LuG1Eop9480,5629
|
18
|
-
stubber/board/logging.py,sha256=rdneoAwZg84uiWBJWYIp0gMcT2oU9Lu-1WIu1LqT_9w,2218
|
19
19
|
stubber/board/main.py,sha256=f6V3tdt6sPZVLuwemT-NLuK9GySfW2c2J6PJMOOWQQw,413
|
20
|
-
stubber/board/modulelist.txt,sha256=
|
20
|
+
stubber/board/modulelist.txt,sha256=UrhmJUkrDaT3-URvVlAoXqOGT7KxfN9BXCM2EcEvpn0,2770
|
21
21
|
stubber/board/pyrightconfig.json,sha256=6oHS4aDOfwKBAFeUPsCGJzEXpUgBZsPaF0M4P-N26D4,1376
|
22
22
|
stubber/codemod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
-
stubber/codemod/_partials/__init__.py,sha256=
|
24
|
-
stubber/codemod/_partials/db_main.py,sha256=
|
23
|
+
stubber/codemod/_partials/__init__.py,sha256=4v1lkgSBzFw08gxwujh5sivpbJbYqg5lZeRzgyvN4TE,1561
|
24
|
+
stubber/codemod/_partials/db_main.py,sha256=APeyLDuAc-FNXRQ7ECFVqVPLfOLVyAoLuE83e2Sfg1E,4183
|
25
25
|
stubber/codemod/_partials/lvgl_main.py,sha256=eAZt-nRNg7fxLmqFpt5SDd_IDtcbAY9Xz7QzxwarQSg,1934
|
26
|
-
stubber/codemod/_partials/modules_reader.py,sha256=
|
26
|
+
stubber/codemod/_partials/modules_reader.py,sha256=dJj-H0ncUWVtilSyohQ-dyiUZOjQObds_-llwy_LkYU,2046
|
27
27
|
stubber/codemod/add_comment.py,sha256=CZMjtKO9aarZo1E60QXo80CLJAH05z_ylK6Vvjvb0ls,1965
|
28
28
|
stubber/codemod/add_method.py,sha256=SSGgblIRCxo_m6uhkI1-DnVcCJYo2bhnhuWkOObbROU,2611
|
29
|
-
stubber/codemod/board.py,sha256=
|
30
|
-
stubber/codemod/enrich.py,sha256=
|
29
|
+
stubber/codemod/board.py,sha256=RyXX1n8ikEQR8w5FQWBXXE-PD3uyM4woFFMw1rzIJ_8,11756
|
30
|
+
stubber/codemod/enrich.py,sha256=VFhGhrajiEKZMPi9LrxQVtp3r-JMM-PNPJysTg6Jaws,5453
|
31
31
|
stubber/codemod/merge_docstub.py,sha256=BHjUZXt8nElX_q1ZBW2Z4gbAa5l291gYK9XPeQe9pj8,12691
|
32
32
|
stubber/codemod/modify_list.py,sha256=xrpFBKug273D9E02owUheZD418BvsIHIZCFj4YDjTxU,2118
|
33
33
|
stubber/codemod/utils.py,sha256=itARwbMps9UlzMaf4F3wJLJXJvtD-HYq1T1xw96zmR8,2459
|
34
34
|
stubber/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
-
stubber/commands/build_cmd.py,sha256=
|
35
|
+
stubber/commands/build_cmd.py,sha256=a3wW-SLw0HKl3b_7knqoUjMRHbZ14S6oeIQyEnf5-js,2461
|
36
36
|
stubber/commands/cli.py,sha256=pHtViupghgqKMxbyk5_Zz-qHx6i-BGdnTqRO-kngH2E,1850
|
37
37
|
stubber/commands/clone_cmd.py,sha256=Yutrkmt0FYF5XY2XFIbA7iUkFkT6FypDSLby790PMn0,2646
|
38
38
|
stubber/commands/config_cmd.py,sha256=Rmus8FoWtq9_3r6PC2r1rxuY54tar8-MeLiR_kUPkc0,920
|
39
39
|
stubber/commands/enrich_folder_cmd.py,sha256=oDXBeBow9wb7J3dAWcqEp7-Xjhe7hcb76FqBiP8bpgQ,1858
|
40
40
|
stubber/commands/get_core_cmd.py,sha256=oxiDb_r1Ao9N2maeV0EBKosI4nRDNJkDk52xNunYICM,2226
|
41
|
-
stubber/commands/get_docstubs_cmd.py,sha256=
|
42
|
-
stubber/commands/get_frozen_cmd.py,sha256=
|
41
|
+
stubber/commands/get_docstubs_cmd.py,sha256=kgUa5FXbCjipfOSFHOJ7A3K4aFiNqP3hg3ntLbAyX8w,2792
|
42
|
+
stubber/commands/get_frozen_cmd.py,sha256=hwq0GPfQBZA69zbBB1Jc5IkaXpNvd8U9qmdskSDDd6g,3971
|
43
43
|
stubber/commands/get_lobo_cmd.py,sha256=ss-MEeaDAAqQhBsvnSPjhQVd9adeJpe-EVR-Xt9iWjU,1516
|
44
44
|
stubber/commands/merge_cmd.py,sha256=2gQYxqapVGD8WMBsqRES7xjIS8acu4hTyutr1OANpAo,1673
|
45
45
|
stubber/commands/minify_cmd.py,sha256=PFFTezbPaXZ9vugQJ-s3zzbIuVm-PpFqDAPriKVTKgw,2272
|
46
46
|
stubber/commands/publish_cmd.py,sha256=myvgP7Y-pb-nyrMVMelNmIVHbxeK4g1ZXmQtxASblkk,2910
|
47
47
|
stubber/commands/stub_cmd.py,sha256=St3UlrVdbkddXystDG2NmKLq_1RbE-gNxlE7ShwQwaw,1186
|
48
|
-
stubber/commands/switch_cmd.py,sha256=
|
48
|
+
stubber/commands/switch_cmd.py,sha256=DM73QU4Vo3ifr01rv-xSmlxp36T20josOt9-cyUWUDU,1796
|
49
49
|
stubber/commands/upd_fallback_cmd.py,sha256=5d6lIFa1mTo-2O-gDZKwHOZAo5bvX5mp4iaTIfBSaQc,1056
|
50
50
|
stubber/commands/upd_module_list_cmd.py,sha256=drtjqS2aMd0aM-JJdnyl4jcnbq135lfSVcgK_6eovBk,499
|
51
51
|
stubber/commands/variants_cmd.py,sha256=QDm-KtDFIa9_Jl21vjArrW7OrToR8VfwK22pRo0e6CE,1284
|
52
52
|
stubber/cst_transformer.py,sha256=XbvGTUmhhFWW_Ig8Pu6lFdkBS_NCEmJ1oQQm4H1XSrM,6479
|
53
|
-
stubber/data/board_info.csv,sha256=
|
54
|
-
stubber/data/board_info.json,sha256=
|
53
|
+
stubber/data/board_info.csv,sha256=K2VSmfR013fN-oJWkQUmiQ19w09dVwJHDquPy6QmMhY,8627
|
54
|
+
stubber/data/board_info.json,sha256=jyvBN5seoxx7Z7B3UpvMn7H8xWCpmG4VtFSPb8PjmZI,58939
|
55
55
|
stubber/data/micropython_tags.csv,sha256=HQnzPN7jLmgKX3QvobsPMZa-xMb0exglriFziBjaRz8,1909
|
56
56
|
stubber/data/requirements-core-micropython.txt,sha256=6RQWWbLh8YVcD_l1-hjg6wX_Fm1LmNEwy5NExKJIkeg,1317
|
57
57
|
stubber/data/requirements-core-pycopy.txt,sha256=tW71l6FIuoQY1tuxkDgeN4Uw8IIp0YrlhhaaqSGSOA8,1051
|
@@ -59,51 +59,51 @@ stubber/downloader.py,sha256=UbrvPg8xaX5xcdAaFUe2pdDBor5clyTl3yzh7r7FLdc,1206
|
|
59
59
|
stubber/freeze/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
60
|
stubber/freeze/common.py,sha256=fydpiBQvwwBM-Uib12NG1k51Pm5gUmPa19UFj6ZTD5E,2639
|
61
61
|
stubber/freeze/freeze_folder.py,sha256=9jLa6M1Uie6MOBnXezrrBYkM9sq4Ja6bz7RGsFpIZJw,2491
|
62
|
-
stubber/freeze/freeze_manifest_2.py,sha256=
|
63
|
-
stubber/freeze/get_frozen.py,sha256=
|
62
|
+
stubber/freeze/freeze_manifest_2.py,sha256=2mJVxco9WjSWGkvn5TDFo84Tm4CZ9wNXcjGSm_7EDYc,4047
|
63
|
+
stubber/freeze/get_frozen.py,sha256=u8g47WSQ14ePDEwKJ4rjj0KnweyQSYgpWZQM9X0ijyw,5374
|
64
64
|
stubber/get_cpython.py,sha256=RYL3HHbNjaapT0JQZaLVd8wLSfm6RB6XpVELOae1z98,3782
|
65
65
|
stubber/get_lobo.py,sha256=jyysWbeEwNuZZtkTudJP1QbyVvh-TwFom5cE7iCi9lE,1776
|
66
|
-
stubber/minify.py,sha256=
|
66
|
+
stubber/minify.py,sha256=hGZFWF5THZG450ZK7MIVyHWKmy0ZQskzm9vqJmFj-70,14676
|
67
67
|
stubber/publish/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
68
|
stubber/publish/bump.py,sha256=qSb1DpaIxgyoH3YcPU1XKyDKgqkomxSm0WWf1sAVh0Y,3262
|
69
|
-
stubber/publish/candidates.py,sha256=
|
69
|
+
stubber/publish/candidates.py,sha256=wQWYmZJRWSCwgxiFFGEMnc2dZDqN3Fw030KJmNrmeY0,11419
|
70
70
|
stubber/publish/database.py,sha256=CLy5oiLasA-YzTTXi9d01qLAyk7NpugCDUOa5R9Ac2g,623
|
71
|
-
stubber/publish/defaults.py,sha256
|
71
|
+
stubber/publish/defaults.py,sha256=-Ey04lflKVnT0xO8r8AGliQSdtek9Dm_LDjpwvAnAVk,1636
|
72
72
|
stubber/publish/enums.py,sha256=YI_0q3Iz3v1YqDuHgbuj7x6FBS5y5w3G1UdgpCGunNs,954
|
73
73
|
stubber/publish/helpers.py,sha256=909umfKUHBMBoVnAanop1vKx8loCrWntlfiiG6z89lY,716
|
74
|
-
stubber/publish/merge_docstubs.py,sha256=
|
75
|
-
stubber/publish/missing_class_methods.py,sha256=
|
74
|
+
stubber/publish/merge_docstubs.py,sha256=OtbfVr3P1XBRHOufeAYwPTyTKNGaDeCT0vIukQEqois,5373
|
75
|
+
stubber/publish/missing_class_methods.py,sha256=qak-D7_ec2csPaZ_BlXiaoxTMSHzBRkWeUVxvBucf2Y,1803
|
76
76
|
stubber/publish/package.py,sha256=751NKo67Kq-2vUDWabWqw2eXTntay_BZ6d1vIIE1sX8,6333
|
77
|
-
stubber/publish/pathnames.py,sha256=
|
78
|
-
stubber/publish/publish.py,sha256=
|
77
|
+
stubber/publish/pathnames.py,sha256=VKZaj0JiexfFdlO8vpHLs1sYVrk0vs7uigkV-YXvdJ8,1819
|
78
|
+
stubber/publish/publish.py,sha256=4CTI3n2DDU8QnrSiaDT2SAqk73tlziPLE4cLt8saDrk,3698
|
79
79
|
stubber/publish/pypi.py,sha256=Mu1F7Xx4e0NPWK1_Erck6QGEfdY8w67EBeWFi6JiAzk,1240
|
80
|
-
stubber/publish/stubpackage.py,sha256=
|
80
|
+
stubber/publish/stubpackage.py,sha256=nYOmnsKV0eSEOLqmUFjD15TtxvBmdOUIjN-zJKxpSTM,44691
|
81
81
|
stubber/rst/__init__.py,sha256=5VcbDCotIICa2xnJDs_gw2sFXpjjGOZZbwCrNKXy1OE,293
|
82
82
|
stubber/rst/classsort.py,sha256=YCmF4QEYXqZ1Yu2FZb1iPQBrVkq-mrZaBaRcSUlC7ZE,2655
|
83
|
-
stubber/rst/lookup.py,sha256=
|
83
|
+
stubber/rst/lookup.py,sha256=Zu_qHPAoKmn2KgD5ERNmwIRT5u9xaYfuN8lOVMOwwfQ,20157
|
84
84
|
stubber/rst/output_dict.py,sha256=cpBXRtUD-uh0EgjWIBiRrMLBmIAEXjoJFSOAg-qJQiU,14755
|
85
|
-
stubber/rst/reader.py,sha256=
|
85
|
+
stubber/rst/reader.py,sha256=mfywE_6j-ZsVn37q1obTQQ02QBBSDZGo34JJc94JGG0,33383
|
86
86
|
stubber/rst/report_return.py,sha256=WZJSbgjsjxFeCeY-vLms56gv_x3TubaGXGQ8--d8RqI,2814
|
87
87
|
stubber/rst/rst_utils.py,sha256=q4MCmhCeI0fnx6KNVdgz1nE4_hAK4T-F7oAMBnmwZ4w,17817
|
88
|
-
stubber/stubber.py,sha256=
|
88
|
+
stubber/stubber.py,sha256=EzPqSJ1SKy5gMvnYEFg90mm5JzzkzBQUbI-v_9BtTRc,1963
|
89
89
|
stubber/stubs_from_docs.py,sha256=PXuHQWvhxMA11qrLgd-myitqf0jixIsord1u2hgmTI4,2885
|
90
90
|
stubber/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
91
91
|
stubber/tools/manifestfile.py,sha256=O8jYChw8wJyIeUb5NOoC5wbgH2zUMSCff3-KvQKGv8M,23715
|
92
92
|
stubber/tools/readme.md,sha256=kH7dA2Rs4BLCXa2ILoTDIj3sJHcGYtDPntyxVIOXvtI,199
|
93
|
-
stubber/update_fallback.py,sha256=
|
94
|
-
stubber/update_module_list.py,sha256=
|
95
|
-
stubber/utils/__init__.py,sha256=
|
96
|
-
stubber/utils/config.py,sha256=
|
93
|
+
stubber/update_fallback.py,sha256=IXRN6Z-MktK7yUYkoQkKgK3LyXr5MyW70fLpak13vms,4719
|
94
|
+
stubber/update_module_list.py,sha256=QJ-c2K1Wf2SQdpMeGvlVabasKqsN9ZQV4ye5PbSpsWE,4640
|
95
|
+
stubber/utils/__init__.py,sha256=nV9FsOZsJ_hXsyUv4j0Qqp-PKycxyIktU9IoLs4kQmQ,225
|
96
|
+
stubber/utils/config.py,sha256=QLubx209ErjAc7tsz6xAIFx66YfWYd3HHIYQU9tcfLk,4881
|
97
97
|
stubber/utils/makeversionhdr.py,sha256=ZRpClirIzNK4saZHPaDuEpXhBRI_Ow_yZOxeNM3D_Ro,1908
|
98
98
|
stubber/utils/manifest.py,sha256=XBYCkxtYVAdUcch1784eHPAXlXfyfjco4WnRXxBHZYA,3273
|
99
|
-
stubber/utils/post.py,sha256=
|
100
|
-
stubber/utils/repos.py,sha256=
|
99
|
+
stubber/utils/post.py,sha256=oSFZdoP6JwEeAOvsBo3kTk7l8ff_AVtL2Y4VIjzujlE,2837
|
100
|
+
stubber/utils/repos.py,sha256=Lg_tYoMzAkxrw3xwgPKb6sX53uMN-ACoPP6oMkowob4,5819
|
101
101
|
stubber/utils/stubmaker.py,sha256=jHvRbbJA-Hp60R8NKct-TNM8ufFy2Rl2hesMW7ia7L8,4693
|
102
102
|
stubber/utils/typed_config_toml.py,sha256=ikifCIZGNhS_uqsfp6IwIpxdtZqbLtywprjWG_Q0y8o,2629
|
103
|
-
stubber/utils/versions.py,sha256=
|
104
|
-
stubber/variants.py,sha256
|
105
|
-
micropython_stubber-1.
|
106
|
-
micropython_stubber-1.
|
107
|
-
micropython_stubber-1.
|
108
|
-
micropython_stubber-1.
|
109
|
-
micropython_stubber-1.
|
103
|
+
stubber/utils/versions.py,sha256=VGO3CdtUDQ-GIH1oOgT4tg9yONqUzC6EgTIuQo1_Lgo,2924
|
104
|
+
stubber/variants.py,sha256=-o4TgotbKaCcYBdXkutPaBSR1JdxWmOAiuNT1UlahYc,3784
|
105
|
+
micropython_stubber-1.17.0.dist-info/entry_points.txt,sha256=NQi_M36fgq5k6giSuASas3LrpF6CVdkzfvJC0ja73_g,55
|
106
|
+
micropython_stubber-1.17.0.dist-info/LICENSE,sha256=2zsOXlYgl9W7_XGXcncAXIYfvSVlyNcVBycC6hhlKhA,1542
|
107
|
+
micropython_stubber-1.17.0.dist-info/METADATA,sha256=eE1OOVp3K886Ot5rnAsdwlpWulcnmfh29HiM18UgPG8,19038
|
108
|
+
micropython_stubber-1.17.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
109
|
+
micropython_stubber-1.17.0.dist-info/RECORD,,
|
stubber/__init__.py
CHANGED
stubber/basicgit.py
CHANGED
@@ -13,11 +13,12 @@ from github import Auth, Github
|
|
13
13
|
from loguru import logger as log
|
14
14
|
from packaging.version import parse
|
15
15
|
|
16
|
-
#
|
16
|
+
# from stubber.utils.versions import SET_PREVIEW
|
17
|
+
|
18
|
+
# Token with no permissions to avoid throttling
|
19
|
+
# https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28#getting-a-higher-rate-limit
|
17
20
|
PAT_NO_ACCESS = (
|
18
|
-
"github_pat"
|
19
|
-
+ "_11AAHPVFQ0IwtAmfc3cD5Z"
|
20
|
-
+ "_xOVII22ErRzzZ7xwwxRcNotUu4krMMbjinQcsMxjnWkYFBIDRWFlZMaHSqq"
|
21
|
+
"github_pat" + "_11AAHPVFQ0qAkDnSUaMKSp" + "_ZkDl5NRRwBsUN6EYg9ahp1Dvj4FDDONnXVgimxC2EtpY7Q7BUKBoQ0Jq72X"
|
21
22
|
)
|
22
23
|
PAT = os.environ.get("GITHUB_TOKEN") or PAT_NO_ACCESS
|
23
24
|
GH_CLIENT = Github(auth=Auth.Token(PAT))
|
@@ -36,18 +37,18 @@ def _run_local_git(
|
|
36
37
|
if isinstance(repo, str):
|
37
38
|
repo = Path(repo)
|
38
39
|
result = subprocess.run(
|
39
|
-
cmd, capture_output=capture_output, check=True, cwd=repo.absolute().as_posix()
|
40
|
+
cmd, capture_output=capture_output, check=True, cwd=repo.absolute().as_posix(), encoding="utf-8"
|
40
41
|
)
|
41
42
|
else:
|
42
|
-
result = subprocess.run(cmd, capture_output=capture_output, check=True)
|
43
|
+
result = subprocess.run(cmd, capture_output=capture_output, check=True, encoding="utf-8")
|
43
44
|
except (NotADirectoryError, FileNotFoundError) as e: # pragma: no cover
|
44
45
|
return None
|
45
46
|
except subprocess.CalledProcessError as e: # pragma: no cover
|
46
47
|
# add some logging for github actions
|
47
|
-
log.error(f"{str(e)} : { e.stderr
|
48
|
+
log.error(f"{str(e)} : { e.stderr}")
|
48
49
|
return None
|
49
50
|
if result.stderr and result.stderr != b"":
|
50
|
-
stderr = result.stderr
|
51
|
+
stderr = result.stderr
|
51
52
|
if "cloning into" in stderr.lower():
|
52
53
|
# log.info(stderr)
|
53
54
|
expect_stderr = True
|
@@ -59,8 +60,8 @@ def _run_local_git(
|
|
59
60
|
if not expect_stderr:
|
60
61
|
raise ChildProcessError(stderr)
|
61
62
|
|
62
|
-
if result.returncode < 0:
|
63
|
-
raise ChildProcessError(result.stderr
|
63
|
+
if result.returncode and result.returncode < 0:
|
64
|
+
raise ChildProcessError(result.stderr)
|
64
65
|
return result
|
65
66
|
|
66
67
|
|
@@ -69,7 +70,7 @@ def clone(remote_repo: str, path: Path, shallow: bool = False, tag: Optional[str
|
|
69
70
|
cmd = ["git", "clone"]
|
70
71
|
if shallow:
|
71
72
|
cmd += ["--depth", "1"]
|
72
|
-
if tag in
|
73
|
+
if tag in {"preview", "latest", "master"}:
|
73
74
|
tag = None
|
74
75
|
cmd += [remote_repo, "--branch", tag, str(path)] if tag else [remote_repo, str(path)]
|
75
76
|
if result := _run_local_git(cmd, expect_stderr=True, capture_output=False):
|
@@ -78,9 +79,7 @@ def clone(remote_repo: str, path: Path, shallow: bool = False, tag: Optional[str
|
|
78
79
|
return False
|
79
80
|
|
80
81
|
|
81
|
-
def get_local_tag(
|
82
|
-
repo: Optional[Union[str, Path]] = None, abbreviate: bool = True
|
83
|
-
) -> Union[str, None]:
|
82
|
+
def get_local_tag(repo: Optional[Union[str, Path]] = None, abbreviate: bool = True) -> Union[str, None]:
|
84
83
|
"""
|
85
84
|
get the most recent git version tag of a local repo
|
86
85
|
repo Path should be in the form of : repo = "./repo/micropython"
|
@@ -100,23 +99,18 @@ def get_local_tag(
|
|
100
99
|
)
|
101
100
|
if not result:
|
102
101
|
return None
|
103
|
-
tag: str = result.stdout
|
102
|
+
tag: str = result.stdout
|
104
103
|
tag = tag.replace("\r", "").replace("\n", "")
|
105
|
-
if abbreviate
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
expect_stderr=True,
|
110
|
-
):
|
111
|
-
lines = result.stdout.decode("utf-8").replace("\r", "").split("\n")
|
112
|
-
if lines[0].startswith("On branch") and lines[0].endswith("master"):
|
113
|
-
tag = "latest"
|
104
|
+
if not abbreviate or "-" not in tag:
|
105
|
+
return tag
|
106
|
+
if "-preview" in tag:
|
107
|
+
tag = tag.split("-preview")[0] + "-preview"
|
114
108
|
return tag
|
115
109
|
|
116
110
|
|
117
111
|
def get_local_tags(repo: Optional[Path] = None, minver: Optional[str] = None) -> List[str]:
|
118
112
|
"""
|
119
|
-
get list of
|
113
|
+
get list of all tags of a local repo
|
120
114
|
"""
|
121
115
|
if not repo:
|
122
116
|
repo = Path(".")
|
@@ -124,7 +118,7 @@ def get_local_tags(repo: Optional[Path] = None, minver: Optional[str] = None) ->
|
|
124
118
|
result = _run_local_git(["git", "tag", "-l"], repo=repo.as_posix(), expect_stderr=True)
|
125
119
|
if not result or result.returncode != 0:
|
126
120
|
return []
|
127
|
-
tags = result.stdout.
|
121
|
+
tags = result.stdout.replace("\r", "").split("\n")
|
128
122
|
tags = [tag for tag in tags if tag.startswith("v")]
|
129
123
|
if minver:
|
130
124
|
tags = [tag for tag in tags if parse(tag) >= parse(minver)]
|
@@ -154,12 +148,12 @@ def checkout_tag(tag: str, repo: Optional[Union[str, Path]] = None) -> bool:
|
|
154
148
|
"""
|
155
149
|
checkout a specific git tag
|
156
150
|
"""
|
157
|
-
cmd = ["git", "checkout",
|
151
|
+
cmd = ["git", "checkout", tag, "--quiet", "--force"]
|
158
152
|
result = _run_local_git(cmd, repo=repo, expect_stderr=True, capture_output=True)
|
159
153
|
if not result:
|
160
154
|
return False
|
161
155
|
# actually a good result
|
162
|
-
msg = {result.stdout
|
156
|
+
msg = {result.stdout}
|
163
157
|
if msg != {""}:
|
164
158
|
log.warning(f"git message: {msg}")
|
165
159
|
return True
|
@@ -177,7 +171,7 @@ def sync_submodules(repo: Optional[Union[Path, str]] = None) -> bool:
|
|
177
171
|
for cmd in cmds:
|
178
172
|
if result := _run_local_git(cmd, repo=repo, expect_stderr=True):
|
179
173
|
# actually a good result
|
180
|
-
log.debug(result.stderr
|
174
|
+
log.debug(result.stderr)
|
181
175
|
else:
|
182
176
|
return False
|
183
177
|
return True
|
@@ -192,11 +186,11 @@ def checkout_commit(commit_hash: str, repo: Optional[Union[Path, str]] = None) -
|
|
192
186
|
if not result:
|
193
187
|
return False
|
194
188
|
# actually a good result
|
195
|
-
log.debug(result.stderr
|
189
|
+
log.debug(result.stderr)
|
196
190
|
return True
|
197
191
|
|
198
192
|
|
199
|
-
def switch_tag(tag: str, repo: Optional[Union[Path, str]] = None) -> bool:
|
193
|
+
def switch_tag(tag: Union[str, Path], repo: Optional[Union[Path, str]] = None) -> bool:
|
200
194
|
"""
|
201
195
|
switch to the specified version tag of a local repo
|
202
196
|
repo should be in the form of : path/.git
|
@@ -209,7 +203,7 @@ def switch_tag(tag: str, repo: Optional[Union[Path, str]] = None) -> bool:
|
|
209
203
|
if not result:
|
210
204
|
return False
|
211
205
|
# actually a good result
|
212
|
-
log.debug(result.stderr
|
206
|
+
log.debug(result.stderr)
|
213
207
|
return True
|
214
208
|
|
215
209
|
|
@@ -225,7 +219,7 @@ def switch_branch(branch: str, repo: Optional[Union[Path, str]] = None) -> bool:
|
|
225
219
|
if not result:
|
226
220
|
return False
|
227
221
|
# actually a good result
|
228
|
-
log.debug(result.stderr
|
222
|
+
log.debug(result.stderr)
|
229
223
|
return True
|
230
224
|
|
231
225
|
|
stubber/board/board_info.csv
CHANGED
@@ -1,115 +1,101 @@
|
|
1
1
|
board,description
|
2
|
-
LaunchPad with CC3200,LAUNCHXL
|
3
|
-
WiPy with CC3200,WIPY
|
4
|
-
ESP32-S2-WROVER with ESP32-S2,ESP32_S2_WROVER
|
5
|
-
ESP32 module with ESP32,GENERIC
|
6
|
-
ESP32C3 module with ESP32C3,GENERIC_C3
|
7
|
-
ESP32C3 module with ESP32C3,GENERIC_C3_USB
|
8
|
-
Generic ESP32-D2WD module with ESP32-D2WD,GENERIC_D2WD
|
9
2
|
4MB/OTA module with ESP32,GENERIC_OTA
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
3
|
+
Actinius Icarus with NRF9160,ACTINIUS_ICARUS
|
4
|
+
Adafruit Feather RP2040,ADAFRUIT_FEATHER_RP2040
|
5
|
+
Adafruit Feather STM32F405 with STM32F405RG,ADAFRUIT_F405_EXPRESS
|
6
|
+
Adafruit ItsyBitsy RP2040,ADAFRUIT_ITSYBITSY_RP2040
|
7
|
+
Adafruit Metro M7 with MIMXRT1011DAE5A,ADAFRUIT_METRO_M7
|
8
|
+
Adafruit QT Py RP2040,ADAFRUIT_QTPY_RP2040
|
9
|
+
Arduino GIGA R1 WiFi with STM32H747,ARDUINO_GIGA
|
10
|
+
Arduino Nano 33 BLE Sense with NRF52840,ARDUINO_NANO_33_BLE_SENSE
|
11
|
+
Arduino Nano ESP32 with ESP32S3,ARDUINO_NANO_ESP32
|
12
|
+
Arduino Nano RP2040 Connect,ARDUINO_NANO_RP2040_CONNECT
|
13
|
+
Arduino Nicla Vision with STM32H747,ARDUINO_NICLA_VISION
|
14
|
+
Arduino Portenta C33 with RA6M5,ARDUINO_PORTENTA_C33
|
15
|
+
Arduino Portenta H7 with STM32H747,ARDUINO_PORTENTA_H7
|
16
|
+
Arduino Primo with NRF52832,ARDUINO_PRIMO
|
17
|
+
B-L072Z-LRWAN1 with STM32L072CZ,B_L072Z_LRWAN1
|
18
|
+
B-L475E-IOT01A with STM32L475,B_L475E_IOT01A
|
19
|
+
Bluefruit nRF52 Feather with NRF52832,FEATHER52
|
20
|
+
BLUEIO-TAG-EVIM with NRF52832,BLUEIO_TAG_EVIM
|
21
|
+
Cerb40 with STM32F405RG,CERB40
|
22
|
+
CustomPCB with STM32F439,STM32F439
|
23
|
+
DVK-BL652 with NRF52832,DVK_BL652
|
24
|
+
EK-RA4M1 with RA4M1,EK_RA4M1
|
25
|
+
EK-RA4W1 with RA4W1,EK_RA4W1
|
26
|
+
EK-RA6M1 with RA6M1,EK_RA6M1
|
27
|
+
EK-RA6M2 with RA6M2,EK_RA6M2
|
28
|
+
ESP module (1M) with ESP8266,ESP8266_GENERIC
|
29
|
+
ESP module (512K) with ESP8266,ESP8266_GENERIC
|
30
|
+
ESP module with ESP8266,ESP8266_GENERIC
|
14
31
|
ESP32 module (spiram) with ESP32,GENERIC_SPIRAM
|
32
|
+
ESP32 module with ESP32,GENERIC
|
15
33
|
ESP32 Unicore module with ESP32-UNICORE,GENERIC_UNICORE
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
34
|
+
ESP32-D2WD,ESP32_GENERIC
|
35
|
+
ESP32-S2-WROVER with ESP32-S2,ESP32_S2_WROVER
|
36
|
+
ESP32-UNICORE,ESP32_GENERIC
|
37
|
+
ESP32C3 module with ESP32C3,ESP32_GENERIC_C3
|
38
|
+
ESP32S2 module with ESP32S2,GENERIC_S2
|
39
|
+
ESP32S3 module (spiram octal) with ESP32S3,GENERIC_S3_SPIRAM_OCT
|
40
|
+
ESP32S3 module (spiram) with ESP32S3,GENERIC_S3_SPIRAM
|
41
|
+
ESP32S3 module with ESP32S3,GENERIC_S3
|
42
|
+
Espruino Pico with STM32F401CD,ESPRUINO_PICO
|
43
|
+
EVK_NINA_B1 with NRF52832,EVK_NINA_B1
|
44
|
+
EVK_NINA_B3 with NRF52840,EVK_NINA_B3
|
45
|
+
F411DISC with STM32F411,STM32F411DISC
|
46
|
+
F429I-DISCO with STM32F429,STM32F429DISC
|
47
|
+
F4DISC with STM32F407,STM32F4DISC
|
48
|
+
F769DISC with STM32F769,STM32F769DISC
|
49
|
+
F7DISC with STM32F746,STM32F7DISC
|
50
|
+
Feather M0 Express with SAMD21G18A,ADAFRUIT_FEATHER_M0_EXPRESS
|
51
|
+
Feather M4 Express with SAMD51J19A,ADAFRUIT_FEATHER_M4_EXPRESS
|
24
52
|
FeatherS2 Neo with ESP32-S2FN4R2,UM_FEATHERS2NEO
|
53
|
+
FeatherS2 with ESP32-S2,UM_FEATHERS2
|
25
54
|
FeatherS3 with ESP32-S3,UM_FEATHERS3
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
55
|
+
GARATRONIC_PYBSTICK26_RP2040,GARATRONIC_PYBSTICK26_RP2040
|
56
|
+
Generic ESP32 module with ESP32,ESP32_GENERIC
|
57
|
+
Generic ESP32 module with OTA,ESP32_GENERIC
|
58
|
+
Generic ESP32 module with SPIRAM,ESP32_GENERIC
|
59
|
+
Generic ESP32-D2WD module with ESP32-D2WD,GENERIC_D2WD
|
60
|
+
Generic ESP32S2 module with ESP32S2,ESP32_GENERIC_S2
|
61
|
+
Generic ESP32S3 module with ESP32S3,ESP32_GENERIC_S3
|
62
|
+
Generic ESP32S3 module with Octal-SPIRAM,ESP32_GENERIC_S3
|
63
|
+
GIGA with STM32H747,ARDUINO_GIGA
|
64
|
+
HydraBus1.0 with STM32F4,HYDRABUS
|
33
65
|
i.MX RT1010 EVK with MIMXRT1011DAE5A,MIMXRT1010_EVK
|
34
66
|
i.MX RT1015 EVK with MIMXRT1015DAF5A,MIMXRT1015_EVK
|
35
67
|
i.MX RT1020 EVK with MIMXRT1021DAG5A,MIMXRT1020_EVK
|
68
|
+
i.MX RT1050 EVK with MIMXRT1052DVL6B,MIMXRT1050_EVK
|
69
|
+
i.MX RT1050 EVKB with MIMXRT1052DVL6B,MIMXRT1050_EVKB
|
36
70
|
i.MX RT1050 EVKB-A1 with MIMXRT1052DVL6B,MIMXRT1050_EVK
|
37
71
|
i.MX RT1060 EVK with MIMXRT1062DVJ6A,MIMXRT1060_EVK
|
38
72
|
i.MX RT1064 EVK with MIMXRT1064DVL6A,MIMXRT1064_EVK
|
39
73
|
i.MX RT1170 EVK with MIMXRT1176DVMAA,MIMXRT1170_EVK
|
40
|
-
|
41
|
-
|
42
|
-
Teensy 4.0 with MIMXRT1062DVJ6A,TEENSY40
|
43
|
-
Teensy 4.1 with MIMXRT1062DVJ6A,TEENSY41
|
44
|
-
Actinius Icarus with NRF9160,actinius_icarus
|
45
|
-
Arduino Nano 33 BLE Sense with NRF52840,arduino_nano_33_ble_sense
|
46
|
-
Arduino Primo with NRF52832,arduino_primo
|
47
|
-
BLUEIO-TAG-EVIM with NRF52832,blueio_tag_evim
|
48
|
-
DVK-BL652 with NRF52832,dvk_bl652
|
49
|
-
EVK_NINA_B1 with NRF52832,evk_nina_b1
|
50
|
-
EVK_NINA_B3 with NRF52840,evk_nina_b3
|
51
|
-
Bluefruit nRF52 Feather with NRF52832,feather52
|
52
|
-
IBK-BLYST-NANO with NRF52832,ibk_blyst_nano
|
53
|
-
IDK-BLYST-NANO with NRF52832,idk_blyst_nano
|
54
|
-
micro:bit with NRF51822,microbit
|
55
|
-
MDK-USB-DONGLE with NRF52840,nrf52840-mdk-usb-dongle
|
56
|
-
XENON with NRF52840,particle_xenon
|
57
|
-
PCA10000 with NRF51822,pca10000
|
58
|
-
PCA10001 with NRF51822,pca10001
|
59
|
-
PCA10028 with NRF51822,pca10028
|
60
|
-
PCA10031 with NRF51822,pca10031
|
61
|
-
PCA10040 with NRF52832,pca10040
|
62
|
-
PCA10056 with NRF52840,pca10056
|
63
|
-
PCA10059 with NRF52840,pca10059
|
64
|
-
PCA10090 with NRF9160,pca10090
|
65
|
-
XIAO nRF52840 Sense with NRF52840,seeed_xiao_nrf52
|
66
|
-
WT51822-S4AT with NRF51822,wt51822_s4at
|
67
|
-
RA4M1_CLICKER with RA4M1,RA4M1_CLICKER
|
68
|
-
RA4M1_EK with RA4M1,RA4M1_EK
|
69
|
-
RA4W1_EK with RA4W1,RA4W1_EK
|
70
|
-
RA6M1_EK with RA6M1,RA6M1_EK
|
71
|
-
RA6M2_EK with RA6M2,RA6M2_EK
|
72
|
-
Adafruit Feather RP2040,ADAFRUIT_FEATHER_RP2040
|
73
|
-
Adafruit ItsyBitsy RP2040,ADAFRUIT_ITSYBITSY_RP2040
|
74
|
-
Adafruit QT Py RP2040,ADAFRUIT_QTPY_RP2040
|
75
|
-
Arduino Nano RP2040 Connect,ARDUINO_NANO_RP2040_CONNECT
|
76
|
-
GARATRONIC_PYBSTICK26_RP2040,GARATRONIC_PYBSTICK26_RP2040
|
77
|
-
nullbits Bit-C PRO,NULLBITS_BIT_C_PRO
|
78
|
-
Raspberry Pi Pico,PICO
|
79
|
-
Raspberry Pi Pico W,PICO_W
|
80
|
-
Pimoroni Pico LiPo 16MB,PIMORONI_PICOLIPO_16MB
|
81
|
-
Pimoroni Pico LiPo 4MB,PIMORONI_PICOLIPO_4MB
|
82
|
-
Pimoroni Tiny 2040,PIMORONI_TINY2040
|
83
|
-
SparkFun Pro Micro RP2040,SPARKFUN_PROMICRO
|
84
|
-
SparkFun Thing Plus RP2040,SPARKFUN_THINGPLUS
|
85
|
-
W5100S-EVB-Pico,W5100S_EVB_PICO
|
86
|
-
W5500-EVB-Pico,W5500_EVB_PICO
|
87
|
-
WeAct Studio RP2040,WEACTSTUDIO
|
88
|
-
Feather M0 Express with SAMD21G18A,ADAFRUIT_FEATHER_M0_EXPRESS
|
89
|
-
Feather M4 Express with SAMD51J19A,ADAFRUIT_FEATHER_M4_EXPRESS
|
74
|
+
IBK-BLYST-NANO with NRF52832,IBK_BLYST_NANO
|
75
|
+
IDK-BLYST-NANO with NRF52832,IDK_BLYST_NANO
|
90
76
|
ItsyBitsy M0 Express with SAMD21G18A,ADAFRUIT_ITSYBITSY_M0_EXPRESS
|
91
77
|
ItsyBitsy M4 Express with SAMD51G19A,ADAFRUIT_ITSYBITSY_M4_EXPRESS
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
Wio Terminal D51R with SAMD51P19A,SEEED_WIO_TERMINAL
|
96
|
-
Seeed Xiao with SAMD21G18A,SEEED_XIAO_SAMD21
|
97
|
-
Sparkfun SAMD51 Thing Plus with SAMD51J20A,SPARKFUN_SAMD51_THING_PLUS
|
98
|
-
Adafruit Feather STM32F405 with STM32F405RG,ADAFRUIT_F405_EXPRESS
|
99
|
-
PORTENTA with STM32H747,ARDUINO_PORTENTA_H7
|
100
|
-
B-L072Z-LRWAN1 with STM32L072CZ,B_L072Z_LRWAN1
|
101
|
-
B-L475E-IOT01A with STM32L475,B_L475E_IOT01A
|
102
|
-
Cerb40 with STM32F405RG,CERB40
|
103
|
-
Espruino Pico with STM32F401CD,ESPRUINO_PICO
|
104
|
-
NADHAT_PYBF405 with STM32F405RG,GARATRONIC_NADHAT_F405
|
105
|
-
PYBSTICK26_STD with STM32F411RE,GARATRONIC_PYBSTICK26_F411
|
106
|
-
HydraBus1.0 with STM32F4,HYDRABUS
|
78
|
+
L476-DISCO with STM32L476,STM32L476DISC
|
79
|
+
L496G-DISCO with STM32L496,STM32L496GDISC
|
80
|
+
LaunchPad with CC3200,LAUNCHXL
|
107
81
|
LEGO Technic Hub No.6 with STM32F413,LEGO_HUB_NO6
|
108
82
|
LEGO Technic Hub No.7 with STM32F413,LEGO_HUB_NO7
|
83
|
+
LILYGO TTGO LoRa32 with ESP32,LILYGO_TTGO_LORA32
|
109
84
|
LIMIFROG with STM32L476,LIMIFROG
|
110
|
-
|
85
|
+
LOLIN_C3_MINI with ESP32-C3FH4,LOLIN_C3_MINI
|
86
|
+
LOLIN_S2_MINI with ESP32-S2FN4R2,LOLIN_S2_MINI
|
87
|
+
LOLIN_S2_PICO with ESP32-S2FN4R2,LOLIN_S2_PICO
|
88
|
+
M5Stack ATOM with ESP32-PICO-D4,M5STACK_ATOM
|
89
|
+
MDK-USB-DONGLE with NRF52840,NRF52840_MDK_USB_DONGLE
|
90
|
+
Metro M4 Express Airlift with SAMD51J19A,ADAFRUIT_METRO_M4_EXPRESS
|
91
|
+
micro:bit with NRF51822,MICROBIT
|
111
92
|
MikroE Quail with STM32F427VI,MIKROE_QUAIL
|
93
|
+
MIKROE_CLICKER2_STM32 with STM32F407,MIKROE_CLICKER2_STM32
|
94
|
+
Mini SAM M4 with SAMD51G19A,MINISAM_M4
|
95
|
+
NADHAT_PYBF405 with STM32F405RG,GARATRONIC_NADHAT_F405
|
96
|
+
NanoS3 with ESP32-S3-FN8,UM_NANOS3
|
112
97
|
NetduinoPlus2 with STM32F405RG,NETDUINO_PLUS_2
|
98
|
+
NICLAVISION with STM32H747,ARDUINO_NICLA_VISION
|
113
99
|
NUCLEO-F091RC with STM32F091RCT6,NUCLEO_F091RC
|
114
100
|
NUCLEO-F401RE with STM32F401xE,NUCLEO_F401RE
|
115
101
|
NUCLEO-F411RE with STM32F411xE,NUCLEO_F411RE
|
@@ -123,37 +109,85 @@ NUCLEO-F746ZG with STM32F746,NUCLEO_F746ZG
|
|
123
109
|
NUCLEO-F756ZG with STM32F756,NUCLEO_F756ZG
|
124
110
|
NUCLEO-F767ZI with STM32F767,NUCLEO_F767ZI
|
125
111
|
NUCLEO-G0B1RE with STM32G0B1xE,NUCLEO_G0B1RE
|
126
|
-
NUCLEO_G474RE with STM32G474,NUCLEO_G474RE
|
127
|
-
NUCLEO_H743ZI with STM32H743,NUCLEO_H743ZI
|
128
|
-
NUCLEO_H743ZI2,NUCLEO_H743ZI2
|
129
112
|
NUCLEO-L073RZ with STM32L073RZT6,NUCLEO_L073RZ
|
130
113
|
NUCLEO-L152RE with STM32L152xE,NUCLEO_L152RE
|
131
114
|
NUCLEO-L432KC with STM32L432KC,NUCLEO_L432KC
|
132
115
|
NUCLEO-L452RE with STM32L452RE,NUCLEO_L452RE
|
133
116
|
NUCLEO-L476RG with STM32L476RG,NUCLEO_L476RG
|
117
|
+
NUCLEO-L4A6ZG with STM32L4A6ZG,NUCLEO_L4A6ZG
|
134
118
|
NUCLEO-WB55 with STM32WB55RGV6,NUCLEO_WB55
|
135
119
|
NUCLEO-WL55 with STM32WL55JCI7,NUCLEO_WL55
|
120
|
+
NUCLEO_G474RE with STM32G474,NUCLEO_G474RE
|
121
|
+
NUCLEO_H563ZI with STM32H563ZI,NUCLEO_H563ZI
|
122
|
+
NUCLEO_H723ZG with STM32H723ZGT6,NUCLEO_H723ZG
|
123
|
+
NUCLEO_H743ZI with STM32H743,NUCLEO_H743ZI
|
124
|
+
NUCLEO_H743ZI2,NUCLEO_H743ZI2
|
125
|
+
nullbits Bit-C PRO,NULLBITS_BIT_C_PRO
|
126
|
+
Olimex ESP32 ETH with ESP32,OLIMEX_ESP32_POE
|
136
127
|
OLIMEX STM32-E407 with STM32F407,OLIMEX_E407
|
137
128
|
OLIMEX STM32-H407 with STM32F407,OLIMEX_H407
|
129
|
+
PCA10000 with NRF51822,PCA10000
|
130
|
+
PCA10001 with NRF51822,PCA10001
|
131
|
+
PCA10028 with NRF51822,PCA10028
|
132
|
+
PCA10031 with NRF51822,PCA10031
|
133
|
+
PCA10040 with NRF52832,PCA10040
|
134
|
+
PCA10056 with NRF52840,PCA10056
|
135
|
+
PCA10059 with NRF52840,PCA10059
|
136
|
+
PCA10090 with NRF9160,PCA10090
|
137
|
+
Pimoroni Pico LiPo 16MB,PIMORONI_PICOLIPO_16MB
|
138
|
+
Pimoroni Pico LiPo 4MB,PIMORONI_PICOLIPO_4MB
|
139
|
+
Pimoroni Tiny 2040,PIMORONI_TINY2040
|
140
|
+
Pololu 3pi+ 2040 Robot,POLOLU_3PI_2040_ROBOT
|
141
|
+
Pololu Zumo 2040 Robot,POLOLU_ZUMO_2040_ROBOT
|
142
|
+
PORTENTA C33 with RA6M5,ARDUINO_PORTENTA_C33
|
143
|
+
PORTENTA with STM32H747,ARDUINO_PORTENTA_H7
|
144
|
+
ProS3 with ESP32-S3,UM_PROS3
|
138
145
|
PYBD-SF2W with STM32F722IEK,PYBD_SF2
|
139
146
|
PYBD-SF3W with STM32F733IEK,PYBD_SF3
|
140
147
|
PYBD-SF6W with STM32F767IIK,PYBD_SF6
|
141
148
|
PYBLITEv1.0 with STM32F411RE,PYBLITEV10
|
149
|
+
PYBSTICK26_STD with STM32F411RE,GARATRONIC_PYBSTICK26_F411
|
142
150
|
PYBv1.0 with STM32F405RG,PYBV10
|
143
151
|
PYBv1.1 with STM32F405RG,PYBV11
|
144
152
|
PYBv3 with STM32F405RG,PYBV3
|
145
153
|
PYBv4 with STM32F405RG,PYBV4
|
154
|
+
RA4M1 CLICKER with RA4M1,RA4M1_CLICKER
|
155
|
+
RA4M1_CLICKER with RA4M1,RA4M1_CLICKER
|
156
|
+
RA4M1_EK with RA4M1,RA4M1_EK
|
157
|
+
RA4W1_EK with RA4W1,RA4W1_EK
|
158
|
+
RA6M1_EK with RA6M1,RA6M1_EK
|
159
|
+
RA6M2_EK with RA6M2,RA6M2_EK
|
160
|
+
Raspberry Pi Pico,RPI_PICO
|
161
|
+
Raspberry Pi Pico W,RPI_PICO_W
|
162
|
+
RT1010-Py-DevKIT with MIMXRT1011DAE5A,OLIMEX_RT1010
|
163
|
+
SAMD21-XPLAINED-PRO with SAMD21J18A,SAMD21_XPLAINED_PRO
|
164
|
+
Seeed ARCH MIX with MIMXRT1052DVL5B,SEEED_ARCH_MIX
|
165
|
+
Seeed Xiao with SAMD21G18A,SEEED_XIAO_SAMD21
|
166
|
+
Silicognition RP2040-Shim,SIL_RP2040_SHIM
|
167
|
+
Silicognition wESP32 with ESP32,SIL_WESP32
|
168
|
+
SparkFun Pro Micro RP2040,SPARKFUN_PROMICRO
|
169
|
+
Sparkfun SAMD51 Thing Plus with SAMD51J20A,SPARKFUN_SAMD51_THING_PLUS
|
146
170
|
SparkFun STM32 MicroMod Processor with STM32F405RG,SPARKFUN_MICROMOD_STM32
|
147
|
-
|
148
|
-
|
149
|
-
CustomPCB with STM32F439,STM32F439
|
150
|
-
F4DISC with STM32F407,STM32F4DISC
|
151
|
-
F769DISC with STM32F769,STM32F769DISC
|
152
|
-
F7DISC with STM32F746,STM32F7DISC
|
171
|
+
SparkFun Thing Plus RP2040,SPARKFUN_THINGPLUS
|
172
|
+
STM32H573I-DK with STM32H573IIK3Q,STM32H573I_DK
|
153
173
|
STM32H7B3I-DK with STM32H7B3LIH6Q,STM32H7B3I_DK
|
154
|
-
|
155
|
-
|
174
|
+
Teensy 4.0 with MIMXRT1062DVJ6A,TEENSY40
|
175
|
+
Teensy 4.1 with MIMXRT1062DVJ6A,TEENSY41
|
176
|
+
TinyPICO with ESP32-PICO-D4,UM_TINYPICO
|
177
|
+
TinyS2 with ESP32-S2FN4R2,UM_TINYS2
|
178
|
+
TinyS3 with ESP32-S3-FN8,UM_TINYS3
|
179
|
+
TinyWATCH S3 with ESP32-S3-PICO-1-N8R2,UM_TINYWATCHS3
|
180
|
+
Trinket M0 with SAMD21E18A,ADAFRUIT_TRINKET_M0
|
156
181
|
USBDongle-WB55 with STM32WB55CGU6,USBDONGLE_WB55
|
157
182
|
VCC-GND STM32F407VE with STM32F407VE,VCC_GND_F407VE
|
158
183
|
VCC-GND STM32F407ZG with STM32F407ZG,VCC_GND_F407ZG
|
159
184
|
VCC-GND STM32H743VI with STM32H743VI,VCC_GND_H743VI
|
185
|
+
VK-RA6M5 with RA6M5,VK_RA6M5
|
186
|
+
W5100S-EVB-Pico,W5100S_EVB_PICO
|
187
|
+
W5500-EVB-Pico,W5500_EVB_PICO
|
188
|
+
WeAct Studio RP2040,WEACTSTUDIO
|
189
|
+
Wio Terminal D51R with SAMD51P19A,SEEED_WIO_TERMINAL
|
190
|
+
WiPy with CC3200,WIPY
|
191
|
+
WT51822-S4AT with NRF51822,WT51822_S4AT
|
192
|
+
XENON with NRF52840,PARTICLE_XENON
|
193
|
+
XIAO nRF52840 Sense with NRF52840,SEEED_XIAO_NRF52
|