micropython-stubber 1.23.1.post1__py3-none-any.whl → 1.23.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {micropython_stubber-1.23.1.post1.dist-info → micropython_stubber-1.23.2.dist-info}/LICENSE +30 -30
- {micropython_stubber-1.23.1.post1.dist-info → micropython_stubber-1.23.2.dist-info}/METADATA +4 -4
- micropython_stubber-1.23.2.dist-info/RECORD +158 -0
- mpflash/README.md +220 -220
- mpflash/libusb_flash.ipynb +203 -203
- mpflash/mpflash/add_firmware.py +98 -98
- mpflash/mpflash/ask_input.py +236 -236
- mpflash/mpflash/basicgit.py +284 -284
- mpflash/mpflash/bootloader/__init__.py +2 -2
- mpflash/mpflash/bootloader/activate.py +60 -60
- mpflash/mpflash/bootloader/detect.py +82 -82
- mpflash/mpflash/bootloader/manual.py +101 -101
- mpflash/mpflash/bootloader/micropython.py +12 -12
- mpflash/mpflash/bootloader/touch1200.py +36 -36
- mpflash/mpflash/cli_download.py +129 -129
- mpflash/mpflash/cli_flash.py +224 -216
- mpflash/mpflash/cli_group.py +111 -111
- mpflash/mpflash/cli_list.py +87 -87
- mpflash/mpflash/cli_main.py +39 -39
- mpflash/mpflash/common.py +210 -166
- mpflash/mpflash/config.py +44 -44
- mpflash/mpflash/connected.py +96 -77
- mpflash/mpflash/download.py +364 -364
- mpflash/mpflash/downloaded.py +130 -130
- mpflash/mpflash/errors.py +9 -9
- mpflash/mpflash/flash/__init__.py +55 -55
- mpflash/mpflash/flash/esp.py +59 -59
- mpflash/mpflash/flash/stm32.py +19 -19
- mpflash/mpflash/flash/stm32_dfu.py +104 -104
- mpflash/mpflash/flash/uf2/__init__.py +88 -88
- mpflash/mpflash/flash/uf2/boardid.py +15 -15
- mpflash/mpflash/flash/uf2/linux.py +136 -130
- mpflash/mpflash/flash/uf2/macos.py +42 -42
- mpflash/mpflash/flash/uf2/uf2disk.py +12 -12
- mpflash/mpflash/flash/uf2/windows.py +43 -43
- mpflash/mpflash/flash/worklist.py +170 -170
- mpflash/mpflash/list.py +106 -106
- mpflash/mpflash/logger.py +41 -41
- mpflash/mpflash/mpboard_id/__init__.py +93 -93
- mpflash/mpflash/mpboard_id/add_boards.py +251 -251
- mpflash/mpflash/mpboard_id/board.py +37 -37
- mpflash/mpflash/mpboard_id/board_id.py +86 -86
- mpflash/mpflash/mpboard_id/store.py +43 -43
- mpflash/mpflash/mpremoteboard/__init__.py +266 -266
- mpflash/mpflash/mpremoteboard/mpy_fw_info.py +141 -141
- mpflash/mpflash/mpremoteboard/runner.py +140 -140
- mpflash/mpflash/vendor/click_aliases.py +91 -91
- mpflash/mpflash/vendor/dfu.py +165 -165
- mpflash/mpflash/vendor/pydfu.py +605 -605
- mpflash/mpflash/vendor/readme.md +2 -2
- mpflash/mpflash/versions.py +135 -135
- mpflash/poetry.lock +1599 -1599
- mpflash/pyproject.toml +65 -65
- mpflash/stm32_udev_rules.md +62 -62
- stubber/__init__.py +3 -3
- stubber/board/board_info.csv +193 -193
- stubber/board/boot.py +34 -34
- stubber/board/createstubs.py +1004 -986
- stubber/board/createstubs_db.py +826 -825
- stubber/board/createstubs_db_min.py +332 -331
- stubber/board/createstubs_db_mpy.mpy +0 -0
- stubber/board/createstubs_lvgl.py +741 -741
- stubber/board/createstubs_lvgl_min.py +741 -741
- stubber/board/createstubs_mem.py +767 -766
- stubber/board/createstubs_mem_min.py +307 -306
- stubber/board/createstubs_mem_mpy.mpy +0 -0
- stubber/board/createstubs_min.py +295 -294
- stubber/board/createstubs_mpy.mpy +0 -0
- stubber/board/fw_info.py +141 -141
- stubber/board/info.py +183 -183
- stubber/board/main.py +19 -19
- stubber/board/modulelist.txt +247 -247
- stubber/board/pyrightconfig.json +34 -34
- stubber/bulk/mcu_stubber.py +437 -437
- stubber/codemod/_partials/__init__.py +48 -48
- stubber/codemod/_partials/db_main.py +147 -147
- stubber/codemod/_partials/lvgl_main.py +77 -77
- stubber/codemod/_partials/modules_reader.py +80 -80
- stubber/codemod/add_comment.py +53 -53
- stubber/codemod/add_method.py +65 -65
- stubber/codemod/board.py +317 -317
- stubber/codemod/enrich.py +151 -145
- stubber/codemod/merge_docstub.py +284 -284
- stubber/codemod/modify_list.py +54 -54
- stubber/codemod/utils.py +56 -56
- stubber/commands/build_cmd.py +94 -94
- stubber/commands/cli.py +49 -49
- stubber/commands/clone_cmd.py +78 -78
- stubber/commands/config_cmd.py +29 -29
- stubber/commands/enrich_folder_cmd.py +71 -71
- stubber/commands/get_core_cmd.py +71 -71
- stubber/commands/get_docstubs_cmd.py +92 -92
- stubber/commands/get_frozen_cmd.py +117 -117
- stubber/commands/get_mcu_cmd.py +102 -102
- stubber/commands/merge_cmd.py +66 -66
- stubber/commands/publish_cmd.py +118 -118
- stubber/commands/stub_cmd.py +31 -31
- stubber/commands/switch_cmd.py +62 -62
- stubber/commands/variants_cmd.py +48 -48
- stubber/cst_transformer.py +178 -178
- stubber/data/board_info.csv +193 -193
- stubber/data/board_info.json +1729 -1729
- stubber/data/micropython_tags.csv +15 -15
- stubber/data/requirements-core-micropython.txt +38 -38
- stubber/data/requirements-core-pycopy.txt +39 -39
- stubber/downloader.py +37 -37
- stubber/freeze/common.py +72 -72
- stubber/freeze/freeze_folder.py +69 -69
- stubber/freeze/freeze_manifest_2.py +126 -126
- stubber/freeze/get_frozen.py +131 -131
- stubber/get_cpython.py +112 -112
- stubber/get_lobo.py +59 -59
- stubber/minify.py +423 -423
- stubber/publish/bump.py +86 -86
- stubber/publish/candidates.py +275 -275
- stubber/publish/database.py +18 -18
- stubber/publish/defaults.py +40 -40
- stubber/publish/enums.py +24 -24
- stubber/publish/helpers.py +29 -29
- stubber/publish/merge_docstubs.py +136 -132
- stubber/publish/missing_class_methods.py +51 -51
- stubber/publish/package.py +150 -150
- stubber/publish/pathnames.py +51 -51
- stubber/publish/publish.py +120 -120
- stubber/publish/pypi.py +42 -42
- stubber/publish/stubpackage.py +1055 -1051
- stubber/rst/__init__.py +9 -9
- stubber/rst/classsort.py +78 -78
- stubber/rst/lookup.py +533 -531
- stubber/rst/output_dict.py +401 -401
- stubber/rst/reader.py +814 -814
- stubber/rst/report_return.py +77 -77
- stubber/rst/rst_utils.py +541 -541
- stubber/stubber.py +38 -38
- stubber/stubs_from_docs.py +90 -90
- stubber/tools/manifestfile.py +654 -654
- stubber/tools/readme.md +6 -6
- stubber/update_fallback.py +117 -117
- stubber/update_module_list.py +123 -123
- stubber/utils/__init__.py +6 -6
- stubber/utils/config.py +137 -137
- stubber/utils/makeversionhdr.py +54 -54
- stubber/utils/manifest.py +90 -90
- stubber/utils/post.py +80 -80
- stubber/utils/repos.py +156 -156
- stubber/utils/stubmaker.py +139 -139
- stubber/utils/typed_config_toml.py +80 -80
- stubber/variants.py +106 -106
- micropython_stubber-1.23.1.post1.dist-info/RECORD +0 -159
- mpflash/basicgit.py +0 -288
- {micropython_stubber-1.23.1.post1.dist-info → micropython_stubber-1.23.2.dist-info}/WHEEL +0 -0
- {micropython_stubber-1.23.1.post1.dist-info → micropython_stubber-1.23.2.dist-info}/entry_points.txt +0 -0
mpflash/pyproject.toml
CHANGED
@@ -1,65 +1,65 @@
|
|
1
|
-
[tool.poetry]
|
2
|
-
name = "mpflash"
|
3
|
-
version = "1.0.
|
4
|
-
description = "Flash and download tool for MicroPython firmwares"
|
5
|
-
authors = ["Jos Verlinde <jos_verlinde@hotmail.com>"]
|
6
|
-
license = "MIT"
|
7
|
-
readme = "README.md"
|
8
|
-
keywords = ["MicroPython", "firmware", "flash", "download", "UF2", "esptool"]
|
9
|
-
homepage = "https://github.com/Josverl/micropython-stubber/blob/main/src/mpflash/README.md"
|
10
|
-
repository = "https://github.com/Josverl/micropython-stubber"
|
11
|
-
classifiers = [
|
12
|
-
"Programming Language :: Python :: Implementation :: MicroPython",
|
13
|
-
"Programming Language :: Python :: Implementation :: CPython",
|
14
|
-
"Topic :: Software Development :: Build Tools",
|
15
|
-
]
|
16
|
-
|
17
|
-
[tool.poetry.scripts]
|
18
|
-
mpflash = "mpflash.cli_main:mpflash"
|
19
|
-
|
20
|
-
[tool.poetry.dependencies]
|
21
|
-
beautifulsoup4 = "^4.12.3"
|
22
|
-
bincopy = "^20.0.0"
|
23
|
-
blkinfo = "^0.2.0"
|
24
|
-
cachetools = "^5.3.0"
|
25
|
-
esptool = "^4.7.0"
|
26
|
-
inquirer = "^3.2.4"
|
27
|
-
jsonlines = "^4.0.0"
|
28
|
-
jsons = "^1.6.3"
|
29
|
-
libusb = { version = "^1.0.27", platform = "win32" }
|
30
|
-
loguru = "^0.7.2"
|
31
|
-
mpremote = "^1.22.0"
|
32
|
-
packaging = "23.2"
|
33
|
-
platformdirs = "^4.2.0"
|
34
|
-
psutil = "^5.9.8"
|
35
|
-
pygithub = "^2.1.1"
|
36
|
-
python = ">=3.8.1,<4.0"
|
37
|
-
pyusb = "^1.2.1"
|
38
|
-
requests = "^2.31.0"
|
39
|
-
rich-click = "^1.8.1"
|
40
|
-
tenacity = "8.2.3"
|
41
|
-
cache-to-disk = "^2.0.0"
|
42
|
-
|
43
|
-
|
44
|
-
[tool.poetry.group.dev]
|
45
|
-
optional = true
|
46
|
-
[tool.poetry.group.dev.dependencies]
|
47
|
-
|
48
|
-
[tool.poetry.group.test]
|
49
|
-
optional = true
|
50
|
-
[tool.poetry.group.test.dependencies]
|
51
|
-
pytest = "^7.1.2"
|
52
|
-
pytest-github-actions-annotate-failures = ">=0.1.7,<0.3.0"
|
53
|
-
pytest-json-report = "^1.5.0"
|
54
|
-
pytest-metadata = ">=2.0.2,<4.0.0"
|
55
|
-
pytest-mock = "^3.10.0"
|
56
|
-
#
|
57
|
-
coverage = ">=6.4.3,<8.0.0"
|
58
|
-
distro = "^1.8.0"
|
59
|
-
fasteners = "^0.19"
|
60
|
-
mock = "^4.0.3"
|
61
|
-
|
62
|
-
|
63
|
-
[build-system]
|
64
|
-
requires = ["poetry-core"]
|
65
|
-
build-backend = "poetry.core.masonry.api"
|
1
|
+
[tool.poetry]
|
2
|
+
name = "mpflash"
|
3
|
+
version = "1.0.2"
|
4
|
+
description = "Flash and download tool for MicroPython firmwares"
|
5
|
+
authors = ["Jos Verlinde <jos_verlinde@hotmail.com>"]
|
6
|
+
license = "MIT"
|
7
|
+
readme = "README.md"
|
8
|
+
keywords = ["MicroPython", "firmware", "flash", "download", "UF2", "esptool"]
|
9
|
+
homepage = "https://github.com/Josverl/micropython-stubber/blob/main/src/mpflash/README.md"
|
10
|
+
repository = "https://github.com/Josverl/micropython-stubber"
|
11
|
+
classifiers = [
|
12
|
+
"Programming Language :: Python :: Implementation :: MicroPython",
|
13
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
14
|
+
"Topic :: Software Development :: Build Tools",
|
15
|
+
]
|
16
|
+
|
17
|
+
[tool.poetry.scripts]
|
18
|
+
mpflash = "mpflash.cli_main:mpflash"
|
19
|
+
|
20
|
+
[tool.poetry.dependencies]
|
21
|
+
beautifulsoup4 = "^4.12.3"
|
22
|
+
bincopy = "^20.0.0"
|
23
|
+
blkinfo = "^0.2.0"
|
24
|
+
cachetools = "^5.3.0"
|
25
|
+
esptool = "^4.7.0"
|
26
|
+
inquirer = "^3.2.4"
|
27
|
+
jsonlines = "^4.0.0"
|
28
|
+
jsons = "^1.6.3"
|
29
|
+
libusb = { version = "^1.0.27", platform = "win32" }
|
30
|
+
loguru = "^0.7.2"
|
31
|
+
mpremote = "^1.22.0"
|
32
|
+
packaging = "23.2"
|
33
|
+
platformdirs = "^4.2.0"
|
34
|
+
psutil = "^5.9.8"
|
35
|
+
pygithub = "^2.1.1"
|
36
|
+
python = ">=3.8.1,<4.0"
|
37
|
+
pyusb = "^1.2.1"
|
38
|
+
requests = "^2.31.0"
|
39
|
+
rich-click = "^1.8.1"
|
40
|
+
tenacity = "8.2.3"
|
41
|
+
cache-to-disk = "^2.0.0"
|
42
|
+
|
43
|
+
|
44
|
+
[tool.poetry.group.dev]
|
45
|
+
optional = true
|
46
|
+
[tool.poetry.group.dev.dependencies]
|
47
|
+
|
48
|
+
[tool.poetry.group.test]
|
49
|
+
optional = true
|
50
|
+
[tool.poetry.group.test.dependencies]
|
51
|
+
pytest = "^7.1.2"
|
52
|
+
pytest-github-actions-annotate-failures = ">=0.1.7,<0.3.0"
|
53
|
+
pytest-json-report = "^1.5.0"
|
54
|
+
pytest-metadata = ">=2.0.2,<4.0.0"
|
55
|
+
pytest-mock = "^3.10.0"
|
56
|
+
#
|
57
|
+
coverage = ">=6.4.3,<8.0.0"
|
58
|
+
distro = "^1.8.0"
|
59
|
+
fasteners = "^0.19"
|
60
|
+
mock = "^4.0.3"
|
61
|
+
|
62
|
+
|
63
|
+
[build-system]
|
64
|
+
requires = ["poetry-core"]
|
65
|
+
build-backend = "poetry.core.masonry.api"
|
mpflash/stm32_udev_rules.md
CHANGED
@@ -1,63 +1,63 @@
|
|
1
|
-
## Linux permissions for usb devices
|
2
|
-
|
3
|
-
In order to flash the firmware to the board, you need to have the correct permissions to access the USB devices.
|
4
|
-
The details will depend on the specific USB device and the operating system you are using.
|
5
|
-
|
6
|
-
You can use the following udev rules to give non-root users access to the USB devices.
|
7
|
-
|
8
|
-
File: `/etc/udev/rules.d/65-mpflash.rules`
|
9
|
-
```bash
|
10
|
-
# allow non-root users to access to stm32 device in dfu mode (bootloader)
|
11
|
-
SUBSYSTEM=="usb", ACTION=="add", ATTR{product}=="STM32 BOOTLOADER", GROUP="plugdev", MODE="0660"
|
12
|
-
```
|
13
|
-
reload the udev rules with the following command:
|
14
|
-
```bash
|
15
|
-
sudo udevadm control --reload
|
16
|
-
```
|
17
|
-
Unplug and replug the usb device to apply the new rules.
|
18
|
-
|
19
|
-
|
20
|
-
## to check
|
21
|
-
Enter the stm32 bootloader mode
|
22
|
-
``` bash
|
23
|
-
mpremote bootloader
|
24
|
-
```
|
25
|
-
|
26
|
-
|
27
|
-
List usb devices
|
28
|
-
```bash
|
29
|
-
(.venv) jos@jvnuc:~/projects/micropython-stubber$ lsusb -vv -t
|
30
|
-
/: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/6p, 10000M
|
31
|
-
ID 1d6b:0003 Linux Foundation 3.0 root hub
|
32
|
-
/sys/bus/usb/devices/usb2 /dev/bus/usb/002/001
|
33
|
-
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/12p, 480M
|
34
|
-
ID 1d6b:0002 Linux Foundation 2.0 root hub
|
35
|
-
/sys/bus/usb/devices/usb1 /dev/bus/usb/001/001
|
36
|
-
|__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 12M
|
37
|
-
ID 0a05:7211 Unknown Manufacturer hub
|
38
|
-
/sys/bus/usb/devices/1-1 /dev/bus/usb/001/002
|
39
|
-
|__ Port 1: Dev 4, If 0, Class=Hub, Driver=hub/4p, 12M
|
40
|
-
ID 0a05:7211 Unknown Manufacturer hub
|
41
|
-
/sys/bus/usb/devices/1-1.1 /dev/bus/usb/001/004
|
42
|
-
|__ Port 2: Dev 22, If 0, Class=Application Specific Interface, Driver=, 12M
|
43
|
-
ID 0483:df11 STMicroelectronics STM Device in DFU Mode
|
44
|
-
/sys/bus/usb/devices/1-1.2 /dev/bus/usb/001/022
|
45
|
-
|__ Port 10: Dev 3, If 0, Class=Wireless, Driver=btusb, 12M
|
46
|
-
ID 8087:0aaa Intel Corp. Bluetooth 9460/9560 Jefferson Peak (JfP)
|
47
|
-
/sys/bus/usb/devices/1-10 /dev/bus/usb/001/003
|
48
|
-
|__ Port 10: Dev 3, If 1, Class=Wireless, Driver=btusb, 12M
|
49
|
-
ID 8087:0aaa Intel Corp. Bluetooth 9460/9560 Jefferson Peak (JfP)
|
50
|
-
/sys/bus/usb/devices/1-10 /dev/bus/usb/001/003
|
51
|
-
```
|
52
|
-
Lookup the stm32 device device path ( /dev/bus/usb/001/022),
|
53
|
-
and check if the group `plugdev` is granted access using `ll`
|
54
|
-
```bash
|
55
|
-
(.venv) jos@jvnuc:~/projects/micropython-stubber$ ll /dev/bus/usb/001/022
|
56
|
-
crw-rw-r-- 1 root plugdev 189, 21 mrt 11 22:38 /dev/bus/usb/001/022
|
57
|
-
```
|
58
|
-
|
59
|
-
Check `groups` to see if user is in plugdev group
|
60
|
-
```
|
61
|
-
(.venv) jos@jvnuc:~/projects/micropython-stubber$ groups
|
62
|
-
jos adm disk dialout cdrom sudo dip plugdev kvm lpadmin lxd sambashare usb
|
1
|
+
## Linux permissions for usb devices
|
2
|
+
|
3
|
+
In order to flash the firmware to the board, you need to have the correct permissions to access the USB devices.
|
4
|
+
The details will depend on the specific USB device and the operating system you are using.
|
5
|
+
|
6
|
+
You can use the following udev rules to give non-root users access to the USB devices.
|
7
|
+
|
8
|
+
File: `/etc/udev/rules.d/65-mpflash.rules`
|
9
|
+
```bash
|
10
|
+
# allow non-root users to access to stm32 device in dfu mode (bootloader)
|
11
|
+
SUBSYSTEM=="usb", ACTION=="add", ATTR{product}=="STM32 BOOTLOADER", GROUP="plugdev", MODE="0660"
|
12
|
+
```
|
13
|
+
reload the udev rules with the following command:
|
14
|
+
```bash
|
15
|
+
sudo udevadm control --reload
|
16
|
+
```
|
17
|
+
Unplug and replug the usb device to apply the new rules.
|
18
|
+
|
19
|
+
|
20
|
+
## to check
|
21
|
+
Enter the stm32 bootloader mode
|
22
|
+
``` bash
|
23
|
+
mpremote bootloader
|
24
|
+
```
|
25
|
+
|
26
|
+
|
27
|
+
List usb devices
|
28
|
+
```bash
|
29
|
+
(.venv) jos@jvnuc:~/projects/micropython-stubber$ lsusb -vv -t
|
30
|
+
/: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/6p, 10000M
|
31
|
+
ID 1d6b:0003 Linux Foundation 3.0 root hub
|
32
|
+
/sys/bus/usb/devices/usb2 /dev/bus/usb/002/001
|
33
|
+
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/12p, 480M
|
34
|
+
ID 1d6b:0002 Linux Foundation 2.0 root hub
|
35
|
+
/sys/bus/usb/devices/usb1 /dev/bus/usb/001/001
|
36
|
+
|__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 12M
|
37
|
+
ID 0a05:7211 Unknown Manufacturer hub
|
38
|
+
/sys/bus/usb/devices/1-1 /dev/bus/usb/001/002
|
39
|
+
|__ Port 1: Dev 4, If 0, Class=Hub, Driver=hub/4p, 12M
|
40
|
+
ID 0a05:7211 Unknown Manufacturer hub
|
41
|
+
/sys/bus/usb/devices/1-1.1 /dev/bus/usb/001/004
|
42
|
+
|__ Port 2: Dev 22, If 0, Class=Application Specific Interface, Driver=, 12M
|
43
|
+
ID 0483:df11 STMicroelectronics STM Device in DFU Mode
|
44
|
+
/sys/bus/usb/devices/1-1.2 /dev/bus/usb/001/022
|
45
|
+
|__ Port 10: Dev 3, If 0, Class=Wireless, Driver=btusb, 12M
|
46
|
+
ID 8087:0aaa Intel Corp. Bluetooth 9460/9560 Jefferson Peak (JfP)
|
47
|
+
/sys/bus/usb/devices/1-10 /dev/bus/usb/001/003
|
48
|
+
|__ Port 10: Dev 3, If 1, Class=Wireless, Driver=btusb, 12M
|
49
|
+
ID 8087:0aaa Intel Corp. Bluetooth 9460/9560 Jefferson Peak (JfP)
|
50
|
+
/sys/bus/usb/devices/1-10 /dev/bus/usb/001/003
|
51
|
+
```
|
52
|
+
Lookup the stm32 device device path ( /dev/bus/usb/001/022),
|
53
|
+
and check if the group `plugdev` is granted access using `ll`
|
54
|
+
```bash
|
55
|
+
(.venv) jos@jvnuc:~/projects/micropython-stubber$ ll /dev/bus/usb/001/022
|
56
|
+
crw-rw-r-- 1 root plugdev 189, 21 mrt 11 22:38 /dev/bus/usb/001/022
|
57
|
+
```
|
58
|
+
|
59
|
+
Check `groups` to see if user is in plugdev group
|
60
|
+
```
|
61
|
+
(.venv) jos@jvnuc:~/projects/micropython-stubber$ groups
|
62
|
+
jos adm disk dialout cdrom sudo dip plugdev kvm lpadmin lxd sambashare usb
|
63
63
|
```
|
stubber/__init__.py
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
"""get the version"""
|
2
|
-
|
3
|
-
__version__ = "1.23.
|
1
|
+
"""get the version"""
|
2
|
+
|
3
|
+
__version__ = "1.23.2"
|
stubber/board/board_info.csv
CHANGED
@@ -1,193 +1,193 @@
|
|
1
|
-
board,description
|
2
|
-
4MB/OTA module with ESP32,GENERIC_OTA
|
3
|
-
Actinius Icarus with NRF9160,ACTINIUS_ICARUS
|
4
|
-
Adafruit Feather RP2040,ADAFRUIT_FEATHER_RP2040
|
5
|
-
Adafruit Feather STM32F405 with STM32F405RG,ADAFRUIT_F405_EXPRESS
|
6
|
-
Adafruit ItsyBitsy RP2040,ADAFRUIT_ITSYBITSY_RP2040
|
7
|
-
Adafruit Metro M7 with MIMXRT1011DAE5A,ADAFRUIT_METRO_M7
|
8
|
-
Adafruit QT Py RP2040,ADAFRUIT_QTPY_RP2040
|
9
|
-
Arduino GIGA R1 WiFi with STM32H747,ARDUINO_GIGA
|
10
|
-
Arduino Nano 33 BLE Sense with NRF52840,ARDUINO_NANO_33_BLE_SENSE
|
11
|
-
Arduino Nano ESP32 with ESP32S3,ARDUINO_NANO_ESP32
|
12
|
-
Arduino Nano RP2040 Connect,ARDUINO_NANO_RP2040_CONNECT
|
13
|
-
Arduino Nicla Vision with STM32H747,ARDUINO_NICLA_VISION
|
14
|
-
Arduino Portenta C33 with RA6M5,ARDUINO_PORTENTA_C33
|
15
|
-
Arduino Portenta H7 with STM32H747,ARDUINO_PORTENTA_H7
|
16
|
-
Arduino Primo with NRF52832,ARDUINO_PRIMO
|
17
|
-
B-L072Z-LRWAN1 with STM32L072CZ,B_L072Z_LRWAN1
|
18
|
-
B-L475E-IOT01A with STM32L475,B_L475E_IOT01A
|
19
|
-
Bluefruit nRF52 Feather with NRF52832,FEATHER52
|
20
|
-
BLUEIO-TAG-EVIM with NRF52832,BLUEIO_TAG_EVIM
|
21
|
-
Cerb40 with STM32F405RG,CERB40
|
22
|
-
CustomPCB with STM32F439,STM32F439
|
23
|
-
DVK-BL652 with NRF52832,DVK_BL652
|
24
|
-
EK-RA4M1 with RA4M1,EK_RA4M1
|
25
|
-
EK-RA4W1 with RA4W1,EK_RA4W1
|
26
|
-
EK-RA6M1 with RA6M1,EK_RA6M1
|
27
|
-
EK-RA6M2 with RA6M2,EK_RA6M2
|
28
|
-
ESP module (1M) with ESP8266,ESP8266_GENERIC
|
29
|
-
ESP module (512K) with ESP8266,ESP8266_GENERIC
|
30
|
-
ESP module with ESP8266,ESP8266_GENERIC
|
31
|
-
ESP32 module (spiram) with ESP32,GENERIC_SPIRAM
|
32
|
-
ESP32 module with ESP32,GENERIC
|
33
|
-
ESP32 Unicore module with ESP32-UNICORE,GENERIC_UNICORE
|
34
|
-
ESP32-D2WD,ESP32_GENERIC
|
35
|
-
ESP32-S2-WROVER with ESP32-S2,ESP32_S2_WROVER
|
36
|
-
ESP32-UNICORE,ESP32_GENERIC
|
37
|
-
ESP32C3 module with ESP32C3,ESP32_GENERIC_C3
|
38
|
-
ESP32S2 module with ESP32S2,GENERIC_S2
|
39
|
-
ESP32S3 module (spiram octal) with ESP32S3,GENERIC_S3_SPIRAM_OCT
|
40
|
-
ESP32S3 module (spiram) with ESP32S3,GENERIC_S3_SPIRAM
|
41
|
-
ESP32S3 module with ESP32S3,GENERIC_S3
|
42
|
-
Espruino Pico with STM32F401CD,ESPRUINO_PICO
|
43
|
-
EVK_NINA_B1 with NRF52832,EVK_NINA_B1
|
44
|
-
EVK_NINA_B3 with NRF52840,EVK_NINA_B3
|
45
|
-
F411DISC with STM32F411,STM32F411DISC
|
46
|
-
F429I-DISCO with STM32F429,STM32F429DISC
|
47
|
-
F4DISC with STM32F407,STM32F4DISC
|
48
|
-
F769DISC with STM32F769,STM32F769DISC
|
49
|
-
F7DISC with STM32F746,STM32F7DISC
|
50
|
-
Feather M0 Express with SAMD21G18A,ADAFRUIT_FEATHER_M0_EXPRESS
|
51
|
-
Feather M4 Express with SAMD51J19A,ADAFRUIT_FEATHER_M4_EXPRESS
|
52
|
-
FeatherS2 Neo with ESP32-S2FN4R2,UM_FEATHERS2NEO
|
53
|
-
FeatherS2 with ESP32-S2,UM_FEATHERS2
|
54
|
-
FeatherS3 with ESP32-S3,UM_FEATHERS3
|
55
|
-
GARATRONIC_PYBSTICK26_RP2040,GARATRONIC_PYBSTICK26_RP2040
|
56
|
-
Generic ESP32 module with ESP32,ESP32_GENERIC
|
57
|
-
Generic ESP32 module with OTA,ESP32_GENERIC
|
58
|
-
Generic ESP32 module with SPIRAM,ESP32_GENERIC
|
59
|
-
Generic ESP32-D2WD module with ESP32-D2WD,GENERIC_D2WD
|
60
|
-
Generic ESP32S2 module with ESP32S2,ESP32_GENERIC_S2
|
61
|
-
Generic ESP32S3 module with ESP32S3,ESP32_GENERIC_S3
|
62
|
-
Generic ESP32S3 module with Octal-SPIRAM,ESP32_GENERIC_S3
|
63
|
-
GIGA with STM32H747,ARDUINO_GIGA
|
64
|
-
HydraBus1.0 with STM32F4,HYDRABUS
|
65
|
-
i.MX RT1010 EVK with MIMXRT1011DAE5A,MIMXRT1010_EVK
|
66
|
-
i.MX RT1015 EVK with MIMXRT1015DAF5A,MIMXRT1015_EVK
|
67
|
-
i.MX RT1020 EVK with MIMXRT1021DAG5A,MIMXRT1020_EVK
|
68
|
-
i.MX RT1050 EVK with MIMXRT1052DVL6B,MIMXRT1050_EVK
|
69
|
-
i.MX RT1050 EVKB with MIMXRT1052DVL6B,MIMXRT1050_EVKB
|
70
|
-
i.MX RT1050 EVKB-A1 with MIMXRT1052DVL6B,MIMXRT1050_EVK
|
71
|
-
i.MX RT1060 EVK with MIMXRT1062DVJ6A,MIMXRT1060_EVK
|
72
|
-
i.MX RT1064 EVK with MIMXRT1064DVL6A,MIMXRT1064_EVK
|
73
|
-
i.MX RT1170 EVK with MIMXRT1176DVMAA,MIMXRT1170_EVK
|
74
|
-
IBK-BLYST-NANO with NRF52832,IBK_BLYST_NANO
|
75
|
-
IDK-BLYST-NANO with NRF52832,IDK_BLYST_NANO
|
76
|
-
ItsyBitsy M0 Express with SAMD21G18A,ADAFRUIT_ITSYBITSY_M0_EXPRESS
|
77
|
-
ItsyBitsy M4 Express with SAMD51G19A,ADAFRUIT_ITSYBITSY_M4_EXPRESS
|
78
|
-
L476-DISCO with STM32L476,STM32L476DISC
|
79
|
-
L496G-DISCO with STM32L496,STM32L496GDISC
|
80
|
-
LaunchPad with CC3200,LAUNCHXL
|
81
|
-
LEGO Technic Hub No.6 with STM32F413,LEGO_HUB_NO6
|
82
|
-
LEGO Technic Hub No.7 with STM32F413,LEGO_HUB_NO7
|
83
|
-
LILYGO TTGO LoRa32 with ESP32,LILYGO_TTGO_LORA32
|
84
|
-
LIMIFROG with STM32L476,LIMIFROG
|
85
|
-
LOLIN_C3_MINI with ESP32-C3FH4,LOLIN_C3_MINI
|
86
|
-
LOLIN_S2_MINI with ESP32-S2FN4R2,LOLIN_S2_MINI
|
87
|
-
LOLIN_S2_PICO with ESP32-S2FN4R2,LOLIN_S2_PICO
|
88
|
-
M5Stack ATOM with ESP32-PICO-D4,M5STACK_ATOM
|
89
|
-
MDK-USB-DONGLE with NRF52840,NRF52840_MDK_USB_DONGLE
|
90
|
-
Metro M4 Express Airlift with SAMD51J19A,ADAFRUIT_METRO_M4_EXPRESS
|
91
|
-
micro:bit with NRF51822,MICROBIT
|
92
|
-
MikroE Quail with STM32F427VI,MIKROE_QUAIL
|
93
|
-
MIKROE_CLICKER2_STM32 with STM32F407,MIKROE_CLICKER2_STM32
|
94
|
-
Mini SAM M4 with SAMD51G19A,MINISAM_M4
|
95
|
-
NADHAT_PYBF405 with STM32F405RG,GARATRONIC_NADHAT_F405
|
96
|
-
NanoS3 with ESP32-S3-FN8,UM_NANOS3
|
97
|
-
NetduinoPlus2 with STM32F405RG,NETDUINO_PLUS_2
|
98
|
-
NICLAVISION with STM32H747,ARDUINO_NICLA_VISION
|
99
|
-
NUCLEO-F091RC with STM32F091RCT6,NUCLEO_F091RC
|
100
|
-
NUCLEO-F401RE with STM32F401xE,NUCLEO_F401RE
|
101
|
-
NUCLEO-F411RE with STM32F411xE,NUCLEO_F411RE
|
102
|
-
NUCLEO-F412ZG with STM32F412Zx,NUCLEO_F412ZG
|
103
|
-
NUCLEO-F413ZH with STM32F413,NUCLEO_F413ZH
|
104
|
-
NUCLEO-F429ZI with STM32F429,NUCLEO_F429ZI
|
105
|
-
NUCLEO-F439ZI with STM32F439ZIT6,NUCLEO_F439ZI
|
106
|
-
NUCLEO-F446RE with STM32F446xx,NUCLEO_F446RE
|
107
|
-
NUCLEO-F722ZE with STM32F722,NUCLEO_F722ZE
|
108
|
-
NUCLEO-F746ZG with STM32F746,NUCLEO_F746ZG
|
109
|
-
NUCLEO-F756ZG with STM32F756,NUCLEO_F756ZG
|
110
|
-
NUCLEO-F767ZI with STM32F767,NUCLEO_F767ZI
|
111
|
-
NUCLEO-G0B1RE with STM32G0B1xE,NUCLEO_G0B1RE
|
112
|
-
NUCLEO-L073RZ with STM32L073RZT6,NUCLEO_L073RZ
|
113
|
-
NUCLEO-L152RE with STM32L152xE,NUCLEO_L152RE
|
114
|
-
NUCLEO-L432KC with STM32L432KC,NUCLEO_L432KC
|
115
|
-
NUCLEO-L452RE with STM32L452RE,NUCLEO_L452RE
|
116
|
-
NUCLEO-L476RG with STM32L476RG,NUCLEO_L476RG
|
117
|
-
NUCLEO-L4A6ZG with STM32L4A6ZG,NUCLEO_L4A6ZG
|
118
|
-
NUCLEO-WB55 with STM32WB55RGV6,NUCLEO_WB55
|
119
|
-
NUCLEO-WL55 with STM32WL55JCI7,NUCLEO_WL55
|
120
|
-
NUCLEO_G474RE with STM32G474,NUCLEO_G474RE
|
121
|
-
NUCLEO_H563ZI with STM32H563ZI,NUCLEO_H563ZI
|
122
|
-
NUCLEO_H723ZG with STM32H723ZGT6,NUCLEO_H723ZG
|
123
|
-
NUCLEO_H743ZI with STM32H743,NUCLEO_H743ZI
|
124
|
-
NUCLEO_H743ZI2,NUCLEO_H743ZI2
|
125
|
-
nullbits Bit-C PRO,NULLBITS_BIT_C_PRO
|
126
|
-
Olimex ESP32 ETH with ESP32,OLIMEX_ESP32_POE
|
127
|
-
OLIMEX STM32-E407 with STM32F407,OLIMEX_E407
|
128
|
-
OLIMEX STM32-H407 with STM32F407,OLIMEX_H407
|
129
|
-
PCA10000 with NRF51822,PCA10000
|
130
|
-
PCA10001 with NRF51822,PCA10001
|
131
|
-
PCA10028 with NRF51822,PCA10028
|
132
|
-
PCA10031 with NRF51822,PCA10031
|
133
|
-
PCA10040 with NRF52832,PCA10040
|
134
|
-
PCA10056 with NRF52840,PCA10056
|
135
|
-
PCA10059 with NRF52840,PCA10059
|
136
|
-
PCA10090 with NRF9160,PCA10090
|
137
|
-
Pimoroni Pico LiPo 16MB,PIMORONI_PICOLIPO_16MB
|
138
|
-
Pimoroni Pico LiPo 4MB,PIMORONI_PICOLIPO_4MB
|
139
|
-
Pimoroni Tiny 2040,PIMORONI_TINY2040
|
140
|
-
Pololu 3pi+ 2040 Robot,POLOLU_3PI_2040_ROBOT
|
141
|
-
Pololu Zumo 2040 Robot,POLOLU_ZUMO_2040_ROBOT
|
142
|
-
PORTENTA C33 with RA6M5,ARDUINO_PORTENTA_C33
|
143
|
-
PORTENTA with STM32H747,ARDUINO_PORTENTA_H7
|
144
|
-
ProS3 with ESP32-S3,UM_PROS3
|
145
|
-
PYBD-SF2W with STM32F722IEK,PYBD_SF2
|
146
|
-
PYBD-SF3W with STM32F733IEK,PYBD_SF3
|
147
|
-
PYBD-SF6W with STM32F767IIK,PYBD_SF6
|
148
|
-
PYBLITEv1.0 with STM32F411RE,PYBLITEV10
|
149
|
-
PYBSTICK26_STD with STM32F411RE,GARATRONIC_PYBSTICK26_F411
|
150
|
-
PYBv1.0 with STM32F405RG,PYBV10
|
151
|
-
PYBv1.1 with STM32F405RG,PYBV11
|
152
|
-
PYBv3 with STM32F405RG,PYBV3
|
153
|
-
PYBv4 with STM32F405RG,PYBV4
|
154
|
-
RA4M1 CLICKER with RA4M1,RA4M1_CLICKER
|
155
|
-
RA4M1_CLICKER with RA4M1,RA4M1_CLICKER
|
156
|
-
RA4M1_EK with RA4M1,RA4M1_EK
|
157
|
-
RA4W1_EK with RA4W1,RA4W1_EK
|
158
|
-
RA6M1_EK with RA6M1,RA6M1_EK
|
159
|
-
RA6M2_EK with RA6M2,RA6M2_EK
|
160
|
-
Raspberry Pi Pico,RPI_PICO
|
161
|
-
Raspberry Pi Pico W,RPI_PICO_W
|
162
|
-
RT1010-Py-DevKIT with MIMXRT1011DAE5A,OLIMEX_RT1010
|
163
|
-
SAMD21-XPLAINED-PRO with SAMD21J18A,SAMD21_XPLAINED_PRO
|
164
|
-
Seeed ARCH MIX with MIMXRT1052DVL5B,SEEED_ARCH_MIX
|
165
|
-
Seeed Xiao with SAMD21G18A,SEEED_XIAO_SAMD21
|
166
|
-
Silicognition RP2040-Shim,SIL_RP2040_SHIM
|
167
|
-
Silicognition wESP32 with ESP32,SIL_WESP32
|
168
|
-
SparkFun Pro Micro RP2040,SPARKFUN_PROMICRO
|
169
|
-
Sparkfun SAMD51 Thing Plus with SAMD51J20A,SPARKFUN_SAMD51_THING_PLUS
|
170
|
-
SparkFun STM32 MicroMod Processor with STM32F405RG,SPARKFUN_MICROMOD_STM32
|
171
|
-
SparkFun Thing Plus RP2040,SPARKFUN_THINGPLUS
|
172
|
-
STM32H573I-DK with STM32H573IIK3Q,STM32H573I_DK
|
173
|
-
STM32H7B3I-DK with STM32H7B3LIH6Q,STM32H7B3I_DK
|
174
|
-
Teensy 4.0 with MIMXRT1062DVJ6A,TEENSY40
|
175
|
-
Teensy 4.1 with MIMXRT1062DVJ6A,TEENSY41
|
176
|
-
TinyPICO with ESP32-PICO-D4,UM_TINYPICO
|
177
|
-
TinyS2 with ESP32-S2FN4R2,UM_TINYS2
|
178
|
-
TinyS3 with ESP32-S3-FN8,UM_TINYS3
|
179
|
-
TinyWATCH S3 with ESP32-S3-PICO-1-N8R2,UM_TINYWATCHS3
|
180
|
-
Trinket M0 with SAMD21E18A,ADAFRUIT_TRINKET_M0
|
181
|
-
USBDongle-WB55 with STM32WB55CGU6,USBDONGLE_WB55
|
182
|
-
VCC-GND STM32F407VE with STM32F407VE,VCC_GND_F407VE
|
183
|
-
VCC-GND STM32F407ZG with STM32F407ZG,VCC_GND_F407ZG
|
184
|
-
VCC-GND STM32H743VI with STM32H743VI,VCC_GND_H743VI
|
185
|
-
VK-RA6M5 with RA6M5,VK_RA6M5
|
186
|
-
W5100S-EVB-Pico,W5100S_EVB_PICO
|
187
|
-
W5500-EVB-Pico,W5500_EVB_PICO
|
188
|
-
WeAct Studio RP2040,WEACTSTUDIO
|
189
|
-
Wio Terminal D51R with SAMD51P19A,SEEED_WIO_TERMINAL
|
190
|
-
WiPy with CC3200,WIPY
|
191
|
-
WT51822-S4AT with NRF51822,WT51822_S4AT
|
192
|
-
XENON with NRF52840,PARTICLE_XENON
|
193
|
-
XIAO nRF52840 Sense with NRF52840,SEEED_XIAO_NRF52
|
1
|
+
board,description
|
2
|
+
4MB/OTA module with ESP32,GENERIC_OTA
|
3
|
+
Actinius Icarus with NRF9160,ACTINIUS_ICARUS
|
4
|
+
Adafruit Feather RP2040,ADAFRUIT_FEATHER_RP2040
|
5
|
+
Adafruit Feather STM32F405 with STM32F405RG,ADAFRUIT_F405_EXPRESS
|
6
|
+
Adafruit ItsyBitsy RP2040,ADAFRUIT_ITSYBITSY_RP2040
|
7
|
+
Adafruit Metro M7 with MIMXRT1011DAE5A,ADAFRUIT_METRO_M7
|
8
|
+
Adafruit QT Py RP2040,ADAFRUIT_QTPY_RP2040
|
9
|
+
Arduino GIGA R1 WiFi with STM32H747,ARDUINO_GIGA
|
10
|
+
Arduino Nano 33 BLE Sense with NRF52840,ARDUINO_NANO_33_BLE_SENSE
|
11
|
+
Arduino Nano ESP32 with ESP32S3,ARDUINO_NANO_ESP32
|
12
|
+
Arduino Nano RP2040 Connect,ARDUINO_NANO_RP2040_CONNECT
|
13
|
+
Arduino Nicla Vision with STM32H747,ARDUINO_NICLA_VISION
|
14
|
+
Arduino Portenta C33 with RA6M5,ARDUINO_PORTENTA_C33
|
15
|
+
Arduino Portenta H7 with STM32H747,ARDUINO_PORTENTA_H7
|
16
|
+
Arduino Primo with NRF52832,ARDUINO_PRIMO
|
17
|
+
B-L072Z-LRWAN1 with STM32L072CZ,B_L072Z_LRWAN1
|
18
|
+
B-L475E-IOT01A with STM32L475,B_L475E_IOT01A
|
19
|
+
Bluefruit nRF52 Feather with NRF52832,FEATHER52
|
20
|
+
BLUEIO-TAG-EVIM with NRF52832,BLUEIO_TAG_EVIM
|
21
|
+
Cerb40 with STM32F405RG,CERB40
|
22
|
+
CustomPCB with STM32F439,STM32F439
|
23
|
+
DVK-BL652 with NRF52832,DVK_BL652
|
24
|
+
EK-RA4M1 with RA4M1,EK_RA4M1
|
25
|
+
EK-RA4W1 with RA4W1,EK_RA4W1
|
26
|
+
EK-RA6M1 with RA6M1,EK_RA6M1
|
27
|
+
EK-RA6M2 with RA6M2,EK_RA6M2
|
28
|
+
ESP module (1M) with ESP8266,ESP8266_GENERIC
|
29
|
+
ESP module (512K) with ESP8266,ESP8266_GENERIC
|
30
|
+
ESP module with ESP8266,ESP8266_GENERIC
|
31
|
+
ESP32 module (spiram) with ESP32,GENERIC_SPIRAM
|
32
|
+
ESP32 module with ESP32,GENERIC
|
33
|
+
ESP32 Unicore module with ESP32-UNICORE,GENERIC_UNICORE
|
34
|
+
ESP32-D2WD,ESP32_GENERIC
|
35
|
+
ESP32-S2-WROVER with ESP32-S2,ESP32_S2_WROVER
|
36
|
+
ESP32-UNICORE,ESP32_GENERIC
|
37
|
+
ESP32C3 module with ESP32C3,ESP32_GENERIC_C3
|
38
|
+
ESP32S2 module with ESP32S2,GENERIC_S2
|
39
|
+
ESP32S3 module (spiram octal) with ESP32S3,GENERIC_S3_SPIRAM_OCT
|
40
|
+
ESP32S3 module (spiram) with ESP32S3,GENERIC_S3_SPIRAM
|
41
|
+
ESP32S3 module with ESP32S3,GENERIC_S3
|
42
|
+
Espruino Pico with STM32F401CD,ESPRUINO_PICO
|
43
|
+
EVK_NINA_B1 with NRF52832,EVK_NINA_B1
|
44
|
+
EVK_NINA_B3 with NRF52840,EVK_NINA_B3
|
45
|
+
F411DISC with STM32F411,STM32F411DISC
|
46
|
+
F429I-DISCO with STM32F429,STM32F429DISC
|
47
|
+
F4DISC with STM32F407,STM32F4DISC
|
48
|
+
F769DISC with STM32F769,STM32F769DISC
|
49
|
+
F7DISC with STM32F746,STM32F7DISC
|
50
|
+
Feather M0 Express with SAMD21G18A,ADAFRUIT_FEATHER_M0_EXPRESS
|
51
|
+
Feather M4 Express with SAMD51J19A,ADAFRUIT_FEATHER_M4_EXPRESS
|
52
|
+
FeatherS2 Neo with ESP32-S2FN4R2,UM_FEATHERS2NEO
|
53
|
+
FeatherS2 with ESP32-S2,UM_FEATHERS2
|
54
|
+
FeatherS3 with ESP32-S3,UM_FEATHERS3
|
55
|
+
GARATRONIC_PYBSTICK26_RP2040,GARATRONIC_PYBSTICK26_RP2040
|
56
|
+
Generic ESP32 module with ESP32,ESP32_GENERIC
|
57
|
+
Generic ESP32 module with OTA,ESP32_GENERIC
|
58
|
+
Generic ESP32 module with SPIRAM,ESP32_GENERIC
|
59
|
+
Generic ESP32-D2WD module with ESP32-D2WD,GENERIC_D2WD
|
60
|
+
Generic ESP32S2 module with ESP32S2,ESP32_GENERIC_S2
|
61
|
+
Generic ESP32S3 module with ESP32S3,ESP32_GENERIC_S3
|
62
|
+
Generic ESP32S3 module with Octal-SPIRAM,ESP32_GENERIC_S3
|
63
|
+
GIGA with STM32H747,ARDUINO_GIGA
|
64
|
+
HydraBus1.0 with STM32F4,HYDRABUS
|
65
|
+
i.MX RT1010 EVK with MIMXRT1011DAE5A,MIMXRT1010_EVK
|
66
|
+
i.MX RT1015 EVK with MIMXRT1015DAF5A,MIMXRT1015_EVK
|
67
|
+
i.MX RT1020 EVK with MIMXRT1021DAG5A,MIMXRT1020_EVK
|
68
|
+
i.MX RT1050 EVK with MIMXRT1052DVL6B,MIMXRT1050_EVK
|
69
|
+
i.MX RT1050 EVKB with MIMXRT1052DVL6B,MIMXRT1050_EVKB
|
70
|
+
i.MX RT1050 EVKB-A1 with MIMXRT1052DVL6B,MIMXRT1050_EVK
|
71
|
+
i.MX RT1060 EVK with MIMXRT1062DVJ6A,MIMXRT1060_EVK
|
72
|
+
i.MX RT1064 EVK with MIMXRT1064DVL6A,MIMXRT1064_EVK
|
73
|
+
i.MX RT1170 EVK with MIMXRT1176DVMAA,MIMXRT1170_EVK
|
74
|
+
IBK-BLYST-NANO with NRF52832,IBK_BLYST_NANO
|
75
|
+
IDK-BLYST-NANO with NRF52832,IDK_BLYST_NANO
|
76
|
+
ItsyBitsy M0 Express with SAMD21G18A,ADAFRUIT_ITSYBITSY_M0_EXPRESS
|
77
|
+
ItsyBitsy M4 Express with SAMD51G19A,ADAFRUIT_ITSYBITSY_M4_EXPRESS
|
78
|
+
L476-DISCO with STM32L476,STM32L476DISC
|
79
|
+
L496G-DISCO with STM32L496,STM32L496GDISC
|
80
|
+
LaunchPad with CC3200,LAUNCHXL
|
81
|
+
LEGO Technic Hub No.6 with STM32F413,LEGO_HUB_NO6
|
82
|
+
LEGO Technic Hub No.7 with STM32F413,LEGO_HUB_NO7
|
83
|
+
LILYGO TTGO LoRa32 with ESP32,LILYGO_TTGO_LORA32
|
84
|
+
LIMIFROG with STM32L476,LIMIFROG
|
85
|
+
LOLIN_C3_MINI with ESP32-C3FH4,LOLIN_C3_MINI
|
86
|
+
LOLIN_S2_MINI with ESP32-S2FN4R2,LOLIN_S2_MINI
|
87
|
+
LOLIN_S2_PICO with ESP32-S2FN4R2,LOLIN_S2_PICO
|
88
|
+
M5Stack ATOM with ESP32-PICO-D4,M5STACK_ATOM
|
89
|
+
MDK-USB-DONGLE with NRF52840,NRF52840_MDK_USB_DONGLE
|
90
|
+
Metro M4 Express Airlift with SAMD51J19A,ADAFRUIT_METRO_M4_EXPRESS
|
91
|
+
micro:bit with NRF51822,MICROBIT
|
92
|
+
MikroE Quail with STM32F427VI,MIKROE_QUAIL
|
93
|
+
MIKROE_CLICKER2_STM32 with STM32F407,MIKROE_CLICKER2_STM32
|
94
|
+
Mini SAM M4 with SAMD51G19A,MINISAM_M4
|
95
|
+
NADHAT_PYBF405 with STM32F405RG,GARATRONIC_NADHAT_F405
|
96
|
+
NanoS3 with ESP32-S3-FN8,UM_NANOS3
|
97
|
+
NetduinoPlus2 with STM32F405RG,NETDUINO_PLUS_2
|
98
|
+
NICLAVISION with STM32H747,ARDUINO_NICLA_VISION
|
99
|
+
NUCLEO-F091RC with STM32F091RCT6,NUCLEO_F091RC
|
100
|
+
NUCLEO-F401RE with STM32F401xE,NUCLEO_F401RE
|
101
|
+
NUCLEO-F411RE with STM32F411xE,NUCLEO_F411RE
|
102
|
+
NUCLEO-F412ZG with STM32F412Zx,NUCLEO_F412ZG
|
103
|
+
NUCLEO-F413ZH with STM32F413,NUCLEO_F413ZH
|
104
|
+
NUCLEO-F429ZI with STM32F429,NUCLEO_F429ZI
|
105
|
+
NUCLEO-F439ZI with STM32F439ZIT6,NUCLEO_F439ZI
|
106
|
+
NUCLEO-F446RE with STM32F446xx,NUCLEO_F446RE
|
107
|
+
NUCLEO-F722ZE with STM32F722,NUCLEO_F722ZE
|
108
|
+
NUCLEO-F746ZG with STM32F746,NUCLEO_F746ZG
|
109
|
+
NUCLEO-F756ZG with STM32F756,NUCLEO_F756ZG
|
110
|
+
NUCLEO-F767ZI with STM32F767,NUCLEO_F767ZI
|
111
|
+
NUCLEO-G0B1RE with STM32G0B1xE,NUCLEO_G0B1RE
|
112
|
+
NUCLEO-L073RZ with STM32L073RZT6,NUCLEO_L073RZ
|
113
|
+
NUCLEO-L152RE with STM32L152xE,NUCLEO_L152RE
|
114
|
+
NUCLEO-L432KC with STM32L432KC,NUCLEO_L432KC
|
115
|
+
NUCLEO-L452RE with STM32L452RE,NUCLEO_L452RE
|
116
|
+
NUCLEO-L476RG with STM32L476RG,NUCLEO_L476RG
|
117
|
+
NUCLEO-L4A6ZG with STM32L4A6ZG,NUCLEO_L4A6ZG
|
118
|
+
NUCLEO-WB55 with STM32WB55RGV6,NUCLEO_WB55
|
119
|
+
NUCLEO-WL55 with STM32WL55JCI7,NUCLEO_WL55
|
120
|
+
NUCLEO_G474RE with STM32G474,NUCLEO_G474RE
|
121
|
+
NUCLEO_H563ZI with STM32H563ZI,NUCLEO_H563ZI
|
122
|
+
NUCLEO_H723ZG with STM32H723ZGT6,NUCLEO_H723ZG
|
123
|
+
NUCLEO_H743ZI with STM32H743,NUCLEO_H743ZI
|
124
|
+
NUCLEO_H743ZI2,NUCLEO_H743ZI2
|
125
|
+
nullbits Bit-C PRO,NULLBITS_BIT_C_PRO
|
126
|
+
Olimex ESP32 ETH with ESP32,OLIMEX_ESP32_POE
|
127
|
+
OLIMEX STM32-E407 with STM32F407,OLIMEX_E407
|
128
|
+
OLIMEX STM32-H407 with STM32F407,OLIMEX_H407
|
129
|
+
PCA10000 with NRF51822,PCA10000
|
130
|
+
PCA10001 with NRF51822,PCA10001
|
131
|
+
PCA10028 with NRF51822,PCA10028
|
132
|
+
PCA10031 with NRF51822,PCA10031
|
133
|
+
PCA10040 with NRF52832,PCA10040
|
134
|
+
PCA10056 with NRF52840,PCA10056
|
135
|
+
PCA10059 with NRF52840,PCA10059
|
136
|
+
PCA10090 with NRF9160,PCA10090
|
137
|
+
Pimoroni Pico LiPo 16MB,PIMORONI_PICOLIPO_16MB
|
138
|
+
Pimoroni Pico LiPo 4MB,PIMORONI_PICOLIPO_4MB
|
139
|
+
Pimoroni Tiny 2040,PIMORONI_TINY2040
|
140
|
+
Pololu 3pi+ 2040 Robot,POLOLU_3PI_2040_ROBOT
|
141
|
+
Pololu Zumo 2040 Robot,POLOLU_ZUMO_2040_ROBOT
|
142
|
+
PORTENTA C33 with RA6M5,ARDUINO_PORTENTA_C33
|
143
|
+
PORTENTA with STM32H747,ARDUINO_PORTENTA_H7
|
144
|
+
ProS3 with ESP32-S3,UM_PROS3
|
145
|
+
PYBD-SF2W with STM32F722IEK,PYBD_SF2
|
146
|
+
PYBD-SF3W with STM32F733IEK,PYBD_SF3
|
147
|
+
PYBD-SF6W with STM32F767IIK,PYBD_SF6
|
148
|
+
PYBLITEv1.0 with STM32F411RE,PYBLITEV10
|
149
|
+
PYBSTICK26_STD with STM32F411RE,GARATRONIC_PYBSTICK26_F411
|
150
|
+
PYBv1.0 with STM32F405RG,PYBV10
|
151
|
+
PYBv1.1 with STM32F405RG,PYBV11
|
152
|
+
PYBv3 with STM32F405RG,PYBV3
|
153
|
+
PYBv4 with STM32F405RG,PYBV4
|
154
|
+
RA4M1 CLICKER with RA4M1,RA4M1_CLICKER
|
155
|
+
RA4M1_CLICKER with RA4M1,RA4M1_CLICKER
|
156
|
+
RA4M1_EK with RA4M1,RA4M1_EK
|
157
|
+
RA4W1_EK with RA4W1,RA4W1_EK
|
158
|
+
RA6M1_EK with RA6M1,RA6M1_EK
|
159
|
+
RA6M2_EK with RA6M2,RA6M2_EK
|
160
|
+
Raspberry Pi Pico,RPI_PICO
|
161
|
+
Raspberry Pi Pico W,RPI_PICO_W
|
162
|
+
RT1010-Py-DevKIT with MIMXRT1011DAE5A,OLIMEX_RT1010
|
163
|
+
SAMD21-XPLAINED-PRO with SAMD21J18A,SAMD21_XPLAINED_PRO
|
164
|
+
Seeed ARCH MIX with MIMXRT1052DVL5B,SEEED_ARCH_MIX
|
165
|
+
Seeed Xiao with SAMD21G18A,SEEED_XIAO_SAMD21
|
166
|
+
Silicognition RP2040-Shim,SIL_RP2040_SHIM
|
167
|
+
Silicognition wESP32 with ESP32,SIL_WESP32
|
168
|
+
SparkFun Pro Micro RP2040,SPARKFUN_PROMICRO
|
169
|
+
Sparkfun SAMD51 Thing Plus with SAMD51J20A,SPARKFUN_SAMD51_THING_PLUS
|
170
|
+
SparkFun STM32 MicroMod Processor with STM32F405RG,SPARKFUN_MICROMOD_STM32
|
171
|
+
SparkFun Thing Plus RP2040,SPARKFUN_THINGPLUS
|
172
|
+
STM32H573I-DK with STM32H573IIK3Q,STM32H573I_DK
|
173
|
+
STM32H7B3I-DK with STM32H7B3LIH6Q,STM32H7B3I_DK
|
174
|
+
Teensy 4.0 with MIMXRT1062DVJ6A,TEENSY40
|
175
|
+
Teensy 4.1 with MIMXRT1062DVJ6A,TEENSY41
|
176
|
+
TinyPICO with ESP32-PICO-D4,UM_TINYPICO
|
177
|
+
TinyS2 with ESP32-S2FN4R2,UM_TINYS2
|
178
|
+
TinyS3 with ESP32-S3-FN8,UM_TINYS3
|
179
|
+
TinyWATCH S3 with ESP32-S3-PICO-1-N8R2,UM_TINYWATCHS3
|
180
|
+
Trinket M0 with SAMD21E18A,ADAFRUIT_TRINKET_M0
|
181
|
+
USBDongle-WB55 with STM32WB55CGU6,USBDONGLE_WB55
|
182
|
+
VCC-GND STM32F407VE with STM32F407VE,VCC_GND_F407VE
|
183
|
+
VCC-GND STM32F407ZG with STM32F407ZG,VCC_GND_F407ZG
|
184
|
+
VCC-GND STM32H743VI with STM32H743VI,VCC_GND_H743VI
|
185
|
+
VK-RA6M5 with RA6M5,VK_RA6M5
|
186
|
+
W5100S-EVB-Pico,W5100S_EVB_PICO
|
187
|
+
W5500-EVB-Pico,W5500_EVB_PICO
|
188
|
+
WeAct Studio RP2040,WEACTSTUDIO
|
189
|
+
Wio Terminal D51R with SAMD51P19A,SEEED_WIO_TERMINAL
|
190
|
+
WiPy with CC3200,WIPY
|
191
|
+
WT51822-S4AT with NRF51822,WT51822_S4AT
|
192
|
+
XENON with NRF52840,PARTICLE_XENON
|
193
|
+
XIAO nRF52840 Sense with NRF52840,SEEED_XIAO_NRF52
|