micropython-stubber 1.20.5__py3-none-any.whl → 1.23.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.
Files changed (152) hide show
  1. {micropython_stubber-1.20.5.dist-info → micropython_stubber-1.23.0.dist-info}/LICENSE +30 -30
  2. {micropython_stubber-1.20.5.dist-info → micropython_stubber-1.23.0.dist-info}/METADATA +1 -1
  3. micropython_stubber-1.23.0.dist-info/RECORD +159 -0
  4. mpflash/README.md +184 -184
  5. mpflash/libusb_flash.ipynb +203 -203
  6. mpflash/mpflash/add_firmware.py +98 -98
  7. mpflash/mpflash/ask_input.py +236 -236
  8. mpflash/mpflash/bootloader/__init__.py +37 -36
  9. mpflash/mpflash/bootloader/manual.py +102 -102
  10. mpflash/mpflash/bootloader/micropython.py +10 -10
  11. mpflash/mpflash/bootloader/touch1200.py +45 -45
  12. mpflash/mpflash/cli_download.py +129 -129
  13. mpflash/mpflash/cli_flash.py +219 -219
  14. mpflash/mpflash/cli_group.py +98 -98
  15. mpflash/mpflash/cli_list.py +81 -81
  16. mpflash/mpflash/cli_main.py +41 -41
  17. mpflash/mpflash/common.py +164 -164
  18. mpflash/mpflash/config.py +43 -47
  19. mpflash/mpflash/connected.py +74 -74
  20. mpflash/mpflash/download.py +360 -360
  21. mpflash/mpflash/downloaded.py +130 -129
  22. mpflash/mpflash/errors.py +9 -9
  23. mpflash/mpflash/flash.py +55 -52
  24. mpflash/mpflash/flash_esp.py +59 -59
  25. mpflash/mpflash/flash_stm32.py +18 -24
  26. mpflash/mpflash/flash_stm32_cube.py +111 -111
  27. mpflash/mpflash/flash_stm32_dfu.py +104 -101
  28. mpflash/mpflash/flash_uf2.py +89 -67
  29. mpflash/mpflash/flash_uf2_boardid.py +15 -15
  30. mpflash/mpflash/flash_uf2_linux.py +129 -123
  31. mpflash/mpflash/flash_uf2_macos.py +37 -34
  32. mpflash/mpflash/flash_uf2_windows.py +38 -34
  33. mpflash/mpflash/list.py +89 -89
  34. mpflash/mpflash/logger.py +41 -41
  35. mpflash/mpflash/mpboard_id/__init__.py +93 -93
  36. mpflash/mpflash/mpboard_id/add_boards.py +255 -255
  37. mpflash/mpflash/mpboard_id/board.py +37 -37
  38. mpflash/mpflash/mpboard_id/board_id.py +86 -86
  39. mpflash/mpflash/mpboard_id/store.py +43 -43
  40. mpflash/mpflash/mpremoteboard/__init__.py +226 -221
  41. mpflash/mpflash/mpremoteboard/mpy_fw_info.py +141 -141
  42. mpflash/mpflash/mpremoteboard/runner.py +140 -140
  43. mpflash/mpflash/uf2disk.py +12 -12
  44. mpflash/mpflash/vendor/basicgit.py +288 -288
  45. mpflash/mpflash/vendor/click_aliases.py +91 -91
  46. mpflash/mpflash/vendor/dfu.py +165 -165
  47. mpflash/mpflash/vendor/pydfu.py +605 -605
  48. mpflash/mpflash/vendor/readme.md +2 -2
  49. mpflash/mpflash/vendor/versions.py +119 -117
  50. mpflash/mpflash/worklist.py +171 -170
  51. mpflash/poetry.lock +1588 -1588
  52. mpflash/pyproject.toml +64 -60
  53. mpflash/stm32_udev_rules.md +62 -62
  54. stubber/__init__.py +3 -3
  55. stubber/basicgit.py +294 -288
  56. stubber/board/board_info.csv +193 -193
  57. stubber/board/boot.py +34 -34
  58. stubber/board/createstubs.py +986 -986
  59. stubber/board/createstubs_db.py +825 -825
  60. stubber/board/createstubs_db_min.py +331 -331
  61. stubber/board/createstubs_db_mpy.mpy +0 -0
  62. stubber/board/createstubs_lvgl.py +741 -741
  63. stubber/board/createstubs_lvgl_min.py +741 -741
  64. stubber/board/createstubs_mem.py +766 -766
  65. stubber/board/createstubs_mem_min.py +306 -306
  66. stubber/board/createstubs_mem_mpy.mpy +0 -0
  67. stubber/board/createstubs_min.py +294 -294
  68. stubber/board/createstubs_mpy.mpy +0 -0
  69. stubber/board/fw_info.py +141 -141
  70. stubber/board/info.py +183 -183
  71. stubber/board/main.py +19 -19
  72. stubber/board/modulelist.txt +247 -247
  73. stubber/board/pyrightconfig.json +34 -34
  74. stubber/bulk/mcu_stubber.py +454 -454
  75. stubber/codemod/_partials/__init__.py +48 -48
  76. stubber/codemod/_partials/db_main.py +147 -147
  77. stubber/codemod/_partials/lvgl_main.py +77 -77
  78. stubber/codemod/_partials/modules_reader.py +80 -80
  79. stubber/codemod/add_comment.py +53 -53
  80. stubber/codemod/add_method.py +65 -65
  81. stubber/codemod/board.py +317 -317
  82. stubber/codemod/enrich.py +145 -145
  83. stubber/codemod/merge_docstub.py +284 -284
  84. stubber/codemod/modify_list.py +54 -54
  85. stubber/codemod/utils.py +57 -57
  86. stubber/commands/build_cmd.py +94 -94
  87. stubber/commands/cli.py +55 -51
  88. stubber/commands/clone_cmd.py +77 -66
  89. stubber/commands/config_cmd.py +29 -29
  90. stubber/commands/enrich_folder_cmd.py +71 -70
  91. stubber/commands/get_core_cmd.py +71 -69
  92. stubber/commands/get_docstubs_cmd.py +89 -87
  93. stubber/commands/get_frozen_cmd.py +114 -112
  94. stubber/commands/get_mcu_cmd.py +61 -56
  95. stubber/commands/merge_cmd.py +67 -66
  96. stubber/commands/publish_cmd.py +119 -119
  97. stubber/commands/stub_cmd.py +31 -30
  98. stubber/commands/switch_cmd.py +62 -54
  99. stubber/commands/variants_cmd.py +49 -48
  100. stubber/cst_transformer.py +178 -178
  101. stubber/data/board_info.csv +193 -193
  102. stubber/data/board_info.json +1729 -1729
  103. stubber/data/micropython_tags.csv +15 -15
  104. stubber/data/requirements-core-micropython.txt +38 -38
  105. stubber/data/requirements-core-pycopy.txt +39 -39
  106. stubber/downloader.py +36 -36
  107. stubber/freeze/common.py +68 -68
  108. stubber/freeze/freeze_folder.py +69 -69
  109. stubber/freeze/freeze_manifest_2.py +113 -113
  110. stubber/freeze/get_frozen.py +127 -127
  111. stubber/get_cpython.py +101 -101
  112. stubber/get_lobo.py +59 -59
  113. stubber/minify.py +418 -418
  114. stubber/publish/bump.py +86 -86
  115. stubber/publish/candidates.py +262 -262
  116. stubber/publish/database.py +18 -18
  117. stubber/publish/defaults.py +45 -45
  118. stubber/publish/enums.py +24 -24
  119. stubber/publish/helpers.py +29 -29
  120. stubber/publish/merge_docstubs.py +130 -130
  121. stubber/publish/missing_class_methods.py +49 -49
  122. stubber/publish/package.py +146 -146
  123. stubber/publish/pathnames.py +51 -51
  124. stubber/publish/publish.py +120 -120
  125. stubber/publish/pypi.py +38 -38
  126. stubber/publish/stubpackage.py +1029 -1029
  127. stubber/rst/__init__.py +9 -9
  128. stubber/rst/classsort.py +77 -77
  129. stubber/rst/lookup.py +530 -530
  130. stubber/rst/output_dict.py +401 -401
  131. stubber/rst/reader.py +822 -822
  132. stubber/rst/report_return.py +69 -69
  133. stubber/rst/rst_utils.py +540 -540
  134. stubber/stubber.py +38 -38
  135. stubber/stubs_from_docs.py +90 -90
  136. stubber/tools/manifestfile.py +655 -610
  137. stubber/tools/readme.md +7 -6
  138. stubber/update_fallback.py +117 -117
  139. stubber/update_module_list.py +123 -123
  140. stubber/utils/__init__.py +5 -5
  141. stubber/utils/config.py +127 -127
  142. stubber/utils/makeversionhdr.py +54 -54
  143. stubber/utils/manifest.py +92 -92
  144. stubber/utils/post.py +79 -79
  145. stubber/utils/repos.py +157 -154
  146. stubber/utils/stubmaker.py +139 -139
  147. stubber/utils/typed_config_toml.py +77 -77
  148. stubber/utils/versions.py +128 -120
  149. stubber/variants.py +106 -106
  150. micropython_stubber-1.20.5.dist-info/RECORD +0 -159
  151. {micropython_stubber-1.20.5.dist-info → micropython_stubber-1.23.0.dist-info}/WHEEL +0 -0
  152. {micropython_stubber-1.20.5.dist-info → micropython_stubber-1.23.0.dist-info}/entry_points.txt +0 -0
