Skip to content

Commit 038fdb5

Browse files
committed
Merge branch 'release/v17.0.0'
2 parents d1ef4d1 + 4644814 commit 038fdb5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+27270
-1069
lines changed

.github/workflows/examples.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ jobs:
4343
- "examples/zephyr-blink"
4444
- "examples/zephyr-cpp-synchronization"
4545
- "examples/zephyr-drivers-can"
46-
- "examples/zephyr-net-civetweb"
4746
- "examples/zephyr-net-https-client"
4847
- "examples/zephyr-subsys-usb-hid-mouse"
4948
- "tests/arduino-blink-different-cores"

boards/blackpill_f401ce.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@
4343
"dfu"
4444
]
4545
},
46-
"url": "https://github.com/WeActTC/MiniSTM32F4x1",
46+
"url": "https://github.com/WeActStudio/WeActStudio.MiniSTM32F4x1",
4747
"vendor": "WeAct Studio"
4848
}

boards/blackpill_f411ce.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@
4343
"dfu"
4444
]
4545
},
46-
"url": "https://github.com/WeActTC/MiniSTM32F4x1",
46+
"url": "https://github.com/WeActStudio/WeActStudio.MiniSTM32F4x1",
4747
"vendor": "WeAct Studio"
4848
}

boards/devebox_h743vitx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"extra_flags": "-DSTM32H7xx -DSTM32H743xx",
99
"f_cpu": "480000000L",
1010
"framework_extra_flags": {
11-
"arduino": "-DCUSTOM_PERIPHERAL_PINS"
11+
"arduino": "-DARDUINO_DevEBoxH743VITX -DCUSTOM_PERIPHERAL_PINS"
1212
},
1313
"mcu": "stm32h743vit6",
1414
"product_line": "STM32H743xx",

boards/devebox_h750vbtx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"extra_flags": "-DSTM32H7xx -DSTM32H750xx",
99
"f_cpu": "480000000L",
1010
"framework_extra_flags": {
11-
"arduino": "-DCUSTOM_PERIPHERAL_PINS"
11+
"arduino": "-DARDUINO_DevEBoxH750VBTX -DCUSTOM_PERIPHERAL_PINS"
1212
},
1313
"mcu": "stm32h750vbt6",
1414
"product_line": "STM32H750xx",

boards/fysetc_s6.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
"cpu": "cortex-m4",
55
"extra_flags": "-DSTM32F446xx",
66
"f_cpu": "168000000L",
7+
"flash_offset": "0x10000",
78
"framework_extra_flags": {
8-
"arduino": "-DVECT_TAB_OFFSET=0x10000 -DCUSTOM_PERIPHERAL_PINS"
9+
"arduino": "-DCUSTOM_PERIPHERAL_PINS"
910
},
1011
"mcu": "stm32f446vet6",
1112
"product_line": "STM32F446xx",

boards/genericSTM32G431CB.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m4",
5+
"extra_flags": "-DSTM32G4xx -DSTM32G431xx",
6+
"f_cpu": "170000000L",
7+
"mcu": "stm32g431cbu6",
8+
"product_line": "STM32G431xx",
9+
"variant": "STM32G4xx/G431C(6-8-B)U_G441CBU"
10+
},
11+
"connectivity": [
12+
"can"
13+
],
14+
"debug": {
15+
"jlink_device": "STM32G431CB",
16+
"openocd_target": "stm32g4x",
17+
"svd_path": "STM32G431xx.svd"
18+
},
19+
"frameworks": [
20+
"arduino",
21+
"cmsis",
22+
"libopencm3",
23+
"stm32cube"
24+
],
25+
"name": "STM32G431CB (32k RAM. 128k Flash)",
26+
"upload": {
27+
"maximum_ram_size": 32768,
28+
"maximum_size": 131072,
29+
"protocol": "stlink",
30+
"protocols": [
31+
"stlink",
32+
"jlink",
33+
"cmsis-dap",
34+
"blackmagic",
35+
"mbed"
36+
]
37+
},
38+
"url": "https://www.st.com/en/microcontrollers-microprocessors/stm32g431cb.html",
39+
"vendor": "ST"
40+
}