@@ -1,1730 +1,1730 @@
1
- [
2
- {
3
- "description": "4MB/OTA module with ESP32",
4
- "port": "esp32",
5
- "board": "GENERIC_OTA",
6
- "board_name": "4MB/OTA module",
7
- "mcu_name": "ESP32",
8
- "path": "ports/esp32/boards/GENERIC_OTA/mpconfigboard.h",
9
- "version": "v1.20.0"
10
- },
11
- {
12
- "description": "Actinius Icarus with NRF9160",
13
- "port": "nrf",
14
- "board": "ACTINIUS_ICARUS",
15
- "board_name": "Actinius Icarus",
16
- "mcu_name": "NRF9160",
17
- "path": "ports/nrf/boards/ACTINIUS_ICARUS/mpconfigboard.h",
18
- "version": "v1.22.0"
19
- },
20
- {
21
- "description": "Adafruit Feather RP2040",
22
- "port": "rp2",
23
- "board": "ADAFRUIT_FEATHER_RP2040",
24
- "board_name": "Adafruit Feather RP2040",
25
- "mcu_name": "-",
26
- "path": "ports/rp2/boards/ADAFRUIT_FEATHER_RP2040/mpconfigboard.h",
27
- "version": "v1.22.0"
28
- },
29
- {
30
- "description": "Adafruit Feather STM32F405 with STM32F405RG",
31
- "port": "stm32",
32
- "board": "ADAFRUIT_F405_EXPRESS",
33
- "board_name": "Adafruit Feather STM32F405",
34
- "mcu_name": "STM32F405RG",
35
- "path": "ports/stm32/boards/ADAFRUIT_F405_EXPRESS/mpconfigboard.h",
36
- "version": "v1.22.0"
37
- },
38
- {
39
- "description": "Adafruit ItsyBitsy RP2040",
40
- "port": "rp2",
41
- "board": "ADAFRUIT_ITSYBITSY_RP2040",
42
- "board_name": "Adafruit ItsyBitsy RP2040",
43
- "mcu_name": "-",
44
- "path": "ports/rp2/boards/ADAFRUIT_ITSYBITSY_RP2040/mpconfigboard.h",
45
- "version": "v1.22.0"
46
- },
47
- {
48
- "description": "Adafruit Metro M7 with MIMXRT1011DAE5A",
49
- "port": "mimxrt",
50
- "board": "ADAFRUIT_METRO_M7",
51
- "board_name": "Adafruit Metro M7",
52
- "mcu_name": "MIMXRT1011DAE5A",
53
- "path": "ports/mimxrt/boards/ADAFRUIT_METRO_M7/mpconfigboard.h",
54
- "version": "v1.22.0"
55
- },
56
- {
57
- "description": "Adafruit QT Py RP2040",
58
- "port": "rp2",
59
- "board": "ADAFRUIT_QTPY_RP2040",
60
- "board_name": "Adafruit QT Py RP2040",
61
- "mcu_name": "-",
62
- "path": "ports/rp2/boards/ADAFRUIT_QTPY_RP2040/mpconfigboard.h",
63
- "version": "v1.22.0"
64
- },
65
- {
66
- "description": "Arduino GIGA R1 WiFi with STM32H747",
67
- "port": "stm32",
68
- "board": "ARDUINO_GIGA",
69
- "board_name": "Arduino GIGA R1 WiFi",
70
- "mcu_name": "STM32H747",
71
- "path": "ports/stm32/boards/ARDUINO_GIGA/mpconfigboard.h",
72
- "version": "v1.22.0"
73
- },
74
- {
75
- "description": "Arduino Nano 33 BLE Sense with NRF52840",
76
- "port": "nrf",
77
- "board": "ARDUINO_NANO_33_BLE_SENSE",
78
- "board_name": "Arduino Nano 33 BLE Sense",
79
- "mcu_name": "NRF52840",
80
- "path": "ports/nrf/boards/ARDUINO_NANO_33_BLE_SENSE/mpconfigboard.h",
81
- "version": "v1.22.0"
82
- },
83
- {
84
- "description": "Arduino Nano ESP32 with ESP32S3",
85
- "port": "esp32",
86
- "board": "ARDUINO_NANO_ESP32",
87
- "board_name": "Arduino Nano ESP32",
88
- "mcu_name": "ESP32S3",
89
- "path": "ports/esp32/boards/ARDUINO_NANO_ESP32/mpconfigboard.h",
90
- "version": "v1.22.0"
91
- },
92
- {
93
- "description": "Arduino Nano RP2040 Connect",
94
- "port": "rp2",
95
- "board": "ARDUINO_NANO_RP2040_CONNECT",
96
- "board_name": "Arduino Nano RP2040 Connect",
97
- "mcu_name": "-",
98
- "path": "ports/rp2/boards/ARDUINO_NANO_RP2040_CONNECT/mpconfigboard.h",
99
- "version": "v1.22.0"
100
- },
101
- {
102
- "description": "Arduino Nicla Vision with STM32H747",
103
- "port": "stm32",
104
- "board": "ARDUINO_NICLA_VISION",
105
- "board_name": "Arduino Nicla Vision",
106
- "mcu_name": "STM32H747",
107
- "path": "ports/stm32/boards/ARDUINO_NICLA_VISION/mpconfigboard.h",
108
- "version": "v1.22.0"
109
- },
110
- {
111
- "description": "Arduino Portenta C33 with RA6M5",
112
- "port": "renesas-ra",
113
- "board": "ARDUINO_PORTENTA_C33",
114
- "board_name": "Arduino Portenta C33",
115
- "mcu_name": "RA6M5",
116
- "path": "ports/renesas-ra/boards/ARDUINO_PORTENTA_C33/mpconfigboard.h",
117
- "version": "v1.22.0"
118
- },
119
- {
120
- "description": "Arduino Portenta H7 with STM32H747",
121
- "port": "stm32",
122
- "board": "ARDUINO_PORTENTA_H7",
123
- "board_name": "Arduino Portenta H7",
124
- "mcu_name": "STM32H747",
125
- "path": "ports/stm32/boards/ARDUINO_PORTENTA_H7/mpconfigboard.h",
126
- "version": "v1.22.0"
127
- },
128
- {
129
- "description": "Arduino Primo with NRF52832",
130
- "port": "nrf",
131
- "board": "ARDUINO_PRIMO",
132
- "board_name": "Arduino Primo",
133
- "mcu_name": "NRF52832",
134
- "path": "ports/nrf/boards/ARDUINO_PRIMO/mpconfigboard.h",
135
- "version": "v1.22.0"
136
- },
137
- {
138
- "description": "B-L072Z-LRWAN1 with STM32L072CZ",
139
- "port": "stm32",
140
- "board": "B_L072Z_LRWAN1",
141
- "board_name": "B-L072Z-LRWAN1",
142
- "mcu_name": "STM32L072CZ",
143
- "path": "ports/stm32/boards/B_L072Z_LRWAN1/mpconfigboard.h",
144
- "version": "v1.22.0"
145
- },
146
- {
147
- "description": "B-L475E-IOT01A with STM32L475",
148
- "port": "stm32",
149
- "board": "B_L475E_IOT01A",
150
- "board_name": "B-L475E-IOT01A",
151
- "mcu_name": "STM32L475",
152
- "path": "ports/stm32/boards/B_L475E_IOT01A/mpconfigboard.h",
153
- "version": "v1.22.0"
154
- },
155
- {
156
- "description": "Bluefruit nRF52 Feather with NRF52832",
157
- "port": "nrf",
158
- "board": "FEATHER52",
159
- "board_name": "Bluefruit nRF52 Feather",
160
- "mcu_name": "NRF52832",
161
- "path": "ports/nrf/boards/FEATHER52/mpconfigboard.h",
162
- "version": "v1.22.0"
163
- },
164
- {
165
- "description": "BLUEIO-TAG-EVIM with NRF52832",
166
- "port": "nrf",
167
- "board": "BLUEIO_TAG_EVIM",
168
- "board_name": "BLUEIO-TAG-EVIM",
169
- "mcu_name": "NRF52832",
170
- "path": "ports/nrf/boards/BLUEIO_TAG_EVIM/mpconfigboard.h",
171
- "version": "v1.22.0"
172
- },
173
- {
174
- "description": "Cerb40 with STM32F405RG",
175
- "port": "stm32",
176
- "board": "CERB40",
177
- "board_name": "Cerb40",
178
- "mcu_name": "STM32F405RG",
179
- "path": "ports/stm32/boards/CERB40/mpconfigboard.h",
180
- "version": "v1.22.0"
181
- },
182
- {
183
- "description": "CustomPCB with STM32F439",
184
- "port": "stm32",
185
- "board": "STM32F439",
186
- "board_name": "CustomPCB",
187
- "mcu_name": "STM32F439",
188
- "path": "ports/stm32/boards/STM32F439/mpconfigboard.h",
189
- "version": "v1.22.0"
190
- },
191
- {
192
- "description": "DVK-BL652 with NRF52832",
193
- "port": "nrf",
194
- "board": "DVK_BL652",
195
- "board_name": "DVK-BL652",
196
- "mcu_name": "NRF52832",
197
- "path": "ports/nrf/boards/DVK_BL652/mpconfigboard.h",
198
- "version": "v1.22.0"
199
- },
200
- {
201
- "description": "EK-RA4M1 with RA4M1",
202
- "port": "renesas-ra",
203
- "board": "EK_RA4M1",
204
- "board_name": "EK-RA4M1",
205
- "mcu_name": "RA4M1",
206
- "path": "ports/renesas-ra/boards/EK_RA4M1/mpconfigboard.h",
207
- "version": "v1.22.0"
208
- },
209
- {
210
- "description": "EK-RA4W1 with RA4W1",
211
- "port": "renesas-ra",
212
- "board": "EK_RA4W1",
213
- "board_name": "EK-RA4W1",
214
- "mcu_name": "RA4W1",
215
- "path": "ports/renesas-ra/boards/EK_RA4W1/mpconfigboard.h",
216
- "version": "v1.22.0"
217
- },
218
- {
219
- "description": "EK-RA6M1 with RA6M1",
220
- "port": "renesas-ra",
221
- "board": "EK_RA6M1",
222
- "board_name": "EK-RA6M1",
223
- "mcu_name": "RA6M1",
224
- "path": "ports/renesas-ra/boards/EK_RA6M1/mpconfigboard.h",
225
- "version": "v1.22.0"
226
- },
227
- {
228
- "description": "EK-RA6M2 with RA6M2",
229
- "port": "renesas-ra",
230
- "board": "EK_RA6M2",
231
- "board_name": "EK-RA6M2",
232
- "mcu_name": "RA6M2",
233
- "path": "ports/renesas-ra/boards/EK_RA6M2/mpconfigboard.h",
234
- "version": "v1.22.0"
235
- },
236
- {
237
- "description": "ESP module (1M) with ESP8266",
238
- "port": "esp8266",
239
- "board": "ESP8266_GENERIC",
240
- "board_name": "ESP module (1M)",
241
- "mcu_name": "ESP8266",
242
- "path": "ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h",
243
- "version": "v1.22.0"
244
- },
245
- {
246
- "description": "ESP module (512K) with ESP8266",
247
- "port": "esp8266",
248
- "board": "ESP8266_GENERIC",
249
- "board_name": "ESP module (512K)",
250
- "mcu_name": "ESP8266",
251
- "path": "ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h",
252
- "version": "v1.22.0"
253
- },
254
- {
255
- "description": "ESP module with ESP8266",
256
- "port": "esp8266",
257
- "board": "ESP8266_GENERIC",
258
- "board_name": "ESP module",
259
- "mcu_name": "ESP8266",
260
- "path": "ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h",
261
- "version": "v1.22.0"
262
- },
263
- {
264
- "description": "ESP32 module (spiram) with ESP32",
265
- "port": "esp32",
266
- "board": "GENERIC_SPIRAM",
267
- "board_name": "ESP32 module (spiram)",
268
- "mcu_name": "ESP32",
269
- "path": "ports/esp32/boards/GENERIC_SPIRAM/mpconfigboard.h",
270
- "version": "v1.20.0"
271
- },
272
- {
273
- "description": "ESP32 module with ESP32",
274
- "port": "esp32",
275
- "board": "GENERIC",
276
- "board_name": "ESP32 module",
277
- "mcu_name": "ESP32",
278
- "path": "ports/esp32/boards/GENERIC/mpconfigboard.h",
279
- "version": "v1.20.0"
280
- },
281
- {
282
- "description": "ESP32 Unicore module with ESP32-UNICORE",
283
- "port": "esp32",
284
- "board": "GENERIC_UNICORE",
285
- "board_name": "ESP32 Unicore module",
286
- "mcu_name": "ESP32-UNICORE",
287
- "path": "ports/esp32/boards/GENERIC_UNICORE/mpconfigboard.h",
288
- "version": "v1.20.0"
289
- },
290
- {
291
- "description": "ESP32-D2WD",
292
- "port": "esp32",
293
- "board": "ESP32_GENERIC",
294
- "board_name": "-",
295
- "mcu_name": "-",
296
- "path": "ports/esp32/boards/ESP32_GENERIC/mpconfigboard.cmake",
297
- "version": "v1.22.0"
298
- },
299
- {
300
- "description": "ESP32-S2-WROVER with ESP32-S2",
301
- "port": "esp32",
302
- "board": "ESP32_S2_WROVER",
303
- "board_name": "ESP32-S2-WROVER",
304
- "mcu_name": "ESP32-S2",
305
- "path": "ports/esp32/boards/ESP32_S2_WROVER/mpconfigboard.h",
306
- "version": "v1.20.0"
307
- },
308
- {
309
- "description": "ESP32-UNICORE",
310
- "port": "esp32",
311
- "board": "ESP32_GENERIC",
312
- "board_name": "-",
313
- "mcu_name": "-",
314
- "path": "ports/esp32/boards/ESP32_GENERIC/mpconfigboard.cmake",
315
- "version": "v1.22.0"
316
- },
317
- {
318
- "description": "ESP32C3 module with ESP32C3",
319
- "port": "esp32",
320
- "board": "ESP32_GENERIC_C3",
321
- "board_name": "ESP32C3 module",
322
- "mcu_name": "ESP32C3",
323
- "path": "ports/esp32/boards/ESP32_GENERIC_C3/mpconfigboard.h",
324
- "version": "v1.22.0"
325
- },
326
- {
327
- "description": "ESP32S2 module with ESP32S2",
328
- "port": "esp32",
329
- "board": "GENERIC_S2",
330
- "board_name": "ESP32S2 module",
331
- "mcu_name": "ESP32S2",
332
- "path": "ports/esp32/boards/GENERIC_S2/mpconfigboard.h",
333
- "version": "v1.20.0"
334
- },
335
- {
336
- "description": "ESP32S3 module (spiram octal) with ESP32S3",
337
- "port": "esp32",
338
- "board": "GENERIC_S3_SPIRAM_OCT",
339
- "board_name": "ESP32S3 module (spiram octal)",
340
- "mcu_name": "ESP32S3",
341
- "path": "ports/esp32/boards/GENERIC_S3_SPIRAM_OCT/mpconfigboard.h",
342
- "version": "v1.20.0"
343
- },
344
- {
345
- "description": "ESP32S3 module (spiram) with ESP32S3",
346
- "port": "esp32",
347
- "board": "GENERIC_S3_SPIRAM",
348
- "board_name": "ESP32S3 module (spiram)",
349
- "mcu_name": "ESP32S3",
350
- "path": "ports/esp32/boards/GENERIC_S3_SPIRAM/mpconfigboard.h",
351
- "version": "v1.20.0"
352
- },
353
- {
354
- "description": "ESP32S3 module with ESP32S3",
355
- "port": "esp32",
356
- "board": "GENERIC_S3",
357
- "board_name": "ESP32S3 module",
358
- "mcu_name": "ESP32S3",
359
- "path": "ports/esp32/boards/GENERIC_S3/mpconfigboard.h",
360
- "version": "v1.20.0"
361
- },
362
- {
363
- "description": "Espruino Pico with STM32F401CD",
364
- "port": "stm32",
365
- "board": "ESPRUINO_PICO",
366
- "board_name": "Espruino Pico",
367
- "mcu_name": "STM32F401CD",
368
- "path": "ports/stm32/boards/ESPRUINO_PICO/mpconfigboard.h",
369
- "version": "v1.22.0"
370
- },
371
- {
372
- "description": "EVK_NINA_B1 with NRF52832",
373
- "port": "nrf",
374
- "board": "EVK_NINA_B1",
375
- "board_name": "EVK_NINA_B1",
376
- "mcu_name": "NRF52832",
377
- "path": "ports/nrf/boards/EVK_NINA_B1/mpconfigboard.h",
378
- "version": "v1.22.0"
379
- },
380
- {
381
- "description": "EVK_NINA_B3 with NRF52840",
382
- "port": "nrf",
383
- "board": "EVK_NINA_B3",
384
- "board_name": "EVK_NINA_B3",
385
- "mcu_name": "NRF52840",
386
- "path": "ports/nrf/boards/EVK_NINA_B3/mpconfigboard.h",
387
- "version": "v1.22.0"
388
- },
389
- {
390
- "description": "F411DISC with STM32F411",
391
- "port": "stm32",
392
- "board": "STM32F411DISC",
393
- "board_name": "F411DISC",
394
- "mcu_name": "STM32F411",
395
- "path": "ports/stm32/boards/STM32F411DISC/mpconfigboard.h",
396
- "version": "v1.22.0"
397
- },
398
- {
399
- "description": "F429I-DISCO with STM32F429",
400
- "port": "stm32",
401
- "board": "STM32F429DISC",
402
- "board_name": "F429I-DISCO",
403
- "mcu_name": "STM32F429",
404
- "path": "ports/stm32/boards/STM32F429DISC/mpconfigboard.h",
405
- "version": "v1.22.0"
406
- },
407
- {
408
- "description": "F4DISC with STM32F407",
409
- "port": "stm32",
410
- "board": "STM32F4DISC",
411
- "board_name": "F4DISC",
412
- "mcu_name": "STM32F407",
413
- "path": "ports/stm32/boards/STM32F4DISC/mpconfigboard.h",
414
- "version": "v1.22.0"
415
- },
416
- {
417
- "description": "F769DISC with STM32F769",
418
- "port": "stm32",
419
- "board": "STM32F769DISC",
420
- "board_name": "F769DISC",
421
- "mcu_name": "STM32F769",
422
- "path": "ports/stm32/boards/STM32F769DISC/mpconfigboard.h",
423
- "version": "v1.22.0"
424
- },
425
- {
426
- "description": "F7DISC with STM32F746",
427
- "port": "stm32",
428
- "board": "STM32F7DISC",
429
- "board_name": "F7DISC",
430
- "mcu_name": "STM32F746",
431
- "path": "ports/stm32/boards/STM32F7DISC/mpconfigboard.h",
432
- "version": "v1.22.0"
433
- },
434
- {
435
- "description": "Feather M0 Express with SAMD21G18A",
436
- "port": "samd",
437
- "board": "ADAFRUIT_FEATHER_M0_EXPRESS",
438
- "board_name": "Feather M0 Express",
439
- "mcu_name": "SAMD21G18A",
440
- "path": "ports/samd/boards/ADAFRUIT_FEATHER_M0_EXPRESS/mpconfigboard.h",
441
- "version": "v1.22.0"
442
- },
443
- {
444
- "description": "Feather M4 Express with SAMD51J19A",
445
- "port": "samd",
446
- "board": "ADAFRUIT_FEATHER_M4_EXPRESS",
447
- "board_name": "Feather M4 Express",
448
- "mcu_name": "SAMD51J19A",
449
- "path": "ports/samd/boards/ADAFRUIT_FEATHER_M4_EXPRESS/mpconfigboard.h",
450
- "version": "v1.22.0"
451
- },
452
- {
453
- "description": "FeatherS2 Neo with ESP32-S2FN4R2",
454
- "port": "esp32",
455
- "board": "UM_FEATHERS2NEO",
456
- "board_name": "FeatherS2 Neo",
457
- "mcu_name": "ESP32-S2FN4R2",
458
- "path": "ports/esp32/boards/UM_FEATHERS2NEO/mpconfigboard.h",
459
- "version": "v1.22.0"
460
- },
461
- {
462
- "description": "FeatherS2 with ESP32-S2",
463
- "port": "esp32",
464
- "board": "UM_FEATHERS2",
465
- "board_name": "FeatherS2",
466
- "mcu_name": "ESP32-S2",
467
- "path": "ports/esp32/boards/UM_FEATHERS2/mpconfigboard.h",
468
- "version": "v1.22.0"
469
- },
470
- {
471
- "description": "FeatherS3 with ESP32-S3",
472
- "port": "esp32",
473
- "board": "UM_FEATHERS3",
474
- "board_name": "FeatherS3",
475
- "mcu_name": "ESP32-S3",
476
- "path": "ports/esp32/boards/UM_FEATHERS3/mpconfigboard.h",
477
- "version": "v1.22.0"
478
- },
479
- {
480
- "description": "GARATRONIC_PYBSTICK26_RP2040",
481
- "port": "rp2",
482
- "board": "GARATRONIC_PYBSTICK26_RP2040",
483
- "board_name": "GARATRONIC_PYBSTICK26_RP2040",
484
- "mcu_name": "-",
485
- "path": "ports/rp2/boards/GARATRONIC_PYBSTICK26_RP2040/mpconfigboard.h",
486
- "version": "v1.22.0"
487
- },
488
- {
489
- "description": "Generic ESP32 module with ESP32",
490
- "port": "esp32",
491
- "board": "ESP32_GENERIC",
492
- "board_name": "Generic ESP32 module",
493
- "mcu_name": "ESP32",
494
- "path": "ports/esp32/boards/ESP32_GENERIC/mpconfigboard.h",
495
- "version": "v1.22.0"
496
- },
497
- {
498
- "description": "Generic ESP32 module with OTA",
499
- "port": "esp32",
500
- "board": "ESP32_GENERIC",
501
- "board_name": "-",
502
- "mcu_name": "-",
503
- "path": "ports/esp32/boards/ESP32_GENERIC/mpconfigboard.cmake",
504
- "version": "v1.22.0"
505
- },
506
- {
507
- "description": "Generic ESP32 module with SPIRAM",
508
- "port": "esp32",
509
- "board": "ESP32_GENERIC",
510
- "board_name": "-",
511
- "mcu_name": "-",
512
- "path": "ports/esp32/boards/ESP32_GENERIC/mpconfigboard.cmake",
513
- "version": "v1.22.0"
514
- },
515
- {
516
- "description": "Generic ESP32-D2WD module with ESP32-D2WD",
517
- "port": "esp32",
518
- "board": "GENERIC_D2WD",
519
- "board_name": "Generic ESP32-D2WD module",
520
- "mcu_name": "ESP32-D2WD",
521
- "path": "ports/esp32/boards/GENERIC_D2WD/mpconfigboard.h",
522
- "version": "v1.20.0"
523
- },
524
- {
525
- "description": "Generic ESP32S2 module with ESP32S2",
526
- "port": "esp32",
527
- "board": "ESP32_GENERIC_S2",
528
- "board_name": "Generic ESP32S2 module",
529
- "mcu_name": "ESP32S2",
530
- "path": "ports/esp32/boards/ESP32_GENERIC_S2/mpconfigboard.h",
531
- "version": "v1.22.0"
532
- },
533
- {
534
- "description": "Generic ESP32S3 module with ESP32S3",
535
- "port": "esp32",
536
- "board": "ESP32_GENERIC_S3",
537
- "board_name": "Generic ESP32S3 module",
538
- "mcu_name": "ESP32S3",
539
- "path": "ports/esp32/boards/ESP32_GENERIC_S3/mpconfigboard.h",
540
- "version": "v1.22.0"
541
- },
542
- {
543
- "description": "Generic ESP32S3 module with Octal-SPIRAM",
544
- "port": "esp32",
545
- "board": "ESP32_GENERIC_S3",
546
- "board_name": "-",
547
- "mcu_name": "-",
548
- "path": "ports/esp32/boards/ESP32_GENERIC_S3/mpconfigboard.cmake",
549
- "version": "v1.22.0"
550
- },
551
- {
552
- "description": "GIGA with STM32H747",
553
- "port": "stm32",
554
- "board": "ARDUINO_GIGA",
555
- "board_name": "GIGA",
556
- "mcu_name": "STM32H747",
557
- "path": "ports/stm32/boards/ARDUINO_GIGA/mpconfigboard.h",
558
- "version": "v1.21.0"
559
- },
560
- {
561
- "description": "HydraBus1.0 with STM32F4",
562
- "port": "stm32",
563
- "board": "HYDRABUS",
564
- "board_name": "HydraBus1.0",
565
- "mcu_name": "STM32F4",
566
- "path": "ports/stm32/boards/HYDRABUS/mpconfigboard.h",
567
- "version": "v1.22.0"
568
- },
569
- {
570
- "description": "i.MX RT1010 EVK with MIMXRT1011DAE5A",
571
- "port": "mimxrt",
572
- "board": "MIMXRT1010_EVK",
573
- "board_name": "i.MX RT1010 EVK",
574
- "mcu_name": "MIMXRT1011DAE5A",
575
- "path": "ports/mimxrt/boards/MIMXRT1010_EVK/mpconfigboard.h",
576
- "version": "v1.22.0"
577
- },
578
- {
579
- "description": "i.MX RT1015 EVK with MIMXRT1015DAF5A",
580
- "port": "mimxrt",
581
- "board": "MIMXRT1015_EVK",
582
- "board_name": "i.MX RT1015 EVK",
583
- "mcu_name": "MIMXRT1015DAF5A",
584
- "path": "ports/mimxrt/boards/MIMXRT1015_EVK/mpconfigboard.h",
585
- "version": "v1.22.0"
586
- },
587
- {
588
- "description": "i.MX RT1020 EVK with MIMXRT1021DAG5A",
589
- "port": "mimxrt",
590
- "board": "MIMXRT1020_EVK",
591
- "board_name": "i.MX RT1020 EVK",
592
- "mcu_name": "MIMXRT1021DAG5A",
593
- "path": "ports/mimxrt/boards/MIMXRT1020_EVK/mpconfigboard.h",
594
- "version": "v1.22.0"
595
- },
596
- {
597
- "description": "i.MX RT1050 EVK with MIMXRT1052DVL6B",
598
- "port": "mimxrt",
599
- "board": "MIMXRT1050_EVK",
600
- "board_name": "i.MX RT1050 EVK",
601
- "mcu_name": "MIMXRT1052DVL6B",
602
- "path": "ports/mimxrt/boards/MIMXRT1050_EVK/mpconfigboard.h",
603
- "version": "v1.17"
604
- },
605
- {
606
- "description": "i.MX RT1050 EVKB with MIMXRT1052DVL6B",
607
- "port": "mimxrt",
608
- "board": "MIMXRT1050_EVKB",
609
- "board_name": "i.MX RT1050 EVKB",
610
- "mcu_name": "MIMXRT1052DVL6B",
611
- "path": "ports/mimxrt/boards/MIMXRT1050_EVKB/mpconfigboard.h",
612
- "version": "v1.17"
613
- },
614
- {
615
- "description": "i.MX RT1050 EVKB-A1 with MIMXRT1052DVL6B",
616
- "port": "mimxrt",
617
- "board": "MIMXRT1050_EVK",
618
- "board_name": "i.MX RT1050 EVKB-A1",
619
- "mcu_name": "MIMXRT1052DVL6B",
620
- "path": "ports/mimxrt/boards/MIMXRT1050_EVK/mpconfigboard.h",
621
- "version": "v1.22.0"
622
- },
623
- {
624
- "description": "i.MX RT1060 EVK with MIMXRT1062DVJ6A",
625
- "port": "mimxrt",
626
- "board": "MIMXRT1060_EVK",
627
- "board_name": "i.MX RT1060 EVK",
628
- "mcu_name": "MIMXRT1062DVJ6A",
629
- "path": "ports/mimxrt/boards/MIMXRT1060_EVK/mpconfigboard.h",
630
- "version": "v1.22.0"
631
- },
632
- {
633
- "description": "i.MX RT1064 EVK with MIMXRT1064DVL6A",
634
- "port": "mimxrt",
635
- "board": "MIMXRT1064_EVK",
636
- "board_name": "i.MX RT1064 EVK",
637
- "mcu_name": "MIMXRT1064DVL6A",
638
- "path": "ports/mimxrt/boards/MIMXRT1064_EVK/mpconfigboard.h",
639
- "version": "v1.22.0"
640
- },
641
- {
642
- "description": "i.MX RT1170 EVK with MIMXRT1176DVMAA",
643
- "port": "mimxrt",
644
- "board": "MIMXRT1170_EVK",
645
- "board_name": "i.MX RT1170 EVK",
646
- "mcu_name": "MIMXRT1176DVMAA",
647
- "path": "ports/mimxrt/boards/MIMXRT1170_EVK/mpconfigboard.h",
648
- "version": "v1.22.0"
649
- },
650
- {
651
- "description": "IBK-BLYST-NANO with NRF52832",
652
- "port": "nrf",
653
- "board": "IBK_BLYST_NANO",
654
- "board_name": "IBK-BLYST-NANO",
655
- "mcu_name": "NRF52832",
656
- "path": "ports/nrf/boards/IBK_BLYST_NANO/mpconfigboard.h",
657
- "version": "v1.22.0"
658
- },
659
- {
660
- "description": "IDK-BLYST-NANO with NRF52832",
661
- "port": "nrf",
662
- "board": "IDK_BLYST_NANO",
663
- "board_name": "IDK-BLYST-NANO",
664
- "mcu_name": "NRF52832",
665
- "path": "ports/nrf/boards/IDK_BLYST_NANO/mpconfigboard.h",
666
- "version": "v1.22.0"
667
- },
668
- {
669
- "description": "ItsyBitsy M0 Express with SAMD21G18A",
670
- "port": "samd",
671
- "board": "ADAFRUIT_ITSYBITSY_M0_EXPRESS",
672
- "board_name": "ItsyBitsy M0 Express",
673
- "mcu_name": "SAMD21G18A",
674
- "path": "ports/samd/boards/ADAFRUIT_ITSYBITSY_M0_EXPRESS/mpconfigboard.h",
675
- "version": "v1.22.0"
676
- },
677
- {
678
- "description": "ItsyBitsy M4 Express with SAMD51G19A",
679
- "port": "samd",
680
- "board": "ADAFRUIT_ITSYBITSY_M4_EXPRESS",
681
- "board_name": "ItsyBitsy M4 Express",
682
- "mcu_name": "SAMD51G19A",
683
- "path": "ports/samd/boards/ADAFRUIT_ITSYBITSY_M4_EXPRESS/mpconfigboard.h",
684
- "version": "v1.22.0"
685
- },
686
- {
687
- "description": "L476-DISCO with STM32L476",
688
- "port": "stm32",
689
- "board": "STM32L476DISC",
690
- "board_name": "L476-DISCO",
691
- "mcu_name": "STM32L476",
692
- "path": "ports/stm32/boards/STM32L476DISC/mpconfigboard.h",
693
- "version": "v1.22.0"
694
- },
695
- {
696
- "description": "L496G-DISCO with STM32L496",
697
- "port": "stm32",
698
- "board": "STM32L496GDISC",
699
- "board_name": "L496G-DISCO",
700
- "mcu_name": "STM32L496",
701
- "path": "ports/stm32/boards/STM32L496GDISC/mpconfigboard.h",
702
- "version": "v1.22.0"
703
- },
704
- {
705
- "description": "LaunchPad with CC3200",
706
- "port": "cc3200",
707
- "board": "LAUNCHXL",
708
- "board_name": "LaunchPad",
709
- "mcu_name": "CC3200",
710
- "path": "ports/cc3200/boards/LAUNCHXL/mpconfigboard.h",
711
- "version": "v1.22.0"
712
- },
713
- {
714
- "description": "LEGO Technic Hub No.6 with STM32F413",
715
- "port": "stm32",
716
- "board": "LEGO_HUB_NO6",
717
- "board_name": "LEGO Technic Hub No.6",
718
- "mcu_name": "STM32F413",
719
- "path": "ports/stm32/boards/LEGO_HUB_NO6/mpconfigboard.h",
720
- "version": "v1.22.0"
721
- },
722
- {
723
- "description": "LEGO Technic Hub No.7 with STM32F413",
724
- "port": "stm32",
725
- "board": "LEGO_HUB_NO7",
726
- "board_name": "LEGO Technic Hub No.7",
727
- "mcu_name": "STM32F413",
728
- "path": "ports/stm32/boards/LEGO_HUB_NO7/mpconfigboard.h",
729
- "version": "v1.22.0"
730
- },
731
- {
732
- "description": "LILYGO TTGO LoRa32 with ESP32",
733
- "port": "esp32",
734
- "board": "LILYGO_TTGO_LORA32",
735
- "board_name": "LILYGO TTGO LoRa32",
736
- "mcu_name": "ESP32",
737
- "path": "ports/esp32/boards/LILYGO_TTGO_LORA32/mpconfigboard.h",
738
- "version": "v1.22.0"
739
- },
740
- {
741
- "description": "LIMIFROG with STM32L476",
742
- "port": "stm32",
743
- "board": "LIMIFROG",
744
- "board_name": "LIMIFROG",
745
- "mcu_name": "STM32L476",
746
- "path": "ports/stm32/boards/LIMIFROG/mpconfigboard.h",
747
- "version": "v1.22.0"
748
- },
749
- {
750
- "description": "LOLIN_C3_MINI with ESP32-C3FH4",
751
- "port": "esp32",
752
- "board": "LOLIN_C3_MINI",
753
- "board_name": "LOLIN_C3_MINI",
754
- "mcu_name": "ESP32-C3FH4",
755
- "path": "ports/esp32/boards/LOLIN_C3_MINI/mpconfigboard.h",
756
- "version": "v1.22.0"
757
- },
758
- {
759
- "description": "LOLIN_S2_MINI with ESP32-S2FN4R2",
760
- "port": "esp32",
761
- "board": "LOLIN_S2_MINI",
762
- "board_name": "LOLIN_S2_MINI",
763
- "mcu_name": "ESP32-S2FN4R2",
764
- "path": "ports/esp32/boards/LOLIN_S2_MINI/mpconfigboard.h",
765
- "version": "v1.22.0"
766
- },
767
- {
768
- "description": "LOLIN_S2_PICO with ESP32-S2FN4R2",
769
- "port": "esp32",
770
- "board": "LOLIN_S2_PICO",
771
- "board_name": "LOLIN_S2_PICO",
772
- "mcu_name": "ESP32-S2FN4R2",
773
- "path": "ports/esp32/boards/LOLIN_S2_PICO/mpconfigboard.h",
774
- "version": "v1.22.0"
775
- },
776
- {
777
- "description": "M5Stack ATOM with ESP32-PICO-D4",
778
- "port": "esp32",
779
- "board": "M5STACK_ATOM",
780
- "board_name": "M5Stack ATOM",
781
- "mcu_name": "ESP32-PICO-D4",
782
- "path": "ports/esp32/boards/M5STACK_ATOM/mpconfigboard.h",
783
- "version": "v1.22.0"
784
- },
785
- {
786
- "description": "MDK-USB-DONGLE with NRF52840",
787
- "port": "nrf",
788
- "board": "NRF52840_MDK_USB_DONGLE",
789
- "board_name": "MDK-USB-DONGLE",
790
- "mcu_name": "NRF52840",
791
- "path": "ports/nrf/boards/NRF52840_MDK_USB_DONGLE/mpconfigboard.h",
792
- "version": "v1.22.0"
793
- },
794
- {
795
- "description": "Metro M4 Express Airlift with SAMD51J19A",
796
- "port": "samd",
797
- "board": "ADAFRUIT_METRO_M4_EXPRESS",
798
- "board_name": "Metro M4 Express Airlift",
799
- "mcu_name": "SAMD51J19A",
800
- "path": "ports/samd/boards/ADAFRUIT_METRO_M4_EXPRESS/mpconfigboard.h",
801
- "version": "v1.22.0"
802
- },
803
- {
804
- "description": "micro:bit with NRF51822",
805
- "port": "nrf",
806
- "board": "MICROBIT",
807
- "board_name": "micro:bit",
808
- "mcu_name": "NRF51822",
809
- "path": "ports/nrf/boards/MICROBIT/mpconfigboard.h",
810
- "version": "v1.22.0"
811
- },
812
- {
813
- "description": "MikroE Quail with STM32F427VI",
814
- "port": "stm32",
815
- "board": "MIKROE_QUAIL",
816
- "board_name": "MikroE Quail",
817
- "mcu_name": "STM32F427VI",
818
- "path": "ports/stm32/boards/MIKROE_QUAIL/mpconfigboard.h",
819
- "version": "v1.22.0"
820
- },
821
- {
822
- "description": "MIKROE_CLICKER2_STM32 with STM32F407",
823
- "port": "stm32",
824
- "board": "MIKROE_CLICKER2_STM32",
825
- "board_name": "MIKROE_CLICKER2_STM32",
826
- "mcu_name": "STM32F407",
827
- "path": "ports/stm32/boards/MIKROE_CLICKER2_STM32/mpconfigboard.h",
828
- "version": "v1.22.0"
829
- },
830
- {
831
- "description": "Mini SAM M4 with SAMD51G19A",
832
- "port": "samd",
833
- "board": "MINISAM_M4",
834
- "board_name": "Mini SAM M4",
835
- "mcu_name": "SAMD51G19A",
836
- "path": "ports/samd/boards/MINISAM_M4/mpconfigboard.h",
837
- "version": "v1.22.0"
838
- },
839
- {
840
- "description": "NADHAT_PYBF405 with STM32F405RG",
841
- "port": "stm32",
842
- "board": "GARATRONIC_NADHAT_F405",
843
- "board_name": "NADHAT_PYBF405",
844
- "mcu_name": "STM32F405RG",
845
- "path": "ports/stm32/boards/GARATRONIC_NADHAT_F405/mpconfigboard.h",
846
- "version": "v1.22.0"
847
- },
848
- {
849
- "description": "NanoS3 with ESP32-S3-FN8",
850
- "port": "esp32",
851
- "board": "UM_NANOS3",
852
- "board_name": "NanoS3",
853
- "mcu_name": "ESP32-S3-FN8",
854
- "path": "ports/esp32/boards/UM_NANOS3/mpconfigboard.h",
855
- "version": "v1.22.0"
856
- },
857
- {
858
- "description": "NetduinoPlus2 with STM32F405RG",
859
- "port": "stm32",
860
- "board": "NETDUINO_PLUS_2",
861
- "board_name": "NetduinoPlus2",
862
- "mcu_name": "STM32F405RG",
863
- "path": "ports/stm32/boards/NETDUINO_PLUS_2/mpconfigboard.h",
864
- "version": "v1.22.0"
865
- },
866
- {
867
- "description": "NICLAVISION with STM32H747",
868
- "port": "stm32",
869
- "board": "ARDUINO_NICLA_VISION",
870
- "board_name": "NICLAVISION",
871
- "mcu_name": "STM32H747",
872
- "path": "ports/stm32/boards/ARDUINO_NICLA_VISION/mpconfigboard.h",
873
- "version": "v1.21.0"
874
- },
875
- {
876
- "description": "NUCLEO-F091RC with STM32F091RCT6",
877
- "port": "stm32",
878
- "board": "NUCLEO_F091RC",
879
- "board_name": "NUCLEO-F091RC",
880
- "mcu_name": "STM32F091RCT6",
881
- "path": "ports/stm32/boards/NUCLEO_F091RC/mpconfigboard.h",
882
- "version": "v1.22.0"
883
- },
884
- {
885
- "description": "NUCLEO-F401RE with STM32F401xE",
886
- "port": "stm32",
887
- "board": "NUCLEO_F401RE",
888
- "board_name": "NUCLEO-F401RE",
889
- "mcu_name": "STM32F401xE",
890
- "path": "ports/stm32/boards/NUCLEO_F401RE/mpconfigboard.h",
891
- "version": "v1.22.0"
892
- },
893
- {
894
- "description": "NUCLEO-F411RE with STM32F411xE",
895
- "port": "stm32",
896
- "board": "NUCLEO_F411RE",
897
- "board_name": "NUCLEO-F411RE",
898
- "mcu_name": "STM32F411xE",
899
- "path": "ports/stm32/boards/NUCLEO_F411RE/mpconfigboard.h",
900
- "version": "v1.22.0"
901
- },
902
- {
903
- "description": "NUCLEO-F412ZG with STM32F412Zx",
904
- "port": "stm32",
905
- "board": "NUCLEO_F412ZG",
906
- "board_name": "NUCLEO-F412ZG",
907
- "mcu_name": "STM32F412Zx",
908
- "path": "ports/stm32/boards/NUCLEO_F412ZG/mpconfigboard.h",
909
- "version": "v1.22.0"
910
- },
911
- {
912
- "description": "NUCLEO-F413ZH with STM32F413",
913
- "port": "stm32",
914
- "board": "NUCLEO_F413ZH",
915
- "board_name": "NUCLEO-F413ZH",
916
- "mcu_name": "STM32F413",
917
- "path": "ports/stm32/boards/NUCLEO_F413ZH/mpconfigboard.h",
918
- "version": "v1.22.0"
919
- },
920
- {
921
- "description": "NUCLEO-F429ZI with STM32F429",
922
- "port": "stm32",
923
- "board": "NUCLEO_F429ZI",
924
- "board_name": "NUCLEO-F429ZI",
925
- "mcu_name": "STM32F429",
926
- "path": "ports/stm32/boards/NUCLEO_F429ZI/mpconfigboard.h",
927
- "version": "v1.22.0"
928
- },
929
- {
930
- "description": "NUCLEO-F439ZI with STM32F439ZIT6",
931
- "port": "stm32",
932
- "board": "NUCLEO_F439ZI",
933
- "board_name": "NUCLEO-F439ZI",
934
- "mcu_name": "STM32F439ZIT6",
935
- "path": "ports/stm32/boards/NUCLEO_F439ZI/mpconfigboard.h",
936
- "version": "v1.22.0"
937
- },
938
- {
939
- "description": "NUCLEO-F446RE with STM32F446xx",
940
- "port": "stm32",
941
- "board": "NUCLEO_F446RE",
942
- "board_name": "NUCLEO-F446RE",
943
- "mcu_name": "STM32F446xx",
944
- "path": "ports/stm32/boards/NUCLEO_F446RE/mpconfigboard.h",
945
- "version": "v1.22.0"
946
- },
947
- {
948
- "description": "NUCLEO-F722ZE with STM32F722",
949
- "port": "stm32",
950
- "board": "NUCLEO_F722ZE",
951
- "board_name": "NUCLEO-F722ZE",
952
- "mcu_name": "STM32F722",
953
- "path": "ports/stm32/boards/NUCLEO_F722ZE/mpconfigboard.h",
954
- "version": "v1.22.0"
955
- },
956
- {
957
- "description": "NUCLEO-F746ZG with STM32F746",
958
- "port": "stm32",
959
- "board": "NUCLEO_F746ZG",
960
- "board_name": "NUCLEO-F746ZG",
961
- "mcu_name": "STM32F746",
962
- "path": "ports/stm32/boards/NUCLEO_F746ZG/mpconfigboard.h",
963
- "version": "v1.22.0"
964
- },
965
- {
966
- "description": "NUCLEO-F756ZG with STM32F756",
967
- "port": "stm32",
968
- "board": "NUCLEO_F756ZG",
969
- "board_name": "NUCLEO-F756ZG",
970
- "mcu_name": "STM32F756",
971
- "path": "ports/stm32/boards/NUCLEO_F756ZG/mpconfigboard.h",
972
- "version": "v1.22.0"
973
- },
974
- {
975
- "description": "NUCLEO-F767ZI with STM32F767",
976
- "port": "stm32",
977
- "board": "NUCLEO_F767ZI",
978
- "board_name": "NUCLEO-F767ZI",
979
- "mcu_name": "STM32F767",
980
- "path": "ports/stm32/boards/NUCLEO_F767ZI/mpconfigboard.h",
981
- "version": "v1.22.0"
982
- },
983
- {
984
- "description": "NUCLEO-G0B1RE with STM32G0B1xE",
985
- "port": "stm32",
986
- "board": "NUCLEO_G0B1RE",
987
- "board_name": "NUCLEO-G0B1RE",
988
- "mcu_name": "STM32G0B1xE",
989
- "path": "ports/stm32/boards/NUCLEO_G0B1RE/mpconfigboard.h",
990
- "version": "v1.22.0"
991
- },
992
- {
993
- "description": "NUCLEO-L073RZ with STM32L073RZT6",
994
- "port": "stm32",
995
- "board": "NUCLEO_L073RZ",
996
- "board_name": "NUCLEO-L073RZ",
997
- "mcu_name": "STM32L073RZT6",
998
- "path": "ports/stm32/boards/NUCLEO_L073RZ/mpconfigboard.h",
999
- "version": "v1.22.0"
1000
- },
1001
- {
1002
- "description": "NUCLEO-L152RE with STM32L152xE",
1003
- "port": "stm32",
1004
- "board": "NUCLEO_L152RE",
1005
- "board_name": "NUCLEO-L152RE",
1006
- "mcu_name": "STM32L152xE",
1007
- "path": "ports/stm32/boards/NUCLEO_L152RE/mpconfigboard.h",
1008
- "version": "v1.22.0"
1009
- },
1010
- {
1011
- "description": "NUCLEO-L432KC with STM32L432KC",
1012
- "port": "stm32",
1013
- "board": "NUCLEO_L432KC",
1014
- "board_name": "NUCLEO-L432KC",
1015
- "mcu_name": "STM32L432KC",
1016
- "path": "ports/stm32/boards/NUCLEO_L432KC/mpconfigboard.h",
1017
- "version": "v1.22.0"
1018
- },
1019
- {
1020
- "description": "NUCLEO-L452RE with STM32L452RE",
1021
- "port": "stm32",
1022
- "board": "NUCLEO_L452RE",
1023
- "board_name": "NUCLEO-L452RE",
1024
- "mcu_name": "STM32L452RE",
1025
- "path": "ports/stm32/boards/NUCLEO_L452RE/mpconfigboard.h",
1026
- "version": "v1.22.0"
1027
- },
1028
- {
1029
- "description": "NUCLEO-L476RG with STM32L476RG",
1030
- "port": "stm32",
1031
- "board": "NUCLEO_L476RG",
1032
- "board_name": "NUCLEO-L476RG",
1033
- "mcu_name": "STM32L476RG",
1034
- "path": "ports/stm32/boards/NUCLEO_L476RG/mpconfigboard.h",
1035
- "version": "v1.22.0"
1036
- },
1037
- {
1038
- "description": "NUCLEO-L4A6ZG with STM32L4A6ZG",
1039
- "port": "stm32",
1040
- "board": "NUCLEO_L4A6ZG",
1041
- "board_name": "NUCLEO-L4A6ZG",
1042
- "mcu_name": "STM32L4A6ZG",
1043
- "path": "ports/stm32/boards/NUCLEO_L4A6ZG/mpconfigboard.h",
1044
- "version": "v1.22.0"
1045
- },
1046
- {
1047
- "description": "NUCLEO-WB55 with STM32WB55RGV6",
1048
- "port": "stm32",
1049
- "board": "NUCLEO_WB55",
1050
- "board_name": "NUCLEO-WB55",
1051
- "mcu_name": "STM32WB55RGV6",
1052
- "path": "ports/stm32/boards/NUCLEO_WB55/mpconfigboard.h",
1053
- "version": "v1.22.0"
1054
- },
1055
- {
1056
- "description": "NUCLEO-WL55 with STM32WL55JCI7",
1057
- "port": "stm32",
1058
- "board": "NUCLEO_WL55",
1059
- "board_name": "NUCLEO-WL55",
1060
- "mcu_name": "STM32WL55JCI7",
1061
- "path": "ports/stm32/boards/NUCLEO_WL55/mpconfigboard.h",
1062
- "version": "v1.22.0"
1063
- },
1064
- {
1065
- "description": "NUCLEO_G474RE with STM32G474",
1066
- "port": "stm32",
1067
- "board": "NUCLEO_G474RE",
1068
- "board_name": "NUCLEO_G474RE",
1069
- "mcu_name": "STM32G474",
1070
- "path": "ports/stm32/boards/NUCLEO_G474RE/mpconfigboard.h",
1071
- "version": "v1.22.0"
1072
- },
1073
- {
1074
- "description": "NUCLEO_H563ZI with STM32H563ZI",
1075
- "port": "stm32",
1076
- "board": "NUCLEO_H563ZI",
1077
- "board_name": "NUCLEO_H563ZI",
1078
- "mcu_name": "STM32H563ZI",
1079
- "path": "ports/stm32/boards/NUCLEO_H563ZI/mpconfigboard.h",
1080
- "version": "v1.22.0"
1081
- },
1082
- {
1083
- "description": "NUCLEO_H723ZG with STM32H723ZGT6",
1084
- "port": "stm32",
1085
- "board": "NUCLEO_H723ZG",
1086
- "board_name": "NUCLEO_H723ZG",
1087
- "mcu_name": "STM32H723ZGT6",
1088
- "path": "ports/stm32/boards/NUCLEO_H723ZG/mpconfigboard.h",
1089
- "version": "v1.22.0"
1090
- },
1091
- {
1092
- "description": "NUCLEO_H743ZI with STM32H743",
1093
- "port": "stm32",
1094
- "board": "NUCLEO_H743ZI",
1095
- "board_name": "NUCLEO_H743ZI",
1096
- "mcu_name": "STM32H743",
1097
- "path": "ports/stm32/boards/NUCLEO_H743ZI/mpconfigboard.h",
1098
- "version": "v1.22.0"
1099
- },
1100
- {
1101
- "description": "NUCLEO_H743ZI2",
1102
- "port": "stm32",
1103
- "board": "NUCLEO_H743ZI2",
1104
- "board_name": "NUCLEO_H743ZI2",
1105
- "mcu_name": "-",
1106
- "path": "ports/stm32/boards/NUCLEO_H743ZI2/mpconfigboard.h",
1107
- "version": "v1.22.0"
1108
- },
1109
- {
1110
- "description": "nullbits Bit-C PRO",
1111
- "port": "rp2",
1112
- "board": "NULLBITS_BIT_C_PRO",
1113
- "board_name": "nullbits Bit-C PRO",
1114
- "mcu_name": "-",
1115
- "path": "ports/rp2/boards/NULLBITS_BIT_C_PRO/mpconfigboard.h",
1116
- "version": "v1.22.0"
1117
- },
1118
- {
1119
- "description": "Olimex ESP32 ETH with ESP32",
1120
- "port": "esp32",
1121
- "board": "OLIMEX_ESP32_POE",
1122
- "board_name": "Olimex ESP32 ETH",
1123
- "mcu_name": "ESP32",
1124
- "path": "ports/esp32/boards/OLIMEX_ESP32_POE/mpconfigboard.h",
1125
- "version": "v1.22.0"
1126
- },
1127
- {
1128
- "description": "OLIMEX STM32-E407 with STM32F407",
1129
- "port": "stm32",
1130
- "board": "OLIMEX_E407",
1131
- "board_name": "OLIMEX STM32-E407",
1132
- "mcu_name": "STM32F407",
1133
- "path": "ports/stm32/boards/OLIMEX_E407/mpconfigboard.h",
1134
- "version": "v1.22.0"
1135
- },
1136
- {
1137
- "description": "OLIMEX STM32-H407 with STM32F407",
1138
- "port": "stm32",
1139
- "board": "OLIMEX_H407",
1140
- "board_name": "OLIMEX STM32-H407",
1141
- "mcu_name": "STM32F407",
1142
- "path": "ports/stm32/boards/OLIMEX_H407/mpconfigboard.h",
1143
- "version": "v1.22.0"
1144
- },
1145
- {
1146
- "description": "PCA10000 with NRF51822",
1147
- "port": "nrf",
1148
- "board": "PCA10000",
1149
- "board_name": "PCA10000",
1150
- "mcu_name": "NRF51822",
1151
- "path": "ports/nrf/boards/PCA10000/mpconfigboard.h",
1152
- "version": "v1.22.0"
1153
- },
1154
- {
1155
- "description": "PCA10001 with NRF51822",
1156
- "port": "nrf",
1157
- "board": "PCA10001",
1158
- "board_name": "PCA10001",
1159
- "mcu_name": "NRF51822",
1160
- "path": "ports/nrf/boards/PCA10001/mpconfigboard.h",
1161
- "version": "v1.22.0"
1162
- },
1163
- {
1164
- "description": "PCA10028 with NRF51822",
1165
- "port": "nrf",
1166
- "board": "PCA10028",
1167
- "board_name": "PCA10028",
1168
- "mcu_name": "NRF51822",
1169
- "path": "ports/nrf/boards/PCA10028/mpconfigboard.h",
1170
- "version": "v1.22.0"
1171
- },
1172
- {
1173
- "description": "PCA10031 with NRF51822",
1174
- "port": "nrf",
1175
- "board": "PCA10031",
1176
- "board_name": "PCA10031",
1177
- "mcu_name": "NRF51822",
1178
- "path": "ports/nrf/boards/PCA10031/mpconfigboard.h",
1179
- "version": "v1.22.0"
1180
- },
1181
- {
1182
- "description": "PCA10040 with NRF52832",
1183
- "port": "nrf",
1184
- "board": "PCA10040",
1185
- "board_name": "PCA10040",
1186
- "mcu_name": "NRF52832",
1187
- "path": "ports/nrf/boards/PCA10040/mpconfigboard.h",
1188
- "version": "v1.22.0"
1189
- },
1190
- {
1191
- "description": "PCA10056 with NRF52840",
1192
- "port": "nrf",
1193
- "board": "PCA10056",
1194
- "board_name": "PCA10056",
1195
- "mcu_name": "NRF52840",
1196
- "path": "ports/nrf/boards/PCA10056/mpconfigboard.h",
1197
- "version": "v1.22.0"
1198
- },
1199
- {
1200
- "description": "PCA10059 with NRF52840",
1201
- "port": "nrf",
1202
- "board": "PCA10059",
1203
- "board_name": "PCA10059",
1204
- "mcu_name": "NRF52840",
1205
- "path": "ports/nrf/boards/PCA10059/mpconfigboard.h",
1206
- "version": "v1.22.0"
1207
- },
1208
- {
1209
- "description": "PCA10090 with NRF9160",
1210
- "port": "nrf",
1211
- "board": "PCA10090",
1212
- "board_name": "PCA10090",
1213
- "mcu_name": "NRF9160",
1214
- "path": "ports/nrf/boards/PCA10090/mpconfigboard.h",
1215
- "version": "v1.22.0"
1216
- },
1217
- {
1218
- "description": "Pimoroni Pico LiPo 16MB",
1219
- "port": "rp2",
1220
- "board": "PIMORONI_PICOLIPO_16MB",
1221
- "board_name": "Pimoroni Pico LiPo 16MB",
1222
- "mcu_name": "-",
1223
- "path": "ports/rp2/boards/PIMORONI_PICOLIPO_16MB/mpconfigboard.h",
1224
- "version": "v1.22.0"
1225
- },
1226
- {
1227
- "description": "Pimoroni Pico LiPo 4MB",
1228
- "port": "rp2",
1229
- "board": "PIMORONI_PICOLIPO_4MB",
1230
- "board_name": "Pimoroni Pico LiPo 4MB",
1231
- "mcu_name": "-",
1232
- "path": "ports/rp2/boards/PIMORONI_PICOLIPO_4MB/mpconfigboard.h",
1233
- "version": "v1.22.0"
1234
- },
1235
- {
1236
- "description": "Pimoroni Tiny 2040",
1237
- "port": "rp2",
1238
- "board": "PIMORONI_TINY2040",
1239
- "board_name": "Pimoroni Tiny 2040",
1240
- "mcu_name": "-",
1241
- "path": "ports/rp2/boards/PIMORONI_TINY2040/mpconfigboard.h",
1242
- "version": "v1.22.0"
1243
- },
1244
- {
1245
- "description": "Pololu 3pi+ 2040 Robot",
1246
- "port": "rp2",
1247
- "board": "POLOLU_3PI_2040_ROBOT",
1248
- "board_name": "Pololu 3pi+ 2040 Robot",
1249
- "mcu_name": "-",
1250
- "path": "ports/rp2/boards/POLOLU_3PI_2040_ROBOT/mpconfigboard.h",
1251
- "version": "v1.22.0"
1252
- },
1253
- {
1254
- "description": "Pololu Zumo 2040 Robot",
1255
- "port": "rp2",
1256
- "board": "POLOLU_ZUMO_2040_ROBOT",
1257
- "board_name": "Pololu Zumo 2040 Robot",
1258
- "mcu_name": "-",
1259
- "path": "ports/rp2/boards/POLOLU_ZUMO_2040_ROBOT/mpconfigboard.h",
1260
- "version": "v1.22.0"
1261
- },
1262
- {
1263
- "description": "PORTENTA C33 with RA6M5",
1264
- "port": "renesas-ra",
1265
- "board": "ARDUINO_PORTENTA_C33",
1266
- "board_name": "PORTENTA C33",
1267
- "mcu_name": "RA6M5",
1268
- "path": "ports/renesas-ra/boards/ARDUINO_PORTENTA_C33/mpconfigboard.h",
1269
- "version": "v1.21.0"
1270
- },
1271
- {
1272
- "description": "PORTENTA with STM32H747",
1273
- "port": "stm32",
1274
- "board": "ARDUINO_PORTENTA_H7",
1275
- "board_name": "PORTENTA",
1276
- "mcu_name": "STM32H747",
1277
- "path": "ports/stm32/boards/ARDUINO_PORTENTA_H7/mpconfigboard.h",
1278
- "version": "v1.21.0"
1279
- },
1280
- {
1281
- "description": "ProS3 with ESP32-S3",
1282
- "port": "esp32",
1283
- "board": "UM_PROS3",
1284
- "board_name": "ProS3",
1285
- "mcu_name": "ESP32-S3",
1286
- "path": "ports/esp32/boards/UM_PROS3/mpconfigboard.h",
1287
- "version": "v1.22.0"
1288
- },
1289
- {
1290
- "description": "PYBD-SF2W with STM32F722IEK",
1291
- "port": "stm32",
1292
- "board": "PYBD_SF2",
1293
- "board_name": "PYBD-SF2W",
1294
- "mcu_name": "STM32F722IEK",
1295
- "path": "ports/stm32/boards/PYBD_SF2/mpconfigboard.h",
1296
- "version": "v1.22.0"
1297
- },
1298
- {
1299
- "description": "PYBD-SF3W with STM32F733IEK",
1300
- "port": "stm32",
1301
- "board": "PYBD_SF3",
1302
- "board_name": "PYBD-SF3W",
1303
- "mcu_name": "STM32F733IEK",
1304
- "path": "ports/stm32/boards/PYBD_SF3/mpconfigboard.h",
1305
- "version": "v1.22.0"
1306
- },
1307
- {
1308
- "description": "PYBD-SF6W with STM32F767IIK",
1309
- "port": "stm32",
1310
- "board": "PYBD_SF6",
1311
- "board_name": "PYBD-SF6W",
1312
- "mcu_name": "STM32F767IIK",
1313
- "path": "ports/stm32/boards/PYBD_SF6/mpconfigboard.h",
1314
- "version": "v1.22.0"
1315
- },
1316
- {
1317
- "description": "PYBLITEv1.0 with STM32F411RE",
1318
- "port": "stm32",
1319
- "board": "PYBLITEV10",
1320
- "board_name": "PYBLITEv1.0",
1321
- "mcu_name": "STM32F411RE",
1322
- "path": "ports/stm32/boards/PYBLITEV10/mpconfigboard.h",
1323
- "version": "v1.22.0"
1324
- },
1325
- {
1326
- "description": "PYBSTICK26_STD with STM32F411RE",
1327
- "port": "stm32",
1328
- "board": "GARATRONIC_PYBSTICK26_F411",
1329
- "board_name": "PYBSTICK26_STD",
1330
- "mcu_name": "STM32F411RE",
1331
- "path": "ports/stm32/boards/GARATRONIC_PYBSTICK26_F411/mpconfigboard.h",
1332
- "version": "v1.22.0"
1333
- },
1334
- {
1335
- "description": "PYBv1.0 with STM32F405RG",
1336
- "port": "stm32",
1337
- "board": "PYBV10",
1338
- "board_name": "PYBv1.0",
1339
- "mcu_name": "STM32F405RG",
1340
- "path": "ports/stm32/boards/PYBV10/mpconfigboard.h",
1341
- "version": "v1.22.0"
1342
- },
1343
- {
1344
- "description": "PYBv1.1 with STM32F405RG",
1345
- "port": "stm32",
1346
- "board": "PYBV11",
1347
- "board_name": "PYBv1.1",
1348
- "mcu_name": "STM32F405RG",
1349
- "path": "ports/stm32/boards/PYBV11/mpconfigboard.h",
1350
- "version": "v1.22.0"
1351
- },
1352
- {
1353
- "description": "PYBv3 with STM32F405RG",
1354
- "port": "stm32",
1355
- "board": "PYBV3",
1356
- "board_name": "PYBv3",
1357
- "mcu_name": "STM32F405RG",
1358
- "path": "ports/stm32/boards/PYBV3/mpconfigboard.h",
1359
- "version": "v1.22.0"
1360
- },
1361
- {
1362
- "description": "PYBv4 with STM32F405RG",
1363
- "port": "stm32",
1364
- "board": "PYBV4",
1365
- "board_name": "PYBv4",
1366
- "mcu_name": "STM32F405RG",
1367
- "path": "ports/stm32/boards/PYBV4/mpconfigboard.h",
1368
- "version": "v1.22.0"
1369
- },
1370
- {
1371
- "description": "RA4M1 CLICKER with RA4M1",
1372
- "port": "renesas-ra",
1373
- "board": "RA4M1_CLICKER",
1374
- "board_name": "RA4M1 CLICKER",
1375
- "mcu_name": "RA4M1",
1376
- "path": "ports/renesas-ra/boards/RA4M1_CLICKER/mpconfigboard.h",
1377
- "version": "v1.22.0"
1378
- },
1379
- {
1380
- "description": "RA4M1_CLICKER with RA4M1",
1381
- "port": "renesas-ra",
1382
- "board": "RA4M1_CLICKER",
1383
- "board_name": "RA4M1_CLICKER",
1384
- "mcu_name": "RA4M1",
1385
- "path": "ports/renesas-ra/boards/RA4M1_CLICKER/mpconfigboard.h",
1386
- "version": "v1.20.0"
1387
- },
1388
- {
1389
- "description": "RA4M1_EK with RA4M1",
1390
- "port": "renesas-ra",
1391
- "board": "RA4M1_EK",
1392
- "board_name": "RA4M1_EK",
1393
- "mcu_name": "RA4M1",
1394
- "path": "ports/renesas-ra/boards/RA4M1_EK/mpconfigboard.h",
1395
- "version": "v1.20.0"
1396
- },
1397
- {
1398
- "description": "RA4W1_EK with RA4W1",
1399
- "port": "renesas-ra",
1400
- "board": "RA4W1_EK",
1401
- "board_name": "RA4W1_EK",
1402
- "mcu_name": "RA4W1",
1403
- "path": "ports/renesas-ra/boards/RA4W1_EK/mpconfigboard.h",
1404
- "version": "v1.20.0"
1405
- },
1406
- {
1407
- "description": "RA6M1_EK with RA6M1",
1408
- "port": "renesas-ra",
1409
- "board": "RA6M1_EK",
1410
- "board_name": "RA6M1_EK",
1411
- "mcu_name": "RA6M1",
1412
- "path": "ports/renesas-ra/boards/RA6M1_EK/mpconfigboard.h",
1413
- "version": "v1.20.0"
1414
- },
1415
- {
1416
- "description": "RA6M2_EK with RA6M2",
1417
- "port": "renesas-ra",
1418
- "board": "RA6M2_EK",
1419
- "board_name": "RA6M2_EK",
1420
- "mcu_name": "RA6M2",
1421
- "path": "ports/renesas-ra/boards/RA6M2_EK/mpconfigboard.h",
1422
- "version": "v1.20.0"
1423
- },
1424
- {
1425
- "description": "Raspberry Pi Pico",
1426
- "port": "rp2",
1427
- "board": "RPI_PICO",
1428
- "board_name": "Raspberry Pi Pico",
1429
- "mcu_name": "-",
1430
- "path": "ports/rp2/boards/RPI_PICO/mpconfigboard.h",
1431
- "version": "v1.22.0"
1432
- },
1433
- {
1434
- "description": "Raspberry Pi Pico W",
1435
- "port": "rp2",
1436
- "board": "RPI_PICO_W",
1437
- "board_name": "Raspberry Pi Pico W",
1438
- "mcu_name": "-",
1439
- "path": "ports/rp2/boards/RPI_PICO_W/mpconfigboard.h",
1440
- "version": "v1.22.0"
1441
- },
1442
- {
1443
- "description": "RT1010-Py-DevKIT with MIMXRT1011DAE5A",
1444
- "port": "mimxrt",
1445
- "board": "OLIMEX_RT1010",
1446
- "board_name": "RT1010-Py-DevKIT",
1447
- "mcu_name": "MIMXRT1011DAE5A",
1448
- "path": "ports/mimxrt/boards/OLIMEX_RT1010/mpconfigboard.h",
1449
- "version": "v1.22.0"
1450
- },
1451
- {
1452
- "description": "SAMD21-XPLAINED-PRO with SAMD21J18A",
1453
- "port": "samd",
1454
- "board": "SAMD21_XPLAINED_PRO",
1455
- "board_name": "SAMD21-XPLAINED-PRO",
1456
- "mcu_name": "SAMD21J18A",
1457
- "path": "ports/samd/boards/SAMD21_XPLAINED_PRO/mpconfigboard.h",
1458
- "version": "v1.22.0"
1459
- },
1460
- {
1461
- "description": "Seeed ARCH MIX with MIMXRT1052DVL5B",
1462
- "port": "mimxrt",
1463
- "board": "SEEED_ARCH_MIX",
1464
- "board_name": "Seeed ARCH MIX",
1465
- "mcu_name": "MIMXRT1052DVL5B",
1466
- "path": "ports/mimxrt/boards/SEEED_ARCH_MIX/mpconfigboard.h",
1467
- "version": "v1.22.0"
1468
- },
1469
- {
1470
- "description": "Seeed Xiao with SAMD21G18A",
1471
- "port": "samd",
1472
- "board": "SEEED_XIAO_SAMD21",
1473
- "board_name": "Seeed Xiao",
1474
- "mcu_name": "SAMD21G18A",
1475
- "path": "ports/samd/boards/SEEED_XIAO_SAMD21/mpconfigboard.h",
1476
- "version": "v1.22.0"
1477
- },
1478
- {
1479
- "description": "Silicognition RP2040-Shim",
1480
- "port": "rp2",
1481
- "board": "SIL_RP2040_SHIM",
1482
- "board_name": "Silicognition RP2040-Shim",
1483
- "mcu_name": "-",
1484
- "path": "ports/rp2/boards/SIL_RP2040_SHIM/mpconfigboard.h",
1485
- "version": "v1.22.0"
1486
- },
1487
- {
1488
- "description": "Silicognition wESP32 with ESP32",
1489
- "port": "esp32",
1490
- "board": "SIL_WESP32",
1491
- "board_name": "Silicognition wESP32",
1492
- "mcu_name": "ESP32",
1493
- "path": "ports/esp32/boards/SIL_WESP32/mpconfigboard.h",
1494
- "version": "v1.22.0"
1495
- },
1496
- {
1497
- "description": "SparkFun Pro Micro RP2040",
1498
- "port": "rp2",
1499
- "board": "SPARKFUN_PROMICRO",
1500
- "board_name": "SparkFun Pro Micro RP2040",
1501
- "mcu_name": "-",
1502
- "path": "ports/rp2/boards/SPARKFUN_PROMICRO/mpconfigboard.h",
1503
- "version": "v1.22.0"
1504
- },
1505
- {
1506
- "description": "Sparkfun SAMD51 Thing Plus with SAMD51J20A",
1507
- "port": "samd",
1508
- "board": "SPARKFUN_SAMD51_THING_PLUS",
1509
- "board_name": "Sparkfun SAMD51 Thing Plus",
1510
- "mcu_name": "SAMD51J20A",
1511
- "path": "ports/samd/boards/SPARKFUN_SAMD51_THING_PLUS/mpconfigboard.h",
1512
- "version": "v1.22.0"
1513
- },
1514
- {
1515
- "description": "SparkFun STM32 MicroMod Processor with STM32F405RG",
1516
- "port": "stm32",
1517
- "board": "SPARKFUN_MICROMOD_STM32",
1518
- "board_name": "SparkFun STM32 MicroMod Processor",
1519
- "mcu_name": "STM32F405RG",
1520
- "path": "ports/stm32/boards/SPARKFUN_MICROMOD_STM32/mpconfigboard.h",
1521
- "version": "v1.22.0"
1522
- },
1523
- {
1524
- "description": "SparkFun Thing Plus RP2040",
1525
- "port": "rp2",
1526
- "board": "SPARKFUN_THINGPLUS",
1527
- "board_name": "SparkFun Thing Plus RP2040",
1528
- "mcu_name": "-",
1529
- "path": "ports/rp2/boards/SPARKFUN_THINGPLUS/mpconfigboard.h",
1530
- "version": "v1.22.0"
1531
- },
1532
- {
1533
- "description": "STM32H573I-DK with STM32H573IIK3Q",
1534
- "port": "stm32",
1535
- "board": "STM32H573I_DK",
1536
- "board_name": "STM32H573I-DK",
1537
- "mcu_name": "STM32H573IIK3Q",
1538
- "path": "ports/stm32/boards/STM32H573I_DK/mpconfigboard.h",
1539
- "version": "v1.22.0"
1540
- },
1541
- {
1542
- "description": "STM32H7B3I-DK with STM32H7B3LIH6Q",
1543
- "port": "stm32",
1544
- "board": "STM32H7B3I_DK",
1545
- "board_name": "STM32H7B3I-DK",
1546
- "mcu_name": "STM32H7B3LIH6Q",
1547
- "path": "ports/stm32/boards/STM32H7B3I_DK/mpconfigboard.h",
1548
- "version": "v1.22.0"
1549
- },
1550
- {
1551
- "description": "Teensy 4.0 with MIMXRT1062DVJ6A",
1552
- "port": "mimxrt",
1553
- "board": "TEENSY40",
1554
- "board_name": "Teensy 4.0",
1555
- "mcu_name": "MIMXRT1062DVJ6A",
1556
- "path": "ports/mimxrt/boards/TEENSY40/mpconfigboard.h",
1557
- "version": "v1.22.0"
1558
- },
1559
- {
1560
- "description": "Teensy 4.1 with MIMXRT1062DVJ6A",
1561
- "port": "mimxrt",
1562
- "board": "TEENSY41",
1563
- "board_name": "Teensy 4.1",
1564
- "mcu_name": "MIMXRT1062DVJ6A",
1565
- "path": "ports/mimxrt/boards/TEENSY41/mpconfigboard.h",
1566
- "version": "v1.22.0"
1567
- },
1568
- {
1569
- "description": "TinyPICO with ESP32-PICO-D4",
1570
- "port": "esp32",
1571
- "board": "UM_TINYPICO",
1572
- "board_name": "TinyPICO",
1573
- "mcu_name": "ESP32-PICO-D4",
1574
- "path": "ports/esp32/boards/UM_TINYPICO/mpconfigboard.h",
1575
- "version": "v1.22.0"
1576
- },
1577
- {
1578
- "description": "TinyS2 with ESP32-S2FN4R2",
1579
- "port": "esp32",
1580
- "board": "UM_TINYS2",
1581
- "board_name": "TinyS2",
1582
- "mcu_name": "ESP32-S2FN4R2",
1583
- "path": "ports/esp32/boards/UM_TINYS2/mpconfigboard.h",
1584
- "version": "v1.22.0"
1585
- },
1586
- {
1587
- "description": "TinyS3 with ESP32-S3-FN8",
1588
- "port": "esp32",
1589
- "board": "UM_TINYS3",
1590
- "board_name": "TinyS3",
1591
- "mcu_name": "ESP32-S3-FN8",
1592
- "path": "ports/esp32/boards/UM_TINYS3/mpconfigboard.h",
1593
- "version": "v1.22.0"
1594
- },
1595
- {
1596
- "description": "TinyWATCH S3 with ESP32-S3-PICO-1-N8R2",
1597
- "port": "esp32",
1598
- "board": "UM_TINYWATCHS3",
1599
- "board_name": "TinyWATCH S3",
1600
- "mcu_name": "ESP32-S3-PICO-1-N8R2",
1601
- "path": "ports/esp32/boards/UM_TINYWATCHS3/mpconfigboard.h",
1602
- "version": "v1.22.0"
1603
- },
1604
- {
1605
- "description": "Trinket M0 with SAMD21E18A",
1606
- "port": "samd",
1607
- "board": "ADAFRUIT_TRINKET_M0",
1608
- "board_name": "Trinket M0",
1609
- "mcu_name": "SAMD21E18A",
1610
- "path": "ports/samd/boards/ADAFRUIT_TRINKET_M0/mpconfigboard.h",
1611
- "version": "v1.22.0"
1612
- },
1613
- {
1614
- "description": "USBDongle-WB55 with STM32WB55CGU6",
1615
- "port": "stm32",
1616
- "board": "USBDONGLE_WB55",
1617
- "board_name": "USBDongle-WB55",
1618
- "mcu_name": "STM32WB55CGU6",
1619
- "path": "ports/stm32/boards/USBDONGLE_WB55/mpconfigboard.h",
1620
- "version": "v1.22.0"
1621
- },
1622
- {
1623
- "description": "VCC-GND STM32F407VE with STM32F407VE",
1624
- "port": "stm32",
1625
- "board": "VCC_GND_F407VE",
1626
- "board_name": "VCC-GND STM32F407VE",
1627
- "mcu_name": "STM32F407VE",
1628
- "path": "ports/stm32/boards/VCC_GND_F407VE/mpconfigboard.h",
1629
- "version": "v1.22.0"
1630
- },
1631
- {
1632
- "description": "VCC-GND STM32F407ZG with STM32F407ZG",
1633
- "port": "stm32",
1634
- "board": "VCC_GND_F407ZG",
1635
- "board_name": "VCC-GND STM32F407ZG",
1636
- "mcu_name": "STM32F407ZG",
1637
- "path": "ports/stm32/boards/VCC_GND_F407ZG/mpconfigboard.h",
1638
- "version": "v1.22.0"
1639
- },
1640
- {
1641
- "description": "VCC-GND STM32H743VI with STM32H743VI",
1642
- "port": "stm32",
1643
- "board": "VCC_GND_H743VI",
1644
- "board_name": "VCC-GND STM32H743VI",
1645
- "mcu_name": "STM32H743VI",
1646
- "path": "ports/stm32/boards/VCC_GND_H743VI/mpconfigboard.h",
1647
- "version": "v1.22.0"
1648
- },
1649
- {
1650
- "description": "VK-RA6M5 with RA6M5",
1651
- "port": "renesas-ra",
1652
- "board": "VK_RA6M5",
1653
- "board_name": "VK-RA6M5",
1654
- "mcu_name": "RA6M5",
1655
- "path": "ports/renesas-ra/boards/VK_RA6M5/mpconfigboard.h",
1656
- "version": "v1.22.0"
1657
- },
1658
- {
1659
- "description": "W5100S-EVB-Pico",
1660
- "port": "rp2",
1661
- "board": "W5100S_EVB_PICO",
1662
- "board_name": "W5100S-EVB-Pico",
1663
- "mcu_name": "-",
1664
- "path": "ports/rp2/boards/W5100S_EVB_PICO/mpconfigboard.h",
1665
- "version": "v1.22.0"
1666
- },
1667
- {
1668
- "description": "W5500-EVB-Pico",
1669
- "port": "rp2",
1670
- "board": "W5500_EVB_PICO",
1671
- "board_name": "W5500-EVB-Pico",
1672
- "mcu_name": "-",
1673
- "path": "ports/rp2/boards/W5500_EVB_PICO/mpconfigboard.h",
1674
- "version": "v1.22.0"
1675
- },
1676
- {
1677
- "description": "WeAct Studio RP2040",
1678
- "port": "rp2",
1679
- "board": "WEACTSTUDIO",
1680
- "board_name": "WeAct Studio RP2040",
1681
- "mcu_name": "-",
1682
- "path": "ports/rp2/boards/WEACTSTUDIO/mpconfigboard.h",
1683
- "version": "v1.22.0"
1684
- },
1685
- {
1686
- "description": "Wio Terminal D51R with SAMD51P19A",
1687
- "port": "samd",
1688
- "board": "SEEED_WIO_TERMINAL",
1689
- "board_name": "Wio Terminal D51R",
1690
- "mcu_name": "SAMD51P19A",
1691
- "path": "ports/samd/boards/SEEED_WIO_TERMINAL/mpconfigboard.h",
1692
- "version": "v1.22.0"
1693
- },
1694
- {
1695
- "description": "WiPy with CC3200",
1696
- "port": "cc3200",
1697
- "board": "WIPY",
1698
- "board_name": "WiPy",
1699
- "mcu_name": "CC3200",
1700
- "path": "ports/cc3200/boards/WIPY/mpconfigboard.h",
1701
- "version": "v1.22.0"
1702
- },
1703
- {
1704
- "description": "WT51822-S4AT with NRF51822",
1705
- "port": "nrf",
1706
- "board": "WT51822_S4AT",
1707
- "board_name": "WT51822-S4AT",
1708
- "mcu_name": "NRF51822",
1709
- "path": "ports/nrf/boards/WT51822_S4AT/mpconfigboard.h",
1710
- "version": "v1.22.0"
1711
- },
1712
- {
1713
- "description": "XENON with NRF52840",
1714
- "port": "nrf",
1715
- "board": "PARTICLE_XENON",
1716
- "board_name": "XENON",
1717
- "mcu_name": "NRF52840",
1718
- "path": "ports/nrf/boards/PARTICLE_XENON/mpconfigboard.h",
1719
- "version": "v1.22.0"
1720
- },
1721
- {
1722
- "description": "XIAO nRF52840 Sense with NRF52840",
1723
- "port": "nrf",
1724
- "board": "SEEED_XIAO_NRF52",
1725
- "board_name": "XIAO nRF52840 Sense",
1726
- "mcu_name": "NRF52840",
1727
- "path": "ports/nrf/boards/SEEED_XIAO_NRF52/mpconfigboard.h",
1728
- "version": "v1.22.0"
1729
- }
1
+ [
2
+ {
3
+ "description": "4MB/OTA module with ESP32",
4
+ "port": "esp32",
5
+ "board": "GENERIC_OTA",
6
+ "board_name": "4MB/OTA module",
7
+ "mcu_name": "ESP32",
8
+ "path": "ports/esp32/boards/GENERIC_OTA/mpconfigboard.h",
9
+ "version": "v1.20.0"
10
+ },
11
+ {
12
+ "description": "Actinius Icarus with NRF9160",
13
+ "port": "nrf",
14
+ "board": "ACTINIUS_ICARUS",
15
+ "board_name": "Actinius Icarus",
16
+ "mcu_name": "NRF9160",
17
+ "path": "ports/nrf/boards/ACTINIUS_ICARUS/mpconfigboard.h",
18
+ "version": "v1.22.0"
19
+ },
20
+ {
21
+ "description": "Adafruit Feather RP2040",
22
+ "port": "rp2",
23
+ "board": "ADAFRUIT_FEATHER_RP2040",
24
+ "board_name": "Adafruit Feather RP2040",
25
+ "mcu_name": "-",
26
+ "path": "ports/rp2/boards/ADAFRUIT_FEATHER_RP2040/mpconfigboard.h",
27
+ "version": "v1.22.0"
28
+ },
29
+ {
30
+ "description": "Adafruit Feather STM32F405 with STM32F405RG",
31
+ "port": "stm32",
32
+ "board": "ADAFRUIT_F405_EXPRESS",
33
+ "board_name": "Adafruit Feather STM32F405",
34
+ "mcu_name": "STM32F405RG",
35
+ "path": "ports/stm32/boards/ADAFRUIT_F405_EXPRESS/mpconfigboard.h",
36
+ "version": "v1.22.0"
37
+ },
38
+ {
39
+ "description": "Adafruit ItsyBitsy RP2040",
40
+ "port": "rp2",
41
+ "board": "ADAFRUIT_ITSYBITSY_RP2040",
42
+ "board_name": "Adafruit ItsyBitsy RP2040",
43
+ "mcu_name": "-",
44
+ "path": "ports/rp2/boards/ADAFRUIT_ITSYBITSY_RP2040/mpconfigboard.h",
45
+ "version": "v1.22.0"
46
+ },
47
+ {
48
+ "description": "Adafruit Metro M7 with MIMXRT1011DAE5A",
49
+ "port": "mimxrt",
50
+ "board": "ADAFRUIT_METRO_M7",
51
+ "board_name": "Adafruit Metro M7",
52
+ "mcu_name": "MIMXRT1011DAE5A",
53
+ "path": "ports/mimxrt/boards/ADAFRUIT_METRO_M7/mpconfigboard.h",
54
+ "version": "v1.22.0"
55
+ },
56
+ {
57
+ "description": "Adafruit QT Py RP2040",
58
+ "port": "rp2",
59
+ "board": "ADAFRUIT_QTPY_RP2040",
60
+ "board_name": "Adafruit QT Py RP2040",
61
+ "mcu_name": "-",
62
+ "path": "ports/rp2/boards/ADAFRUIT_QTPY_RP2040/mpconfigboard.h",
63
+ "version": "v1.22.0"
64
+ },
65
+ {
66
+ "description": "Arduino GIGA R1 WiFi with STM32H747",
67
+ "port": "stm32",
68
+ "board": "ARDUINO_GIGA",
69
+ "board_name": "Arduino GIGA R1 WiFi",
70
+ "mcu_name": "STM32H747",
71
+ "path": "ports/stm32/boards/ARDUINO_GIGA/mpconfigboard.h",
72
+ "version": "v1.22.0"
73
+ },
74
+ {
75
+ "description": "Arduino Nano 33 BLE Sense with NRF52840",
76
+ "port": "nrf",
77
+ "board": "ARDUINO_NANO_33_BLE_SENSE",
78
+ "board_name": "Arduino Nano 33 BLE Sense",
79
+ "mcu_name": "NRF52840",
80
+ "path": "ports/nrf/boards/ARDUINO_NANO_33_BLE_SENSE/mpconfigboard.h",
81
+ "version": "v1.22.0"
82
+ },
83
+ {
84
+ "description": "Arduino Nano ESP32 with ESP32S3",
85
+ "port": "esp32",
86
+ "board": "ARDUINO_NANO_ESP32",
87
+ "board_name": "Arduino Nano ESP32",
88
+ "mcu_name": "ESP32S3",
89
+ "path": "ports/esp32/boards/ARDUINO_NANO_ESP32/mpconfigboard.h",
90
+ "version": "v1.22.0"
91
+ },
92
+ {
93
+ "description": "Arduino Nano RP2040 Connect",
94
+ "port": "rp2",
95
+ "board": "ARDUINO_NANO_RP2040_CONNECT",
96
+ "board_name": "Arduino Nano RP2040 Connect",
97
+ "mcu_name": "-",
98
+ "path": "ports/rp2/boards/ARDUINO_NANO_RP2040_CONNECT/mpconfigboard.h",
99
+ "version": "v1.22.0"
100
+ },
101
+ {
102
+ "description": "Arduino Nicla Vision with STM32H747",
103
+ "port": "stm32",
104
+ "board": "ARDUINO_NICLA_VISION",
105
+ "board_name": "Arduino Nicla Vision",
106
+ "mcu_name": "STM32H747",
107
+ "path": "ports/stm32/boards/ARDUINO_NICLA_VISION/mpconfigboard.h",
108
+ "version": "v1.22.0"
109
+ },
110
+ {
111
+ "description": "Arduino Portenta C33 with RA6M5",
112
+ "port": "renesas-ra",
113
+ "board": "ARDUINO_PORTENTA_C33",
114
+ "board_name": "Arduino Portenta C33",
115
+ "mcu_name": "RA6M5",
116
+ "path": "ports/renesas-ra/boards/ARDUINO_PORTENTA_C33/mpconfigboard.h",
117
+ "version": "v1.22.0"
118
+ },
119
+ {
120
+ "description": "Arduino Portenta H7 with STM32H747",
121
+ "port": "stm32",
122
+ "board": "ARDUINO_PORTENTA_H7",
123
+ "board_name": "Arduino Portenta H7",
124
+ "mcu_name": "STM32H747",
125
+ "path": "ports/stm32/boards/ARDUINO_PORTENTA_H7/mpconfigboard.h",
126
+ "version": "v1.22.0"
127
+ },
128
+ {
129
+ "description": "Arduino Primo with NRF52832",
130
+ "port": "nrf",
131
+ "board": "ARDUINO_PRIMO",
132
+ "board_name": "Arduino Primo",
133
+ "mcu_name": "NRF52832",
134
+ "path": "ports/nrf/boards/ARDUINO_PRIMO/mpconfigboard.h",
135
+ "version": "v1.22.0"
136
+ },
137
+ {
138
+ "description": "B-L072Z-LRWAN1 with STM32L072CZ",
139
+ "port": "stm32",
140
+ "board": "B_L072Z_LRWAN1",
141
+ "board_name": "B-L072Z-LRWAN1",
142
+ "mcu_name": "STM32L072CZ",
143
+ "path": "ports/stm32/boards/B_L072Z_LRWAN1/mpconfigboard.h",
144
+ "version": "v1.22.0"
145
+ },
146
+ {
147
+ "description": "B-L475E-IOT01A with STM32L475",
148
+ "port": "stm32",
149
+ "board": "B_L475E_IOT01A",
150
+ "board_name": "B-L475E-IOT01A",
151
+ "mcu_name": "STM32L475",
152
+ "path": "ports/stm32/boards/B_L475E_IOT01A/mpconfigboard.h",
153
+ "version": "v1.22.0"
154
+ },
155
+ {
156
+ "description": "Bluefruit nRF52 Feather with NRF52832",
157
+ "port": "nrf",
158
+ "board": "FEATHER52",
159
+ "board_name": "Bluefruit nRF52 Feather",
160
+ "mcu_name": "NRF52832",
161
+ "path": "ports/nrf/boards/FEATHER52/mpconfigboard.h",
162
+ "version": "v1.22.0"
163
+ },
164
+ {
165
+ "description": "BLUEIO-TAG-EVIM with NRF52832",
166
+ "port": "nrf",
167
+ "board": "BLUEIO_TAG_EVIM",
168
+ "board_name": "BLUEIO-TAG-EVIM",
169
+ "mcu_name": "NRF52832",
170
+ "path": "ports/nrf/boards/BLUEIO_TAG_EVIM/mpconfigboard.h",
171
+ "version": "v1.22.0"
172
+ },
173
+ {
174
+ "description": "Cerb40 with STM32F405RG",
175
+ "port": "stm32",
176
+ "board": "CERB40",
177
+ "board_name": "Cerb40",
178
+ "mcu_name": "STM32F405RG",
179
+ "path": "ports/stm32/boards/CERB40/mpconfigboard.h",
180
+ "version": "v1.22.0"
181
+ },
182
+ {
183
+ "description": "CustomPCB with STM32F439",
184
+ "port": "stm32",
185
+ "board": "STM32F439",
186
+ "board_name": "CustomPCB",
187
+ "mcu_name": "STM32F439",
188
+ "path": "ports/stm32/boards/STM32F439/mpconfigboard.h",
189
+ "version": "v1.22.0"
190
+ },
191
+ {
192
+ "description": "DVK-BL652 with NRF52832",
193
+ "port": "nrf",
194
+ "board": "DVK_BL652",
195
+ "board_name": "DVK-BL652",
196
+ "mcu_name": "NRF52832",
197
+ "path": "ports/nrf/boards/DVK_BL652/mpconfigboard.h",
198
+ "version": "v1.22.0"
199
+ },
200
+ {
201
+ "description": "EK-RA4M1 with RA4M1",
202
+ "port": "renesas-ra",
203
+ "board": "EK_RA4M1",
204
+ "board_name": "EK-RA4M1",
205
+ "mcu_name": "RA4M1",
206
+ "path": "ports/renesas-ra/boards/EK_RA4M1/mpconfigboard.h",
207
+ "version": "v1.22.0"
208
+ },
209
+ {
210
+ "description": "EK-RA4W1 with RA4W1",
211
+ "port": "renesas-ra",
212
+ "board": "EK_RA4W1",
213
+ "board_name": "EK-RA4W1",
214
+ "mcu_name": "RA4W1",
215
+ "path": "ports/renesas-ra/boards/EK_RA4W1/mpconfigboard.h",
216
+ "version": "v1.22.0"
217
+ },
218
+ {
219
+ "description": "EK-RA6M1 with RA6M1",
220
+ "port": "renesas-ra",
221
+ "board": "EK_RA6M1",
222
+ "board_name": "EK-RA6M1",
223
+ "mcu_name": "RA6M1",
224
+ "path": "ports/renesas-ra/boards/EK_RA6M1/mpconfigboard.h",
225
+ "version": "v1.22.0"
226
+ },
227
+ {
228
+ "description": "EK-RA6M2 with RA6M2",
229
+ "port": "renesas-ra",
230
+ "board": "EK_RA6M2",
231
+ "board_name": "EK-RA6M2",
232
+ "mcu_name": "RA6M2",
233
+ "path": "ports/renesas-ra/boards/EK_RA6M2/mpconfigboard.h",
234
+ "version": "v1.22.0"
235
+ },
236
+ {
237
+ "description": "ESP module (1M) with ESP8266",
238
+ "port": "esp8266",
239
+ "board": "ESP8266_GENERIC",
240
+ "board_name": "ESP module (1M)",
241
+ "mcu_name": "ESP8266",
242
+ "path": "ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h",
243
+ "version": "v1.22.0"
244
+ },
245
+ {
246
+ "description": "ESP module (512K) with ESP8266",
247
+ "port": "esp8266",
248
+ "board": "ESP8266_GENERIC",
249
+ "board_name": "ESP module (512K)",
250
+ "mcu_name": "ESP8266",
251
+ "path": "ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h",
252
+ "version": "v1.22.0"
253
+ },
254
+ {
255
+ "description": "ESP module with ESP8266",
256
+ "port": "esp8266",
257
+ "board": "ESP8266_GENERIC",
258
+ "board_name": "ESP module",
259
+ "mcu_name": "ESP8266",
260
+ "path": "ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h",
261
+ "version": "v1.22.0"
262
+ },
263
+ {
264
+ "description": "ESP32 module (spiram) with ESP32",
265
+ "port": "esp32",
266
+ "board": "GENERIC_SPIRAM",
267
+ "board_name": "ESP32 module (spiram)",
268
+ "mcu_name": "ESP32",
269
+ "path": "ports/esp32/boards/GENERIC_SPIRAM/mpconfigboard.h",
270
+ "version": "v1.20.0"
271
+ },
272
+ {
273
+ "description": "ESP32 module with ESP32",
274
+ "port": "esp32",
275
+ "board": "GENERIC",
276
+ "board_name": "ESP32 module",
277
+ "mcu_name": "ESP32",
278
+ "path": "ports/esp32/boards/GENERIC/mpconfigboard.h",
279
+ "version": "v1.20.0"
280
+ },
281
+ {
282
+ "description": "ESP32 Unicore module with ESP32-UNICORE",
283
+ "port": "esp32",
284
+ "board": "GENERIC_UNICORE",
285
+ "board_name": "ESP32 Unicore module",
286
+ "mcu_name": "ESP32-UNICORE",
287
+ "path": "ports/esp32/boards/GENERIC_UNICORE/mpconfigboard.h",
288
+ "version": "v1.20.0"
289
+ },
290
+ {
291
+ "description": "ESP32-D2WD",
292
+ "port": "esp32",
293
+ "board": "ESP32_GENERIC",
294
+ "board_name": "-",
295
+ "mcu_name": "-",
296
+ "path": "ports/esp32/boards/ESP32_GENERIC/mpconfigboard.cmake",
297
+ "version": "v1.22.0"
298
+ },
299
+ {
300
+ "description": "ESP32-S2-WROVER with ESP32-S2",
301
+ "port": "esp32",
302
+ "board": "ESP32_S2_WROVER",
303
+ "board_name": "ESP32-S2-WROVER",
304
+ "mcu_name": "ESP32-S2",
305
+ "path": "ports/esp32/boards/ESP32_S2_WROVER/mpconfigboard.h",
306
+ "version": "v1.20.0"
307
+ },
308
+ {
309
+ "description": "ESP32-UNICORE",
310
+ "port": "esp32",
311
+ "board": "ESP32_GENERIC",
312
+ "board_name": "-",
313
+ "mcu_name": "-",
314
+ "path": "ports/esp32/boards/ESP32_GENERIC/mpconfigboard.cmake",
315
+ "version": "v1.22.0"
316
+ },
317
+ {
318
+ "description": "ESP32C3 module with ESP32C3",
319
+ "port": "esp32",
320
+ "board": "ESP32_GENERIC_C3",
321
+ "board_name": "ESP32C3 module",
322
+ "mcu_name": "ESP32C3",
323
+ "path": "ports/esp32/boards/ESP32_GENERIC_C3/mpconfigboard.h",
324
+ "version": "v1.22.0"
325
+ },
326
+ {
327
+ "description": "ESP32S2 module with ESP32S2",
328
+ "port": "esp32",
329
+ "board": "GENERIC_S2",
330
+ "board_name": "ESP32S2 module",
331
+ "mcu_name": "ESP32S2",
332
+ "path": "ports/esp32/boards/GENERIC_S2/mpconfigboard.h",
333
+ "version": "v1.20.0"
334
+ },
335
+ {
336
+ "description": "ESP32S3 module (spiram octal) with ESP32S3",
337
+ "port": "esp32",
338
+ "board": "GENERIC_S3_SPIRAM_OCT",
339
+ "board_name": "ESP32S3 module (spiram octal)",
340
+ "mcu_name": "ESP32S3",
341
+ "path": "ports/esp32/boards/GENERIC_S3_SPIRAM_OCT/mpconfigboard.h",
342
+ "version": "v1.20.0"
343
+ },
344
+ {
345
+ "description": "ESP32S3 module (spiram) with ESP32S3",
346
+ "port": "esp32",
347
+ "board": "GENERIC_S3_SPIRAM",
348
+ "board_name": "ESP32S3 module (spiram)",
349
+ "mcu_name": "ESP32S3",
350
+ "path": "ports/esp32/boards/GENERIC_S3_SPIRAM/mpconfigboard.h",
351
+ "version": "v1.20.0"
352
+ },
353
+ {
354
+ "description": "ESP32S3 module with ESP32S3",
355
+ "port": "esp32",
356
+ "board": "GENERIC_S3",
357
+ "board_name": "ESP32S3 module",
358
+ "mcu_name": "ESP32S3",
359
+ "path": "ports/esp32/boards/GENERIC_S3/mpconfigboard.h",
360
+ "version": "v1.20.0"
361
+ },
362
+ {
363
+ "description": "Espruino Pico with STM32F401CD",
364
+ "port": "stm32",
365
+ "board": "ESPRUINO_PICO",
366
+ "board_name": "Espruino Pico",
367
+ "mcu_name": "STM32F401CD",
368
+ "path": "ports/stm32/boards/ESPRUINO_PICO/mpconfigboard.h",
369
+ "version": "v1.22.0"
370
+ },
371
+ {
372
+ "description": "EVK_NINA_B1 with NRF52832",
373
+ "port": "nrf",
374
+ "board": "EVK_NINA_B1",
375
+ "board_name": "EVK_NINA_B1",
376
+ "mcu_name": "NRF52832",
377
+ "path": "ports/nrf/boards/EVK_NINA_B1/mpconfigboard.h",
378
+ "version": "v1.22.0"
379
+ },
380
+ {
381
+ "description": "EVK_NINA_B3 with NRF52840",
382
+ "port": "nrf",
383
+ "board": "EVK_NINA_B3",
384
+ "board_name": "EVK_NINA_B3",
385
+ "mcu_name": "NRF52840",
386
+ "path": "ports/nrf/boards/EVK_NINA_B3/mpconfigboard.h",
387
+ "version": "v1.22.0"
388
+ },
389
+ {
390
+ "description": "F411DISC with STM32F411",
391
+ "port": "stm32",
392
+ "board": "STM32F411DISC",
393
+ "board_name": "F411DISC",
394
+ "mcu_name": "STM32F411",
395
+ "path": "ports/stm32/boards/STM32F411DISC/mpconfigboard.h",
396
+ "version": "v1.22.0"
397
+ },
398
+ {
399
+ "description": "F429I-DISCO with STM32F429",
400
+ "port": "stm32",
401
+ "board": "STM32F429DISC",
402
+ "board_name": "F429I-DISCO",
403
+ "mcu_name": "STM32F429",
404
+ "path": "ports/stm32/boards/STM32F429DISC/mpconfigboard.h",
405
+ "version": "v1.22.0"
406
+ },
407
+ {
408
+ "description": "F4DISC with STM32F407",
409
+ "port": "stm32",
410
+ "board": "STM32F4DISC",
411
+ "board_name": "F4DISC",
412
+ "mcu_name": "STM32F407",
413
+ "path": "ports/stm32/boards/STM32F4DISC/mpconfigboard.h",
414
+ "version": "v1.22.0"
415
+ },
416
+ {
417
+ "description": "F769DISC with STM32F769",
418
+ "port": "stm32",
419
+ "board": "STM32F769DISC",
420
+ "board_name": "F769DISC",
421
+ "mcu_name": "STM32F769",
422
+ "path": "ports/stm32/boards/STM32F769DISC/mpconfigboard.h",
423
+ "version": "v1.22.0"
424
+ },
425
+ {
426
+ "description": "F7DISC with STM32F746",
427
+ "port": "stm32",
428
+ "board": "STM32F7DISC",
429
+ "board_name": "F7DISC",
430
+ "mcu_name": "STM32F746",
431
+ "path": "ports/stm32/boards/STM32F7DISC/mpconfigboard.h",
432
+ "version": "v1.22.0"
433
+ },
434
+ {
435
+ "description": "Feather M0 Express with SAMD21G18A",
436
+ "port": "samd",
437
+ "board": "ADAFRUIT_FEATHER_M0_EXPRESS",
438
+ "board_name": "Feather M0 Express",
439
+ "mcu_name": "SAMD21G18A",
440
+ "path": "ports/samd/boards/ADAFRUIT_FEATHER_M0_EXPRESS/mpconfigboard.h",
441
+ "version": "v1.22.0"
442
+ },
443
+ {
444
+ "description": "Feather M4 Express with SAMD51J19A",
445
+ "port": "samd",
446
+ "board": "ADAFRUIT_FEATHER_M4_EXPRESS",
447
+ "board_name": "Feather M4 Express",
448
+ "mcu_name": "SAMD51J19A",
449
+ "path": "ports/samd/boards/ADAFRUIT_FEATHER_M4_EXPRESS/mpconfigboard.h",
450
+ "version": "v1.22.0"
451
+ },
452
+ {
453
+ "description": "FeatherS2 Neo with ESP32-S2FN4R2",
454
+ "port": "esp32",
455
+ "board": "UM_FEATHERS2NEO",
456
+ "board_name": "FeatherS2 Neo",
457
+ "mcu_name": "ESP32-S2FN4R2",
458
+ "path": "ports/esp32/boards/UM_FEATHERS2NEO/mpconfigboard.h",
459
+ "version": "v1.22.0"
460
+ },
461
+ {
462
+ "description": "FeatherS2 with ESP32-S2",
463
+ "port": "esp32",
464
+ "board": "UM_FEATHERS2",
465
+ "board_name": "FeatherS2",
466
+ "mcu_name": "ESP32-S2",
467
+ "path": "ports/esp32/boards/UM_FEATHERS2/mpconfigboard.h",
468
+ "version": "v1.22.0"
469
+ },
470
+ {
471
+ "description": "FeatherS3 with ESP32-S3",
472
+ "port": "esp32",
473
+ "board": "UM_FEATHERS3",
474
+ "board_name": "FeatherS3",
475
+ "mcu_name": "ESP32-S3",
476
+ "path": "ports/esp32/boards/UM_FEATHERS3/mpconfigboard.h",
477
+ "version": "v1.22.0"
478
+ },
479
+ {
480
+ "description": "GARATRONIC_PYBSTICK26_RP2040",
481
+ "port": "rp2",
482
+ "board": "GARATRONIC_PYBSTICK26_RP2040",
483
+ "board_name": "GARATRONIC_PYBSTICK26_RP2040",
484
+ "mcu_name": "-",
485
+ "path": "ports/rp2/boards/GARATRONIC_PYBSTICK26_RP2040/mpconfigboard.h",
486
+ "version": "v1.22.0"
487
+ },
488
+ {
489
+ "description": "Generic ESP32 module with ESP32",
490
+ "port": "esp32",
491
+ "board": "ESP32_GENERIC",
492
+ "board_name": "Generic ESP32 module",
493
+ "mcu_name": "ESP32",
494
+ "path": "ports/esp32/boards/ESP32_GENERIC/mpconfigboard.h",
495
+ "version": "v1.22.0"
496
+ },
497
+ {
498
+ "description": "Generic ESP32 module with OTA",
499
+ "port": "esp32",
500
+ "board": "ESP32_GENERIC",
501
+ "board_name": "-",
502
+ "mcu_name": "-",
503
+ "path": "ports/esp32/boards/ESP32_GENERIC/mpconfigboard.cmake",
504
+ "version": "v1.22.0"
505
+ },
506
+ {
507
+ "description": "Generic ESP32 module with SPIRAM",
508
+ "port": "esp32",
509
+ "board": "ESP32_GENERIC",
510
+ "board_name": "-",
511
+ "mcu_name": "-",
512
+ "path": "ports/esp32/boards/ESP32_GENERIC/mpconfigboard.cmake",
513
+ "version": "v1.22.0"
514
+ },
515
+ {
516
+ "description": "Generic ESP32-D2WD module with ESP32-D2WD",
517
+ "port": "esp32",
518
+ "board": "GENERIC_D2WD",
519
+ "board_name": "Generic ESP32-D2WD module",
520
+ "mcu_name": "ESP32-D2WD",
521
+ "path": "ports/esp32/boards/GENERIC_D2WD/mpconfigboard.h",
522
+ "version": "v1.20.0"
523
+ },
524
+ {
525
+ "description": "Generic ESP32S2 module with ESP32S2",
526
+ "port": "esp32",
527
+ "board": "ESP32_GENERIC_S2",
528
+ "board_name": "Generic ESP32S2 module",
529
+ "mcu_name": "ESP32S2",
530
+ "path": "ports/esp32/boards/ESP32_GENERIC_S2/mpconfigboard.h",
531
+ "version": "v1.22.0"
532
+ },
533
+ {
534
+ "description": "Generic ESP32S3 module with ESP32S3",
535
+ "port": "esp32",
536
+ "board": "ESP32_GENERIC_S3",
537
+ "board_name": "Generic ESP32S3 module",
538
+ "mcu_name": "ESP32S3",
539
+ "path": "ports/esp32/boards/ESP32_GENERIC_S3/mpconfigboard.h",
540
+ "version": "v1.22.0"
541
+ },
542
+ {
543
+ "description": "Generic ESP32S3 module with Octal-SPIRAM",
544
+ "port": "esp32",
545
+ "board": "ESP32_GENERIC_S3",
546
+ "board_name": "-",
547
+ "mcu_name": "-",
548
+ "path": "ports/esp32/boards/ESP32_GENERIC_S3/mpconfigboard.cmake",
549
+ "version": "v1.22.0"
550
+ },
551
+ {
552
+ "description": "GIGA with STM32H747",
553
+ "port": "stm32",
554
+ "board": "ARDUINO_GIGA",
555
+ "board_name": "GIGA",
556
+ "mcu_name": "STM32H747",
557
+ "path": "ports/stm32/boards/ARDUINO_GIGA/mpconfigboard.h",
558
+ "version": "v1.21.0"
559
+ },
560
+ {
561
+ "description": "HydraBus1.0 with STM32F4",
562
+ "port": "stm32",
563
+ "board": "HYDRABUS",
564
+ "board_name": "HydraBus1.0",
565
+ "mcu_name": "STM32F4",
566
+ "path": "ports/stm32/boards/HYDRABUS/mpconfigboard.h",
567
+ "version": "v1.22.0"
568
+ },
569
+ {
570
+ "description": "i.MX RT1010 EVK with MIMXRT1011DAE5A",
571
+ "port": "mimxrt",
572
+ "board": "MIMXRT1010_EVK",
573
+ "board_name": "i.MX RT1010 EVK",
574
+ "mcu_name": "MIMXRT1011DAE5A",
575
+ "path": "ports/mimxrt/boards/MIMXRT1010_EVK/mpconfigboard.h",
576
+ "version": "v1.22.0"
577
+ },
578
+ {
579
+ "description": "i.MX RT1015 EVK with MIMXRT1015DAF5A",
580
+ "port": "mimxrt",
581
+ "board": "MIMXRT1015_EVK",
582
+ "board_name": "i.MX RT1015 EVK",
583
+ "mcu_name": "MIMXRT1015DAF5A",
584
+ "path": "ports/mimxrt/boards/MIMXRT1015_EVK/mpconfigboard.h",
585
+ "version": "v1.22.0"
586
+ },
587
+ {
588
+ "description": "i.MX RT1020 EVK with MIMXRT1021DAG5A",
589
+ "port": "mimxrt",
590
+ "board": "MIMXRT1020_EVK",
591
+ "board_name": "i.MX RT1020 EVK",
592
+ "mcu_name": "MIMXRT1021DAG5A",
593
+ "path": "ports/mimxrt/boards/MIMXRT1020_EVK/mpconfigboard.h",
594
+ "version": "v1.22.0"
595
+ },
596
+ {
597
+ "description": "i.MX RT1050 EVK with MIMXRT1052DVL6B",
598
+ "port": "mimxrt",
599
+ "board": "MIMXRT1050_EVK",
600
+ "board_name": "i.MX RT1050 EVK",
601
+ "mcu_name": "MIMXRT1052DVL6B",
602
+ "path": "ports/mimxrt/boards/MIMXRT1050_EVK/mpconfigboard.h",
603
+ "version": "v1.17"
604
+ },
605
+ {
606
+ "description": "i.MX RT1050 EVKB with MIMXRT1052DVL6B",
607
+ "port": "mimxrt",
608
+ "board": "MIMXRT1050_EVKB",
609
+ "board_name": "i.MX RT1050 EVKB",
610
+ "mcu_name": "MIMXRT1052DVL6B",
611
+ "path": "ports/mimxrt/boards/MIMXRT1050_EVKB/mpconfigboard.h",
612
+ "version": "v1.17"
613
+ },
614
+ {
615
+ "description": "i.MX RT1050 EVKB-A1 with MIMXRT1052DVL6B",
616
+ "port": "mimxrt",
617
+ "board": "MIMXRT1050_EVK",
618
+ "board_name": "i.MX RT1050 EVKB-A1",
619
+ "mcu_name": "MIMXRT1052DVL6B",
620
+ "path": "ports/mimxrt/boards/MIMXRT1050_EVK/mpconfigboard.h",
621
+ "version": "v1.22.0"
622
+ },
623
+ {
624
+ "description": "i.MX RT1060 EVK with MIMXRT1062DVJ6A",
625
+ "port": "mimxrt",
626
+ "board": "MIMXRT1060_EVK",
627
+ "board_name": "i.MX RT1060 EVK",
628
+ "mcu_name": "MIMXRT1062DVJ6A",
629
+ "path": "ports/mimxrt/boards/MIMXRT1060_EVK/mpconfigboard.h",
630
+ "version": "v1.22.0"
631
+ },
632
+ {
633
+ "description": "i.MX RT1064 EVK with MIMXRT1064DVL6A",
634
+ "port": "mimxrt",
635
+ "board": "MIMXRT1064_EVK",
636
+ "board_name": "i.MX RT1064 EVK",
637
+ "mcu_name": "MIMXRT1064DVL6A",
638
+ "path": "ports/mimxrt/boards/MIMXRT1064_EVK/mpconfigboard.h",
639
+ "version": "v1.22.0"
640
+ },
641
+ {
642
+ "description": "i.MX RT1170 EVK with MIMXRT1176DVMAA",
643
+ "port": "mimxrt",
644
+ "board": "MIMXRT1170_EVK",
645
+ "board_name": "i.MX RT1170 EVK",
646
+ "mcu_name": "MIMXRT1176DVMAA",
647
+ "path": "ports/mimxrt/boards/MIMXRT1170_EVK/mpconfigboard.h",
648
+ "version": "v1.22.0"
649
+ },
650
+ {
651
+ "description": "IBK-BLYST-NANO with NRF52832",
652
+ "port": "nrf",
653
+ "board": "IBK_BLYST_NANO",
654
+ "board_name": "IBK-BLYST-NANO",
655
+ "mcu_name": "NRF52832",
656
+ "path": "ports/nrf/boards/IBK_BLYST_NANO/mpconfigboard.h",
657
+ "version": "v1.22.0"
658
+ },
659
+ {
660
+ "description": "IDK-BLYST-NANO with NRF52832",
661
+ "port": "nrf",
662
+ "board": "IDK_BLYST_NANO",
663
+ "board_name": "IDK-BLYST-NANO",
664
+ "mcu_name": "NRF52832",
665
+ "path": "ports/nrf/boards/IDK_BLYST_NANO/mpconfigboard.h",
666
+ "version": "v1.22.0"
667
+ },
668
+ {
669
+ "description": "ItsyBitsy M0 Express with SAMD21G18A",
670
+ "port": "samd",
671
+ "board": "ADAFRUIT_ITSYBITSY_M0_EXPRESS",
672
+ "board_name": "ItsyBitsy M0 Express",
673
+ "mcu_name": "SAMD21G18A",
674
+ "path": "ports/samd/boards/ADAFRUIT_ITSYBITSY_M0_EXPRESS/mpconfigboard.h",
675
+ "version": "v1.22.0"
676
+ },
677
+ {
678
+ "description": "ItsyBitsy M4 Express with SAMD51G19A",
679
+ "port": "samd",
680
+ "board": "ADAFRUIT_ITSYBITSY_M4_EXPRESS",
681
+ "board_name": "ItsyBitsy M4 Express",
682
+ "mcu_name": "SAMD51G19A",
683
+ "path": "ports/samd/boards/ADAFRUIT_ITSYBITSY_M4_EXPRESS/mpconfigboard.h",
684
+ "version": "v1.22.0"
685
+ },
686
+ {
687
+ "description": "L476-DISCO with STM32L476",
688
+ "port": "stm32",
689
+ "board": "STM32L476DISC",
690
+ "board_name": "L476-DISCO",
691
+ "mcu_name": "STM32L476",
692
+ "path": "ports/stm32/boards/STM32L476DISC/mpconfigboard.h",
693
+ "version": "v1.22.0"
694
+ },
695
+ {
696
+ "description": "L496G-DISCO with STM32L496",
697
+ "port": "stm32",
698
+ "board": "STM32L496GDISC",
699
+ "board_name": "L496G-DISCO",
700
+ "mcu_name": "STM32L496",
701
+ "path": "ports/stm32/boards/STM32L496GDISC/mpconfigboard.h",
702
+ "version": "v1.22.0"
703
+ },
704
+ {
705
+ "description": "LaunchPad with CC3200",
706
+ "port": "cc3200",
707
+ "board": "LAUNCHXL",
708
+ "board_name": "LaunchPad",
709
+ "mcu_name": "CC3200",
710
+ "path": "ports/cc3200/boards/LAUNCHXL/mpconfigboard.h",
711
+ "version": "v1.22.0"
712
+ },
713
+ {
714
+ "description": "LEGO Technic Hub No.6 with STM32F413",
715
+ "port": "stm32",
716
+ "board": "LEGO_HUB_NO6",
717
+ "board_name": "LEGO Technic Hub No.6",
718
+ "mcu_name": "STM32F413",
719
+ "path": "ports/stm32/boards/LEGO_HUB_NO6/mpconfigboard.h",
720
+ "version": "v1.22.0"
721
+ },
722
+ {
723
+ "description": "LEGO Technic Hub No.7 with STM32F413",
724
+ "port": "stm32",
725
+ "board": "LEGO_HUB_NO7",
726
+ "board_name": "LEGO Technic Hub No.7",
727
+ "mcu_name": "STM32F413",
728
+ "path": "ports/stm32/boards/LEGO_HUB_NO7/mpconfigboard.h",
729
+ "version": "v1.22.0"
730
+ },
731
+ {
732
+ "description": "LILYGO TTGO LoRa32 with ESP32",
733
+ "port": "esp32",
734
+ "board": "LILYGO_TTGO_LORA32",
735
+ "board_name": "LILYGO TTGO LoRa32",
736
+ "mcu_name": "ESP32",
737
+ "path": "ports/esp32/boards/LILYGO_TTGO_LORA32/mpconfigboard.h",
738
+ "version": "v1.22.0"
739
+ },
740
+ {
741
+ "description": "LIMIFROG with STM32L476",
742
+ "port": "stm32",
743
+ "board": "LIMIFROG",
744
+ "board_name": "LIMIFROG",
745
+ "mcu_name": "STM32L476",
746
+ "path": "ports/stm32/boards/LIMIFROG/mpconfigboard.h",
747
+ "version": "v1.22.0"
748
+ },
749
+ {
750
+ "description": "LOLIN_C3_MINI with ESP32-C3FH4",
751
+ "port": "esp32",
752
+ "board": "LOLIN_C3_MINI",
753
+ "board_name": "LOLIN_C3_MINI",
754
+ "mcu_name": "ESP32-C3FH4",
755
+ "path": "ports/esp32/boards/LOLIN_C3_MINI/mpconfigboard.h",
756
+ "version": "v1.22.0"
757
+ },
758
+ {
759
+ "description": "LOLIN_S2_MINI with ESP32-S2FN4R2",
760
+ "port": "esp32",
761
+ "board": "LOLIN_S2_MINI",
762
+ "board_name": "LOLIN_S2_MINI",
763
+ "mcu_name": "ESP32-S2FN4R2",
764
+ "path": "ports/esp32/boards/LOLIN_S2_MINI/mpconfigboard.h",
765
+ "version": "v1.22.0"
766
+ },
767
+ {
768
+ "description": "LOLIN_S2_PICO with ESP32-S2FN4R2",
769
+ "port": "esp32",
770
+ "board": "LOLIN_S2_PICO",
771
+ "board_name": "LOLIN_S2_PICO",
772
+ "mcu_name": "ESP32-S2FN4R2",
773
+ "path": "ports/esp32/boards/LOLIN_S2_PICO/mpconfigboard.h",
774
+ "version": "v1.22.0"
775
+ },
776
+ {
777
+ "description": "M5Stack ATOM with ESP32-PICO-D4",
778
+ "port": "esp32",
779
+ "board": "M5STACK_ATOM",
780
+ "board_name": "M5Stack ATOM",
781
+ "mcu_name": "ESP32-PICO-D4",
782
+ "path": "ports/esp32/boards/M5STACK_ATOM/mpconfigboard.h",
783
+ "version": "v1.22.0"
784
+ },
785
+ {
786
+ "description": "MDK-USB-DONGLE with NRF52840",
787
+ "port": "nrf",
788
+ "board": "NRF52840_MDK_USB_DONGLE",
789
+ "board_name": "MDK-USB-DONGLE",
790
+ "mcu_name": "NRF52840",
791
+ "path": "ports/nrf/boards/NRF52840_MDK_USB_DONGLE/mpconfigboard.h",
792
+ "version": "v1.22.0"
793
+ },
794
+ {
795
+ "description": "Metro M4 Express Airlift with SAMD51J19A",
796
+ "port": "samd",
797
+ "board": "ADAFRUIT_METRO_M4_EXPRESS",
798
+ "board_name": "Metro M4 Express Airlift",
799
+ "mcu_name": "SAMD51J19A",
800
+ "path": "ports/samd/boards/ADAFRUIT_METRO_M4_EXPRESS/mpconfigboard.h",
801
+ "version": "v1.22.0"
802
+ },
803
+ {
804
+ "description": "micro:bit with NRF51822",
805
+ "port": "nrf",
806
+ "board": "MICROBIT",
807
+ "board_name": "micro:bit",
808
+ "mcu_name": "NRF51822",
809
+ "path": "ports/nrf/boards/MICROBIT/mpconfigboard.h",
810
+ "version": "v1.22.0"
811
+ },
812
+ {
813
+ "description": "MikroE Quail with STM32F427VI",
814
+ "port": "stm32",
815
+ "board": "MIKROE_QUAIL",
816
+ "board_name": "MikroE Quail",
817
+ "mcu_name": "STM32F427VI",
818
+ "path": "ports/stm32/boards/MIKROE_QUAIL/mpconfigboard.h",
819
+ "version": "v1.22.0"
820
+ },
821
+ {
822
+ "description": "MIKROE_CLICKER2_STM32 with STM32F407",
823
+ "port": "stm32",
824
+ "board": "MIKROE_CLICKER2_STM32",
825
+ "board_name": "MIKROE_CLICKER2_STM32",
826
+ "mcu_name": "STM32F407",
827
+ "path": "ports/stm32/boards/MIKROE_CLICKER2_STM32/mpconfigboard.h",
828
+ "version": "v1.22.0"
829
+ },
830
+ {
831
+ "description": "Mini SAM M4 with SAMD51G19A",
832
+ "port": "samd",
833
+ "board": "MINISAM_M4",
834
+ "board_name": "Mini SAM M4",
835
+ "mcu_name": "SAMD51G19A",
836
+ "path": "ports/samd/boards/MINISAM_M4/mpconfigboard.h",
837
+ "version": "v1.22.0"
838
+ },
839
+ {
840
+ "description": "NADHAT_PYBF405 with STM32F405RG",
841
+ "port": "stm32",
842
+ "board": "GARATRONIC_NADHAT_F405",
843
+ "board_name": "NADHAT_PYBF405",
844
+ "mcu_name": "STM32F405RG",
845
+ "path": "ports/stm32/boards/GARATRONIC_NADHAT_F405/mpconfigboard.h",
846
+ "version": "v1.22.0"
847
+ },
848
+ {
849
+ "description": "NanoS3 with ESP32-S3-FN8",
850
+ "port": "esp32",
851
+ "board": "UM_NANOS3",
852
+ "board_name": "NanoS3",
853
+ "mcu_name": "ESP32-S3-FN8",
854
+ "path": "ports/esp32/boards/UM_NANOS3/mpconfigboard.h",
855
+ "version": "v1.22.0"
856
+ },
857
+ {
858
+ "description": "NetduinoPlus2 with STM32F405RG",
859
+ "port": "stm32",
860
+ "board": "NETDUINO_PLUS_2",
861
+ "board_name": "NetduinoPlus2",
862
+ "mcu_name": "STM32F405RG",
863
+ "path": "ports/stm32/boards/NETDUINO_PLUS_2/mpconfigboard.h",
864
+ "version": "v1.22.0"
865
+ },
866
+ {
867
+ "description": "NICLAVISION with STM32H747",
868
+ "port": "stm32",
869
+ "board": "ARDUINO_NICLA_VISION",
870
+ "board_name": "NICLAVISION",
871
+ "mcu_name": "STM32H747",
872
+ "path": "ports/stm32/boards/ARDUINO_NICLA_VISION/mpconfigboard.h",
873
+ "version": "v1.21.0"
874
+ },
875
+ {
876
+ "description": "NUCLEO-F091RC with STM32F091RCT6",
877
+ "port": "stm32",
878
+ "board": "NUCLEO_F091RC",
879
+ "board_name": "NUCLEO-F091RC",
880
+ "mcu_name": "STM32F091RCT6",
881
+ "path": "ports/stm32/boards/NUCLEO_F091RC/mpconfigboard.h",
882
+ "version": "v1.22.0"
883
+ },
884
+ {
885
+ "description": "NUCLEO-F401RE with STM32F401xE",
886
+ "port": "stm32",
887
+ "board": "NUCLEO_F401RE",
888
+ "board_name": "NUCLEO-F401RE",
889
+ "mcu_name": "STM32F401xE",
890
+ "path": "ports/stm32/boards/NUCLEO_F401RE/mpconfigboard.h",
891
+ "version": "v1.22.0"
892
+ },
893
+ {
894
+ "description": "NUCLEO-F411RE with STM32F411xE",
895
+ "port": "stm32",
896
+ "board": "NUCLEO_F411RE",
897
+ "board_name": "NUCLEO-F411RE",
898
+ "mcu_name": "STM32F411xE",
899
+ "path": "ports/stm32/boards/NUCLEO_F411RE/mpconfigboard.h",
900
+ "version": "v1.22.0"
901
+ },
902
+ {
903
+ "description": "NUCLEO-F412ZG with STM32F412Zx",
904
+ "port": "stm32",
905
+ "board": "NUCLEO_F412ZG",
906
+ "board_name": "NUCLEO-F412ZG",
907
+ "mcu_name": "STM32F412Zx",
908
+ "path": "ports/stm32/boards/NUCLEO_F412ZG/mpconfigboard.h",
909
+ "version": "v1.22.0"
910
+ },
911
+ {
912
+ "description": "NUCLEO-F413ZH with STM32F413",
913
+ "port": "stm32",
914
+ "board": "NUCLEO_F413ZH",
915
+ "board_name": "NUCLEO-F413ZH",
916
+ "mcu_name": "STM32F413",
917
+ "path": "ports/stm32/boards/NUCLEO_F413ZH/mpconfigboard.h",
918
+ "version": "v1.22.0"
919
+ },
920
+ {
921
+ "description": "NUCLEO-F429ZI with STM32F429",
922
+ "port": "stm32",
923
+ "board": "NUCLEO_F429ZI",
924
+ "board_name": "NUCLEO-F429ZI",
925
+ "mcu_name": "STM32F429",
926
+ "path": "ports/stm32/boards/NUCLEO_F429ZI/mpconfigboard.h",
927
+ "version": "v1.22.0"
928
+ },
929
+ {
930
+ "description": "NUCLEO-F439ZI with STM32F439ZIT6",
931
+ "port": "stm32",
932
+ "board": "NUCLEO_F439ZI",
933
+ "board_name": "NUCLEO-F439ZI",
934
+ "mcu_name": "STM32F439ZIT6",
935
+ "path": "ports/stm32/boards/NUCLEO_F439ZI/mpconfigboard.h",
936
+ "version": "v1.22.0"
937
+ },
938
+ {
939
+ "description": "NUCLEO-F446RE with STM32F446xx",
940
+ "port": "stm32",
941
+ "board": "NUCLEO_F446RE",
942
+ "board_name": "NUCLEO-F446RE",
943
+ "mcu_name": "STM32F446xx",
944
+ "path": "ports/stm32/boards/NUCLEO_F446RE/mpconfigboard.h",
945
+ "version": "v1.22.0"
946
+ },
947
+ {
948
+ "description": "NUCLEO-F722ZE with STM32F722",
949
+ "port": "stm32",
950
+ "board": "NUCLEO_F722ZE",
951
+ "board_name": "NUCLEO-F722ZE",
952
+ "mcu_name": "STM32F722",
953
+ "path": "ports/stm32/boards/NUCLEO_F722ZE/mpconfigboard.h",
954
+ "version": "v1.22.0"
955
+ },
956
+ {
957
+ "description": "NUCLEO-F746ZG with STM32F746",
958
+ "port": "stm32",
959
+ "board": "NUCLEO_F746ZG",
960
+ "board_name": "NUCLEO-F746ZG",
961
+ "mcu_name": "STM32F746",
962
+ "path": "ports/stm32/boards/NUCLEO_F746ZG/mpconfigboard.h",
963
+ "version": "v1.22.0"
964
+ },
965
+ {
966
+ "description": "NUCLEO-F756ZG with STM32F756",
967
+ "port": "stm32",
968
+ "board": "NUCLEO_F756ZG",
969
+ "board_name": "NUCLEO-F756ZG",
970
+ "mcu_name": "STM32F756",
971
+ "path": "ports/stm32/boards/NUCLEO_F756ZG/mpconfigboard.h",
972
+ "version": "v1.22.0"
973
+ },
974
+ {
975
+ "description": "NUCLEO-F767ZI with STM32F767",
976
+ "port": "stm32",
977
+ "board": "NUCLEO_F767ZI",
978
+ "board_name": "NUCLEO-F767ZI",
979
+ "mcu_name": "STM32F767",
980
+ "path": "ports/stm32/boards/NUCLEO_F767ZI/mpconfigboard.h",
981
+ "version": "v1.22.0"
982
+ },
983
+ {
984
+ "description": "NUCLEO-G0B1RE with STM32G0B1xE",
985
+ "port": "stm32",
986
+ "board": "NUCLEO_G0B1RE",
987
+ "board_name": "NUCLEO-G0B1RE",
988
+ "mcu_name": "STM32G0B1xE",
989
+ "path": "ports/stm32/boards/NUCLEO_G0B1RE/mpconfigboard.h",
990
+ "version": "v1.22.0"
991
+ },
992
+ {
993
+ "description": "NUCLEO-L073RZ with STM32L073RZT6",
994
+ "port": "stm32",
995
+ "board": "NUCLEO_L073RZ",
996
+ "board_name": "NUCLEO-L073RZ",
997
+ "mcu_name": "STM32L073RZT6",
998
+ "path": "ports/stm32/boards/NUCLEO_L073RZ/mpconfigboard.h",
999
+ "version": "v1.22.0"
1000
+ },
1001
+ {
1002
+ "description": "NUCLEO-L152RE with STM32L152xE",
1003
+ "port": "stm32",
1004
+ "board": "NUCLEO_L152RE",
1005
+ "board_name": "NUCLEO-L152RE",
1006
+ "mcu_name": "STM32L152xE",
1007
+ "path": "ports/stm32/boards/NUCLEO_L152RE/mpconfigboard.h",
1008
+ "version": "v1.22.0"
1009
+ },
1010
+ {
1011
+ "description": "NUCLEO-L432KC with STM32L432KC",
1012
+ "port": "stm32",
1013
+ "board": "NUCLEO_L432KC",
1014
+ "board_name": "NUCLEO-L432KC",
1015
+ "mcu_name": "STM32L432KC",
1016
+ "path": "ports/stm32/boards/NUCLEO_L432KC/mpconfigboard.h",
1017
+ "version": "v1.22.0"
1018
+ },
1019
+ {
1020
+ "description": "NUCLEO-L452RE with STM32L452RE",
1021
+ "port": "stm32",
1022
+ "board": "NUCLEO_L452RE",
1023
+ "board_name": "NUCLEO-L452RE",
1024
+ "mcu_name": "STM32L452RE",
1025
+ "path": "ports/stm32/boards/NUCLEO_L452RE/mpconfigboard.h",
1026
+ "version": "v1.22.0"
1027
+ },
1028
+ {
1029
+ "description": "NUCLEO-L476RG with STM32L476RG",
1030
+ "port": "stm32",
1031
+ "board": "NUCLEO_L476RG",
1032
+ "board_name": "NUCLEO-L476RG",
1033
+ "mcu_name": "STM32L476RG",
1034
+ "path": "ports/stm32/boards/NUCLEO_L476RG/mpconfigboard.h",
1035
+ "version": "v1.22.0"
1036
+ },
1037
+ {
1038
+ "description": "NUCLEO-L4A6ZG with STM32L4A6ZG",
1039
+ "port": "stm32",
1040
+ "board": "NUCLEO_L4A6ZG",
1041
+ "board_name": "NUCLEO-L4A6ZG",
1042
+ "mcu_name": "STM32L4A6ZG",
1043
+ "path": "ports/stm32/boards/NUCLEO_L4A6ZG/mpconfigboard.h",
1044
+ "version": "v1.22.0"
1045
+ },
1046
+ {
1047
+ "description": "NUCLEO-WB55 with STM32WB55RGV6",
1048
+ "port": "stm32",
1049
+ "board": "NUCLEO_WB55",
1050
+ "board_name": "NUCLEO-WB55",
1051
+ "mcu_name": "STM32WB55RGV6",
1052
+ "path": "ports/stm32/boards/NUCLEO_WB55/mpconfigboard.h",
1053
+ "version": "v1.22.0"
1054
+ },
1055
+ {
1056
+ "description": "NUCLEO-WL55 with STM32WL55JCI7",
1057
+ "port": "stm32",
1058
+ "board": "NUCLEO_WL55",
1059
+ "board_name": "NUCLEO-WL55",
1060
+ "mcu_name": "STM32WL55JCI7",
1061
+ "path": "ports/stm32/boards/NUCLEO_WL55/mpconfigboard.h",
1062
+ "version": "v1.22.0"
1063
+ },
1064
+ {
1065
+ "description": "NUCLEO_G474RE with STM32G474",
1066
+ "port": "stm32",
1067
+ "board": "NUCLEO_G474RE",
1068
+ "board_name": "NUCLEO_G474RE",
1069
+ "mcu_name": "STM32G474",
1070
+ "path": "ports/stm32/boards/NUCLEO_G474RE/mpconfigboard.h",
1071
+ "version": "v1.22.0"
1072
+ },
1073
+ {
1074
+ "description": "NUCLEO_H563ZI with STM32H563ZI",
1075
+ "port": "stm32",
1076
+ "board": "NUCLEO_H563ZI",
1077
+ "board_name": "NUCLEO_H563ZI",
1078
+ "mcu_name": "STM32H563ZI",
1079
+ "path": "ports/stm32/boards/NUCLEO_H563ZI/mpconfigboard.h",
1080
+ "version": "v1.22.0"
1081
+ },
1082
+ {
1083
+ "description": "NUCLEO_H723ZG with STM32H723ZGT6",
1084
+ "port": "stm32",
1085
+ "board": "NUCLEO_H723ZG",
1086
+ "board_name": "NUCLEO_H723ZG",
1087
+ "mcu_name": "STM32H723ZGT6",
1088
+ "path": "ports/stm32/boards/NUCLEO_H723ZG/mpconfigboard.h",
1089
+ "version": "v1.22.0"
1090
+ },
1091
+ {
1092
+ "description": "NUCLEO_H743ZI with STM32H743",
1093
+ "port": "stm32",
1094
+ "board": "NUCLEO_H743ZI",
1095
+ "board_name": "NUCLEO_H743ZI",
1096
+ "mcu_name": "STM32H743",
1097
+ "path": "ports/stm32/boards/NUCLEO_H743ZI/mpconfigboard.h",
1098
+ "version": "v1.22.0"
1099
+ },
1100
+ {
1101
+ "description": "NUCLEO_H743ZI2",
1102
+ "port": "stm32",
1103
+ "board": "NUCLEO_H743ZI2",
1104
+ "board_name": "NUCLEO_H743ZI2",
1105
+ "mcu_name": "-",
1106
+ "path": "ports/stm32/boards/NUCLEO_H743ZI2/mpconfigboard.h",
1107
+ "version": "v1.22.0"
1108
+ },
1109
+ {
1110
+ "description": "nullbits Bit-C PRO",
1111
+ "port": "rp2",
1112
+ "board": "NULLBITS_BIT_C_PRO",
1113
+ "board_name": "nullbits Bit-C PRO",
1114
+ "mcu_name": "-",
1115
+ "path": "ports/rp2/boards/NULLBITS_BIT_C_PRO/mpconfigboard.h",
1116
+ "version": "v1.22.0"
1117
+ },
1118
+ {
1119
+ "description": "Olimex ESP32 ETH with ESP32",
1120
+ "port": "esp32",
1121
+ "board": "OLIMEX_ESP32_POE",
1122
+ "board_name": "Olimex ESP32 ETH",
1123
+ "mcu_name": "ESP32",
1124
+ "path": "ports/esp32/boards/OLIMEX_ESP32_POE/mpconfigboard.h",
1125
+ "version": "v1.22.0"
1126
+ },
1127
+ {
1128
+ "description": "OLIMEX STM32-E407 with STM32F407",
1129
+ "port": "stm32",
1130
+ "board": "OLIMEX_E407",
1131
+ "board_name": "OLIMEX STM32-E407",
1132
+ "mcu_name": "STM32F407",
1133
+ "path": "ports/stm32/boards/OLIMEX_E407/mpconfigboard.h",
1134
+ "version": "v1.22.0"
1135
+ },
1136
+ {
1137
+ "description": "OLIMEX STM32-H407 with STM32F407",
1138
+ "port": "stm32",
1139
+ "board": "OLIMEX_H407",
1140
+ "board_name": "OLIMEX STM32-H407",
1141
+ "mcu_name": "STM32F407",
1142
+ "path": "ports/stm32/boards/OLIMEX_H407/mpconfigboard.h",
1143
+ "version": "v1.22.0"
1144
+ },
1145
+ {
1146
+ "description": "PCA10000 with NRF51822",
1147
+ "port": "nrf",
1148
+ "board": "PCA10000",
1149
+ "board_name": "PCA10000",
1150
+ "mcu_name": "NRF51822",
1151
+ "path": "ports/nrf/boards/PCA10000/mpconfigboard.h",
1152
+ "version": "v1.22.0"
1153
+ },
1154
+ {
1155
+ "description": "PCA10001 with NRF51822",
1156
+ "port": "nrf",
1157
+ "board": "PCA10001",
1158
+ "board_name": "PCA10001",
1159
+ "mcu_name": "NRF51822",
1160
+ "path": "ports/nrf/boards/PCA10001/mpconfigboard.h",
1161
+ "version": "v1.22.0"
1162
+ },
1163
+ {
1164
+ "description": "PCA10028 with NRF51822",
1165
+ "port": "nrf",
1166
+ "board": "PCA10028",
1167
+ "board_name": "PCA10028",
1168
+ "mcu_name": "NRF51822",
1169
+ "path": "ports/nrf/boards/PCA10028/mpconfigboard.h",
1170
+ "version": "v1.22.0"
1171
+ },
1172
+ {
1173
+ "description": "PCA10031 with NRF51822",
1174
+ "port": "nrf",
1175
+ "board": "PCA10031",
1176
+ "board_name": "PCA10031",
1177
+ "mcu_name": "NRF51822",
1178
+ "path": "ports/nrf/boards/PCA10031/mpconfigboard.h",
1179
+ "version": "v1.22.0"
1180
+ },
1181
+ {
1182
+ "description": "PCA10040 with NRF52832",
1183
+ "port": "nrf",
1184
+ "board": "PCA10040",
1185
+ "board_name": "PCA10040",
1186
+ "mcu_name": "NRF52832",
1187
+ "path": "ports/nrf/boards/PCA10040/mpconfigboard.h",
1188
+ "version": "v1.22.0"
1189
+ },
1190
+ {
1191
+ "description": "PCA10056 with NRF52840",
1192
+ "port": "nrf",
1193
+ "board": "PCA10056",
1194
+ "board_name": "PCA10056",
1195
+ "mcu_name": "NRF52840",
1196
+ "path": "ports/nrf/boards/PCA10056/mpconfigboard.h",
1197
+ "version": "v1.22.0"
1198
+ },
1199
+ {
1200
+ "description": "PCA10059 with NRF52840",
1201
+ "port": "nrf",
1202
+ "board": "PCA10059",
1203
+ "board_name": "PCA10059",
1204
+ "mcu_name": "NRF52840",
1205
+ "path": "ports/nrf/boards/PCA10059/mpconfigboard.h",
1206
+ "version": "v1.22.0"
1207
+ },
1208
+ {
1209
+ "description": "PCA10090 with NRF9160",
1210
+ "port": "nrf",
1211
+ "board": "PCA10090",
1212
+ "board_name": "PCA10090",
1213
+ "mcu_name": "NRF9160",
1214
+ "path": "ports/nrf/boards/PCA10090/mpconfigboard.h",
1215
+ "version": "v1.22.0"
1216
+ },
1217
+ {
1218
+ "description": "Pimoroni Pico LiPo 16MB",
1219
+ "port": "rp2",
1220
+ "board": "PIMORONI_PICOLIPO_16MB",
1221
+ "board_name": "Pimoroni Pico LiPo 16MB",
1222
+ "mcu_name": "-",
1223
+ "path": "ports/rp2/boards/PIMORONI_PICOLIPO_16MB/mpconfigboard.h",
1224
+ "version": "v1.22.0"
1225
+ },
1226
+ {
1227
+ "description": "Pimoroni Pico LiPo 4MB",
1228
+ "port": "rp2",
1229
+ "board": "PIMORONI_PICOLIPO_4MB",
1230
+ "board_name": "Pimoroni Pico LiPo 4MB",
1231
+ "mcu_name": "-",
1232
+ "path": "ports/rp2/boards/PIMORONI_PICOLIPO_4MB/mpconfigboard.h",
1233
+ "version": "v1.22.0"
1234
+ },
1235
+ {
1236
+ "description": "Pimoroni Tiny 2040",
1237
+ "port": "rp2",
1238
+ "board": "PIMORONI_TINY2040",
1239
+ "board_name": "Pimoroni Tiny 2040",
1240
+ "mcu_name": "-",
1241
+ "path": "ports/rp2/boards/PIMORONI_TINY2040/mpconfigboard.h",
1242
+ "version": "v1.22.0"
1243
+ },
1244
+ {
1245
+ "description": "Pololu 3pi+ 2040 Robot",
1246
+ "port": "rp2",
1247
+ "board": "POLOLU_3PI_2040_ROBOT",
1248
+ "board_name": "Pololu 3pi+ 2040 Robot",
1249
+ "mcu_name": "-",
1250
+ "path": "ports/rp2/boards/POLOLU_3PI_2040_ROBOT/mpconfigboard.h",
1251
+ "version": "v1.22.0"
1252
+ },
1253
+ {
1254
+ "description": "Pololu Zumo 2040 Robot",
1255
+ "port": "rp2",
1256
+ "board": "POLOLU_ZUMO_2040_ROBOT",
1257
+ "board_name": "Pololu Zumo 2040 Robot",
1258
+ "mcu_name": "-",
1259
+ "path": "ports/rp2/boards/POLOLU_ZUMO_2040_ROBOT/mpconfigboard.h",
1260
+ "version": "v1.22.0"
1261
+ },
1262
+ {
1263
+ "description": "PORTENTA C33 with RA6M5",
1264
+ "port": "renesas-ra",
1265
+ "board": "ARDUINO_PORTENTA_C33",
1266
+ "board_name": "PORTENTA C33",
1267
+ "mcu_name": "RA6M5",
1268
+ "path": "ports/renesas-ra/boards/ARDUINO_PORTENTA_C33/mpconfigboard.h",
1269
+ "version": "v1.21.0"
1270
+ },
1271
+ {
1272
+ "description": "PORTENTA with STM32H747",
1273
+ "port": "stm32",
1274
+ "board": "ARDUINO_PORTENTA_H7",
1275
+ "board_name": "PORTENTA",
1276
+ "mcu_name": "STM32H747",
1277
+ "path": "ports/stm32/boards/ARDUINO_PORTENTA_H7/mpconfigboard.h",
1278
+ "version": "v1.21.0"
1279
+ },
1280
+ {
1281
+ "description": "ProS3 with ESP32-S3",
1282
+ "port": "esp32",
1283
+ "board": "UM_PROS3",
1284
+ "board_name": "ProS3",
1285
+ "mcu_name": "ESP32-S3",
1286
+ "path": "ports/esp32/boards/UM_PROS3/mpconfigboard.h",
1287
+ "version": "v1.22.0"
1288
+ },
1289
+ {
1290
+ "description": "PYBD-SF2W with STM32F722IEK",
1291
+ "port": "stm32",
1292
+ "board": "PYBD_SF2",
1293
+ "board_name": "PYBD-SF2W",
1294
+ "mcu_name": "STM32F722IEK",
1295
+ "path": "ports/stm32/boards/PYBD_SF2/mpconfigboard.h",
1296
+ "version": "v1.22.0"
1297
+ },
1298
+ {
1299
+ "description": "PYBD-SF3W with STM32F733IEK",
1300
+ "port": "stm32",
1301
+ "board": "PYBD_SF3",
1302
+ "board_name": "PYBD-SF3W",
1303
+ "mcu_name": "STM32F733IEK",
1304
+ "path": "ports/stm32/boards/PYBD_SF3/mpconfigboard.h",
1305
+ "version": "v1.22.0"
1306
+ },
1307
+ {
1308
+ "description": "PYBD-SF6W with STM32F767IIK",
1309
+ "port": "stm32",
1310
+ "board": "PYBD_SF6",
1311
+ "board_name": "PYBD-SF6W",
1312
+ "mcu_name": "STM32F767IIK",
1313
+ "path": "ports/stm32/boards/PYBD_SF6/mpconfigboard.h",
1314
+ "version": "v1.22.0"
1315
+ },
1316
+ {
1317
+ "description": "PYBLITEv1.0 with STM32F411RE",
1318
+ "port": "stm32",
1319
+ "board": "PYBLITEV10",
1320
+ "board_name": "PYBLITEv1.0",
1321
+ "mcu_name": "STM32F411RE",
1322
+ "path": "ports/stm32/boards/PYBLITEV10/mpconfigboard.h",
1323
+ "version": "v1.22.0"
1324
+ },
1325
+ {
1326
+ "description": "PYBSTICK26_STD with STM32F411RE",
1327
+ "port": "stm32",
1328
+ "board": "GARATRONIC_PYBSTICK26_F411",
1329
+ "board_name": "PYBSTICK26_STD",
1330
+ "mcu_name": "STM32F411RE",
1331
+ "path": "ports/stm32/boards/GARATRONIC_PYBSTICK26_F411/mpconfigboard.h",
1332
+ "version": "v1.22.0"
1333
+ },
1334
+ {
1335
+ "description": "PYBv1.0 with STM32F405RG",
1336
+ "port": "stm32",
1337
+ "board": "PYBV10",
1338
+ "board_name": "PYBv1.0",
1339
+ "mcu_name": "STM32F405RG",
1340
+ "path": "ports/stm32/boards/PYBV10/mpconfigboard.h",
1341
+ "version": "v1.22.0"
1342
+ },
1343
+ {
1344
+ "description": "PYBv1.1 with STM32F405RG",
1345
+ "port": "stm32",
1346
+ "board": "PYBV11",
1347
+ "board_name": "PYBv1.1",
1348
+ "mcu_name": "STM32F405RG",
1349
+ "path": "ports/stm32/boards/PYBV11/mpconfigboard.h",
1350
+ "version": "v1.22.0"
1351
+ },
1352
+ {
1353
+ "description": "PYBv3 with STM32F405RG",
1354
+ "port": "stm32",
1355
+ "board": "PYBV3",
1356
+ "board_name": "PYBv3",
1357
+ "mcu_name": "STM32F405RG",
1358
+ "path": "ports/stm32/boards/PYBV3/mpconfigboard.h",
1359
+ "version": "v1.22.0"
1360
+ },
1361
+ {
1362
+ "description": "PYBv4 with STM32F405RG",
1363
+ "port": "stm32",
1364
+ "board": "PYBV4",
1365
+ "board_name": "PYBv4",
1366
+ "mcu_name": "STM32F405RG",
1367
+ "path": "ports/stm32/boards/PYBV4/mpconfigboard.h",
1368
+ "version": "v1.22.0"
1369
+ },
1370
+ {
1371
+ "description": "RA4M1 CLICKER with RA4M1",
1372
+ "port": "renesas-ra",
1373
+ "board": "RA4M1_CLICKER",
1374
+ "board_name": "RA4M1 CLICKER",
1375
+ "mcu_name": "RA4M1",
1376
+ "path": "ports/renesas-ra/boards/RA4M1_CLICKER/mpconfigboard.h",
1377
+ "version": "v1.22.0"
1378
+ },
1379
+ {
1380
+ "description": "RA4M1_CLICKER with RA4M1",
1381
+ "port": "renesas-ra",
1382
+ "board": "RA4M1_CLICKER",
1383
+ "board_name": "RA4M1_CLICKER",
1384
+ "mcu_name": "RA4M1",
1385
+ "path": "ports/renesas-ra/boards/RA4M1_CLICKER/mpconfigboard.h",
1386
+ "version": "v1.20.0"
1387
+ },
1388
+ {
1389
+ "description": "RA4M1_EK with RA4M1",
1390
+ "port": "renesas-ra",
1391
+ "board": "RA4M1_EK",
1392
+ "board_name": "RA4M1_EK",
1393
+ "mcu_name": "RA4M1",
1394
+ "path": "ports/renesas-ra/boards/RA4M1_EK/mpconfigboard.h",
1395
+ "version": "v1.20.0"
1396
+ },
1397
+ {
1398
+ "description": "RA4W1_EK with RA4W1",
1399
+ "port": "renesas-ra",
1400
+ "board": "RA4W1_EK",
1401
+ "board_name": "RA4W1_EK",
1402
+ "mcu_name": "RA4W1",
1403
+ "path": "ports/renesas-ra/boards/RA4W1_EK/mpconfigboard.h",
1404
+ "version": "v1.20.0"
1405
+ },
1406
+ {
1407
+ "description": "RA6M1_EK with RA6M1",
1408
+ "port": "renesas-ra",
1409
+ "board": "RA6M1_EK",
1410
+ "board_name": "RA6M1_EK",
1411
+ "mcu_name": "RA6M1",
1412
+ "path": "ports/renesas-ra/boards/RA6M1_EK/mpconfigboard.h",
1413
+ "version": "v1.20.0"
1414
+ },
1415
+ {
1416
+ "description": "RA6M2_EK with RA6M2",
1417
+ "port": "renesas-ra",
1418
+ "board": "RA6M2_EK",
1419
+ "board_name": "RA6M2_EK",
1420
+ "mcu_name": "RA6M2",
1421
+ "path": "ports/renesas-ra/boards/RA6M2_EK/mpconfigboard.h",
1422
+ "version": "v1.20.0"
1423
+ },
1424
+ {
1425
+ "description": "Raspberry Pi Pico",
1426
+ "port": "rp2",
1427
+ "board": "RPI_PICO",
1428
+ "board_name": "Raspberry Pi Pico",
1429
+ "mcu_name": "-",
1430
+ "path": "ports/rp2/boards/RPI_PICO/mpconfigboard.h",
1431
+ "version": "v1.22.0"
1432
+ },
1433
+ {
1434
+ "description": "Raspberry Pi Pico W",
1435
+ "port": "rp2",
1436
+ "board": "RPI_PICO_W",
1437
+ "board_name": "Raspberry Pi Pico W",
1438
+ "mcu_name": "-",
1439
+ "path": "ports/rp2/boards/RPI_PICO_W/mpconfigboard.h",
1440
+ "version": "v1.22.0"
1441
+ },
1442
+ {
1443
+ "description": "RT1010-Py-DevKIT with MIMXRT1011DAE5A",
1444
+ "port": "mimxrt",
1445
+ "board": "OLIMEX_RT1010",
1446
+ "board_name": "RT1010-Py-DevKIT",
1447
+ "mcu_name": "MIMXRT1011DAE5A",
1448
+ "path": "ports/mimxrt/boards/OLIMEX_RT1010/mpconfigboard.h",
1449
+ "version": "v1.22.0"
1450
+ },
1451
+ {
1452
+ "description": "SAMD21-XPLAINED-PRO with SAMD21J18A",
1453
+ "port": "samd",
1454
+ "board": "SAMD21_XPLAINED_PRO",
1455
+ "board_name": "SAMD21-XPLAINED-PRO",
1456
+ "mcu_name": "SAMD21J18A",
1457
+ "path": "ports/samd/boards/SAMD21_XPLAINED_PRO/mpconfigboard.h",
1458
+ "version": "v1.22.0"
1459
+ },
1460
+ {
1461
+ "description": "Seeed ARCH MIX with MIMXRT1052DVL5B",
1462
+ "port": "mimxrt",
1463
+ "board": "SEEED_ARCH_MIX",
1464
+ "board_name": "Seeed ARCH MIX",
1465
+ "mcu_name": "MIMXRT1052DVL5B",
1466
+ "path": "ports/mimxrt/boards/SEEED_ARCH_MIX/mpconfigboard.h",
1467
+ "version": "v1.22.0"
1468
+ },
1469
+ {
1470
+ "description": "Seeed Xiao with SAMD21G18A",
1471
+ "port": "samd",
1472
+ "board": "SEEED_XIAO_SAMD21",
1473
+ "board_name": "Seeed Xiao",
1474
+ "mcu_name": "SAMD21G18A",
1475
+ "path": "ports/samd/boards/SEEED_XIAO_SAMD21/mpconfigboard.h",
1476
+ "version": "v1.22.0"
1477
+ },
1478
+ {
1479
+ "description": "Silicognition RP2040-Shim",
1480
+ "port": "rp2",
1481
+ "board": "SIL_RP2040_SHIM",
1482
+ "board_name": "Silicognition RP2040-Shim",
1483
+ "mcu_name": "-",
1484
+ "path": "ports/rp2/boards/SIL_RP2040_SHIM/mpconfigboard.h",
1485
+ "version": "v1.22.0"
1486
+ },
1487
+ {
1488
+ "description": "Silicognition wESP32 with ESP32",
1489
+ "port": "esp32",
1490
+ "board": "SIL_WESP32",
1491
+ "board_name": "Silicognition wESP32",
1492
+ "mcu_name": "ESP32",
1493
+ "path": "ports/esp32/boards/SIL_WESP32/mpconfigboard.h",
1494
+ "version": "v1.22.0"
1495
+ },
1496
+ {
1497
+ "description": "SparkFun Pro Micro RP2040",
1498
+ "port": "rp2",
1499
+ "board": "SPARKFUN_PROMICRO",
1500
+ "board_name": "SparkFun Pro Micro RP2040",
1501
+ "mcu_name": "-",
1502
+ "path": "ports/rp2/boards/SPARKFUN_PROMICRO/mpconfigboard.h",
1503
+ "version": "v1.22.0"
1504
+ },
1505
+ {
1506
+ "description": "Sparkfun SAMD51 Thing Plus with SAMD51J20A",
1507
+ "port": "samd",
1508
+ "board": "SPARKFUN_SAMD51_THING_PLUS",
1509
+ "board_name": "Sparkfun SAMD51 Thing Plus",
1510
+ "mcu_name": "SAMD51J20A",
1511
+ "path": "ports/samd/boards/SPARKFUN_SAMD51_THING_PLUS/mpconfigboard.h",
1512
+ "version": "v1.22.0"
1513
+ },
1514
+ {
1515
+ "description": "SparkFun STM32 MicroMod Processor with STM32F405RG",
1516
+ "port": "stm32",
1517
+ "board": "SPARKFUN_MICROMOD_STM32",
1518
+ "board_name": "SparkFun STM32 MicroMod Processor",
1519
+ "mcu_name": "STM32F405RG",
1520
+ "path": "ports/stm32/boards/SPARKFUN_MICROMOD_STM32/mpconfigboard.h",
1521
+ "version": "v1.22.0"
1522
+ },
1523
+ {
1524
+ "description": "SparkFun Thing Plus RP2040",
1525
+ "port": "rp2",
1526
+ "board": "SPARKFUN_THINGPLUS",
1527
+ "board_name": "SparkFun Thing Plus RP2040",
1528
+ "mcu_name": "-",
1529
+ "path": "ports/rp2/boards/SPARKFUN_THINGPLUS/mpconfigboard.h",
1530
+ "version": "v1.22.0"
1531
+ },
1532
+ {
1533
+ "description": "STM32H573I-DK with STM32H573IIK3Q",
1534
+ "port": "stm32",
1535
+ "board": "STM32H573I_DK",
1536
+ "board_name": "STM32H573I-DK",
1537
+ "mcu_name": "STM32H573IIK3Q",
1538
+ "path": "ports/stm32/boards/STM32H573I_DK/mpconfigboard.h",
1539
+ "version": "v1.22.0"
1540
+ },
1541
+ {
1542
+ "description": "STM32H7B3I-DK with STM32H7B3LIH6Q",
1543
+ "port": "stm32",
1544
+ "board": "STM32H7B3I_DK",
1545
+ "board_name": "STM32H7B3I-DK",
1546
+ "mcu_name": "STM32H7B3LIH6Q",
1547
+ "path": "ports/stm32/boards/STM32H7B3I_DK/mpconfigboard.h",
1548
+ "version": "v1.22.0"
1549
+ },
1550
+ {
1551
+ "description": "Teensy 4.0 with MIMXRT1062DVJ6A",
1552
+ "port": "mimxrt",
1553
+ "board": "TEENSY40",
1554
+ "board_name": "Teensy 4.0",
1555
+ "mcu_name": "MIMXRT1062DVJ6A",
1556
+ "path": "ports/mimxrt/boards/TEENSY40/mpconfigboard.h",
1557
+ "version": "v1.22.0"
1558
+ },
1559
+ {
1560
+ "description": "Teensy 4.1 with MIMXRT1062DVJ6A",
1561
+ "port": "mimxrt",
1562
+ "board": "TEENSY41",
1563
+ "board_name": "Teensy 4.1",
1564
+ "mcu_name": "MIMXRT1062DVJ6A",
1565
+ "path": "ports/mimxrt/boards/TEENSY41/mpconfigboard.h",
1566
+ "version": "v1.22.0"
1567
+ },
1568
+ {
1569
+ "description": "TinyPICO with ESP32-PICO-D4",
1570
+ "port": "esp32",
1571
+ "board": "UM_TINYPICO",
1572
+ "board_name": "TinyPICO",
1573
+ "mcu_name": "ESP32-PICO-D4",
1574
+ "path": "ports/esp32/boards/UM_TINYPICO/mpconfigboard.h",
1575
+ "version": "v1.22.0"
1576
+ },
1577
+ {
1578
+ "description": "TinyS2 with ESP32-S2FN4R2",
1579
+ "port": "esp32",
1580
+ "board": "UM_TINYS2",
1581
+ "board_name": "TinyS2",
1582
+ "mcu_name": "ESP32-S2FN4R2",
1583
+ "path": "ports/esp32/boards/UM_TINYS2/mpconfigboard.h",
1584
+ "version": "v1.22.0"
1585
+ },
1586
+ {
1587
+ "description": "TinyS3 with ESP32-S3-FN8",
1588
+ "port": "esp32",
1589
+ "board": "UM_TINYS3",
1590
+ "board_name": "TinyS3",
1591
+ "mcu_name": "ESP32-S3-FN8",
1592
+ "path": "ports/esp32/boards/UM_TINYS3/mpconfigboard.h",
1593
+ "version": "v1.22.0"
1594
+ },
1595
+ {
1596
+ "description": "TinyWATCH S3 with ESP32-S3-PICO-1-N8R2",
1597
+ "port": "esp32",
1598
+ "board": "UM_TINYWATCHS3",
1599
+ "board_name": "TinyWATCH S3",
1600
+ "mcu_name": "ESP32-S3-PICO-1-N8R2",
1601
+ "path": "ports/esp32/boards/UM_TINYWATCHS3/mpconfigboard.h",
1602
+ "version": "v1.22.0"
1603
+ },
1604
+ {
1605
+ "description": "Trinket M0 with SAMD21E18A",
1606
+ "port": "samd",
1607
+ "board": "ADAFRUIT_TRINKET_M0",
1608
+ "board_name": "Trinket M0",
1609
+ "mcu_name": "SAMD21E18A",
1610
+ "path": "ports/samd/boards/ADAFRUIT_TRINKET_M0/mpconfigboard.h",
1611
+ "version": "v1.22.0"
1612
+ },
1613
+ {
1614
+ "description": "USBDongle-WB55 with STM32WB55CGU6",
1615
+ "port": "stm32",
1616
+ "board": "USBDONGLE_WB55",
1617
+ "board_name": "USBDongle-WB55",
1618
+ "mcu_name": "STM32WB55CGU6",
1619
+ "path": "ports/stm32/boards/USBDONGLE_WB55/mpconfigboard.h",
1620
+ "version": "v1.22.0"
1621
+ },
1622
+ {
1623
+ "description": "VCC-GND STM32F407VE with STM32F407VE",
1624
+ "port": "stm32",
1625
+ "board": "VCC_GND_F407VE",
1626
+ "board_name": "VCC-GND STM32F407VE",
1627
+ "mcu_name": "STM32F407VE",
1628
+ "path": "ports/stm32/boards/VCC_GND_F407VE/mpconfigboard.h",
1629
+ "version": "v1.22.0"
1630
+ },
1631
+ {
1632
+ "description": "VCC-GND STM32F407ZG with STM32F407ZG",
1633
+ "port": "stm32",
1634
+ "board": "VCC_GND_F407ZG",
1635
+ "board_name": "VCC-GND STM32F407ZG",
1636
+ "mcu_name": "STM32F407ZG",
1637
+ "path": "ports/stm32/boards/VCC_GND_F407ZG/mpconfigboard.h",
1638
+ "version": "v1.22.0"
1639
+ },
1640
+ {
1641
+ "description": "VCC-GND STM32H743VI with STM32H743VI",
1642
+ "port": "stm32",
1643
+ "board": "VCC_GND_H743VI",
1644
+ "board_name": "VCC-GND STM32H743VI",
1645
+ "mcu_name": "STM32H743VI",
1646
+ "path": "ports/stm32/boards/VCC_GND_H743VI/mpconfigboard.h",
1647
+ "version": "v1.22.0"
1648
+ },
1649
+ {
1650
+ "description": "VK-RA6M5 with RA6M5",
1651
+ "port": "renesas-ra",
1652
+ "board": "VK_RA6M5",
1653
+ "board_name": "VK-RA6M5",
1654
+ "mcu_name": "RA6M5",
1655
+ "path": "ports/renesas-ra/boards/VK_RA6M5/mpconfigboard.h",
1656
+ "version": "v1.22.0"
1657
+ },
1658
+ {
1659
+ "description": "W5100S-EVB-Pico",
1660
+ "port": "rp2",
1661
+ "board": "W5100S_EVB_PICO",
1662
+ "board_name": "W5100S-EVB-Pico",
1663
+ "mcu_name": "-",
1664
+ "path": "ports/rp2/boards/W5100S_EVB_PICO/mpconfigboard.h",
1665
+ "version": "v1.22.0"
1666
+ },
1667
+ {
1668
+ "description": "W5500-EVB-Pico",
1669
+ "port": "rp2",
1670
+ "board": "W5500_EVB_PICO",
1671
+ "board_name": "W5500-EVB-Pico",
1672
+ "mcu_name": "-",
1673
+ "path": "ports/rp2/boards/W5500_EVB_PICO/mpconfigboard.h",
1674
+ "version": "v1.22.0"
1675
+ },
1676
+ {
1677
+ "description": "WeAct Studio RP2040",
1678
+ "port": "rp2",
1679
+ "board": "WEACTSTUDIO",
1680
+ "board_name": "WeAct Studio RP2040",
1681
+ "mcu_name": "-",
1682
+ "path": "ports/rp2/boards/WEACTSTUDIO/mpconfigboard.h",
1683
+ "version": "v1.22.0"
1684
+ },
1685
+ {
1686
+ "description": "Wio Terminal D51R with SAMD51P19A",
1687
+ "port": "samd",
1688
+ "board": "SEEED_WIO_TERMINAL",
1689
+ "board_name": "Wio Terminal D51R",
1690
+ "mcu_name": "SAMD51P19A",
1691
+ "path": "ports/samd/boards/SEEED_WIO_TERMINAL/mpconfigboard.h",
1692
+ "version": "v1.22.0"
1693
+ },
1694
+ {
1695
+ "description": "WiPy with CC3200",
1696
+ "port": "cc3200",
1697
+ "board": "WIPY",
1698
+ "board_name": "WiPy",
1699
+ "mcu_name": "CC3200",
1700
+ "path": "ports/cc3200/boards/WIPY/mpconfigboard.h",
1701
+ "version": "v1.22.0"
1702
+ },
1703
+ {
1704
+ "description": "WT51822-S4AT with NRF51822",
1705
+ "port": "nrf",
1706
+ "board": "WT51822_S4AT",
1707
+ "board_name": "WT51822-S4AT",
1708
+ "mcu_name": "NRF51822",
1709
+ "path": "ports/nrf/boards/WT51822_S4AT/mpconfigboard.h",
1710
+ "version": "v1.22.0"
1711
+ },
1712
+ {
1713
+ "description": "XENON with NRF52840",
1714
+ "port": "nrf",
1715
+ "board": "PARTICLE_XENON",
1716
+ "board_name": "XENON",
1717
+ "mcu_name": "NRF52840",
1718
+ "path": "ports/nrf/boards/PARTICLE_XENON/mpconfigboard.h",
1719
+ "version": "v1.22.0"
1720
+ },
1721
+ {
1722
+ "description": "XIAO nRF52840 Sense with NRF52840",
1723
+ "port": "nrf",
1724
+ "board": "SEEED_XIAO_NRF52",
1725
+ "board_name": "XIAO nRF52840 Sense",
1726
+ "mcu_name": "NRF52840",
1727
+ "path": "ports/nrf/boards/SEEED_XIAO_NRF52/mpconfigboard.h",
1728
+ "version": "v1.22.0"
1729
+ }
1730
1730
  ]