boards/genericSTM32H750VB.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m7",
5+
"extra_flags": "-DSTM32H7xx -DSTM32H750xx",
6+
"f_cpu": "480000000L",
7+
"mcu": "stm32h750vbt6",
8+
"product_line": "STM32H750xx",
9+
"variant": "STM32H7xx/H742V(G-I)(H-T)_H743V(G-I)(H-T)_H750VBT_H753VI(H-T)"
10+
},
11+
"debug": {
12+
"jlink_device": "STM32H750VB",
13+
"openocd_target": "stm32h7x",
14+
"svd_path": "STM32H750.svd"
15+
},
16+
"frameworks": [
17+
"arduino",
18+
"cmsis",
19+
"stm32cube",
20+
"libopencm3"
21+
],
22+
"name": "STM32H750VBT6 (1024k RAM. 128k Flash)",
23+
"upload": {
24+
"maximum_ram_size": 1048576,
25+
"maximum_size": 131072,
26+
"protocol": "serial",
27+
"protocols": [
28+
"blackmagic",
29+
"dfu",
30+
"jlink",
31+
"serial",
32+
"stlink"
33+
]
34+
},
35+
"url": "https://www.st.com/en/microcontrollers-microprocessors/stm32h750vb.html",
36+
"vendor": "Generic"
37+
}

boards/leafony_ap03.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"build": {
3+
"core": "stm32",
4+
"cpu": "cortex-m4",
5+
"extra_flags": "-DSTM32L452xx",
6+
"f_cpu": "80000000L",
7+
"mcu": "stm32l452ret6",
8+
"product_line": "STM32L452xx",
9+
"variant": "STM32L4xx/L452RC(I-T-Y)_L452RE(I-T-Y)x(P)_L462RE(I-T-Y)"
10+
},
11+
"connectivity": [
12+
"can"
13+
],
14+
"debug": {
15+
"jlink_device": "STM32L452RE",
16+
"onboard_tools": [
17+
"stlink"
18+
],
19+
"openocd_board": "st_nucleo_l4",
20+
"openocd_target": "stm32l4x",
21+
"svd_path": "STM32L4x2.svd"
22+
},
23+
"frameworks": [
24+
"arduino",
25+
"cmsis",
26+
"stm32cube",
27+
"libopencm3"
28+
],
29+
"name": "Leafony Systems AP03",
30+
"upload": {
31+
"maximum_ram_size": 163840,
32+
"maximum_size": 524288,
33+
"protocol": "serial",
34+
"protocols": [
35+
"serial",
36+
"jlink",
37+
"cmsis-dap",
38+
"stlink",
39+
"blackmagic",
40+
"mbed"
41+
]
42+
},
43+
"url": "https://shop.leafony.com/",
44+
"vendor": "Leafony Systems"
45+
}

boards/lora_e5_dev_board.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"variant_h": "variant_generic.h"
5+
},
6+
"core": "stm32",
7+
"cpu": "cortex-m4",
8+
"extra_flags": "-DSTM32WLxx -DSTM32WLE5xx",
9+
"f_cpu": "48000000L",
10+
"framework_extra_flags": {
11+
"arduino": "-DUSE_CM4_STARTUP_FILE"
12+
},
13+
"mcu": "stm32wle5jc",
14+
"product_line": "STM32WLE5xx",
15+
"variant": "STM32WLxx/WL54JCI_WL55JCI_WLE4J(8-B-C)I_WLE5J(8-B-C)I"
16+
},
17+
"debug": {
18+
"jlink_device": "STM32WLE5JC",
19+
"openocd_target": "stm32wlx",
20+
"svd_path": "STM32WLE5_CM4.svd"
21+
},
22+
"frameworks": [
23+
"arduino",
24+
"zephyr"
25+
],
26+
"name": "SeeedStudio LoRa E5 Dev Board",
27+
"upload": {
28+
"maximum_ram_size": 65536,
29+
"maximum_size": 262144,
30+
"protocol": "stlink",
31+
"protocols": [
32+
"stlink",
33+
"jlink"
34+
]
35+
},
36+
"url": "https://www.seeedstudio.com/LoRa-E5-Dev-Kit-p-4868.html",
37+
"vendor": "SeeedStudio"
38+
}

0 commit comments

Comments
 (0)